:root {
  --navy: #071a2f;
  --navy-2: #0d2947;
  --blue: #155bd7;
  --cyan: #38c3d9;
  --ink: #10243d;
  --muted: #64748b;
  --line: #dce4ec;
  --surface: #f3f6f8;
  --white: #ffffff;
  --radius: 20px;
  --shadow: 0 24px 70px rgba(7, 26, 47, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.1; letter-spacing: -0.035em; }
h1 { max-width: 790px; margin-bottom: 22px; font-size: clamp(2.25rem, 2.8vw, 2.9rem); font-weight: 640; }
h2 { margin-bottom: 18px; font-size: clamp(1.65rem, 2.2vw, 2.35rem); font-weight: 620; }
h3 { margin-bottom: 14px; font-size: 1.35rem; }
p { color: var(--muted); }

.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 82px 0; }
.skip-link { position: fixed; z-index: 999; top: 10px; left: 10px; padding: 10px 14px; transform: translateY(-150%); background: white; color: var(--navy); }
.skip-link:focus { transform: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.eyebrow { margin-bottom: 16px; color: #98e7f2; font-size: .75rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow.dark { color: var(--blue); }
.large-copy { color: var(--ink); font-size: clamp(1.25rem, 2vw, 1.62rem); line-height: 1.5; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 25px; padding: 0 24px; border: 1px solid transparent; border-radius: 4px; font-size: .91rem; font-weight: 700; text-decoration: none; transition: transform .2s, background .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--cyan); color: var(--navy); box-shadow: 0 12px 30px rgba(56, 195, 217, .16); }
.button-primary:hover { background: #5ed0e1; }
.button-dark { background: var(--navy); color: white; }

.site-header { position: absolute; z-index: 20; top: 0; left: 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,.12); color: white; }
.site-header::before { position: absolute; z-index: -1; inset: 0 auto 0 0; width: max(355px, calc((100vw - 1180px) / 2 + 285px)); content: ""; background: #f8fafc; clip-path: polygon(0 0, 94% 0, 100% 100%, 0 100%); }
.site-header.is-scrolled { position: fixed; background: rgba(7,26,47,.94); box-shadow: 0 10px 30px rgba(0,0,0,.12); backdrop-filter: blur(15px); }
.nav-wrap { display: flex; height: 92px; align-items: center; justify-content: space-between; }
.brand { display: block; width: 258px; height: 66px; overflow: hidden; padding: 0; border: 0; background: transparent; }
.brand img { width: 100%; height: 100%; object-fit: contain; }
.header-tools { display: flex; align-items: center; gap: 22px; }
.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav a { position: relative; color: #d9e5f1; font-size: .88rem; font-weight: 600; text-decoration: none; }
.site-nav a:not(.nav-cta)::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; content: ""; transform: scaleX(0); background: var(--cyan); transition: transform .2s; }
.site-nav a:hover::after { transform: scaleX(1); }
.site-nav .nav-cta { padding: 9px 15px; border: 1px solid rgba(255,255,255,.38); border-radius: 3px; color: white; }
.language-switcher { display: flex; align-items: center; gap: 6px; direction: ltr; color: #7890a8; font-size: .67rem; font-weight: 750; letter-spacing: .08em; }
.language-switcher a { padding: 5px 2px; color: #aebed0; text-decoration: none; transition: color .2s; }
.language-switcher a:hover, .language-switcher a.is-active { color: var(--cyan); }
.language-switcher a.is-active { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.menu-toggle { display: none; border: 0; background: none; color: white; }

.hero { position: relative; min-height: 620px; overflow: hidden; background: var(--navy); color: white; }
.hero-layout { position: relative; display: flex; min-height: 620px; align-items: center; padding-top: 92px; }
.hero-copy { max-width: 850px; }
.hero h1 { max-width: 760px; font-size: clamp(2.35rem, 2.9vw, 3rem); line-height: 1.12; }
.hero-lead { max-width: 760px; margin-bottom: 30px; color: #aebed0; font-size: 1.05rem; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.text-link { color: white; font-size: .9rem; font-weight: 650; text-decoration: none; }
.hero-markets { display: flex; align-items: center; gap: 16px; margin-top: 44px; color: #8598ad; font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; }
.hero-markets strong { color: #dbe6f0; font-size: .7rem; }
.hero-markets i { width: 4px; height: 4px; border-radius: 50%; background: var(--cyan); }
.split-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; }
.about .section-heading h2 { max-width: 500px; }
.about-copy > p:not(.large-copy) { max-width: 650px; }
.principles { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; margin-top: 36px; border-top: 1px solid var(--line); }
.principles div { padding: 15px 0; border-bottom: 1px solid var(--line); }
.principles strong { font-size: .95rem; }

.services { background: var(--surface); }
.section-intro { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 42px; }
.section-intro > div { max-width: 700px; }
.section-intro > p { max-width: 375px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #ccd7e1; border-left: 1px solid #ccd7e1; }
.service-card { position: relative; min-height: 285px; padding: 30px; border-right: 1px solid #ccd7e1; border-bottom: 1px solid #ccd7e1; background: var(--surface); transition: background .25s, transform .25s, box-shadow .25s; }
.service-card:hover { z-index: 2; transform: translateY(-5px); background: white; box-shadow: var(--shadow); }
.service-card svg { width: 44px; margin: 16px 0 34px; fill: none; stroke: var(--blue); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.4; }
.service-card p { margin-bottom: 0; font-size: .91rem; }

.why-us { background: white; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.why-card { min-height: 205px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.why-card h3 { min-height: 48px; margin-top: 18px; font-size: 1.18rem; }
.why-card p { margin-bottom: 0; font-size: .86rem; }

.markets { overflow: hidden; background: var(--navy); color: white; }
.markets-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 120px; }
.markets-copy p:not(.eyebrow) { max-width: 420px; color: #9eafc1; }
.market-list { border-top: 1px solid rgba(255,255,255,.17); }
.market-item { display: grid; grid-template-columns: 58px 1fr; align-items: start; gap: 24px; padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,.17); }
.market-item > span { display: grid; width: 52px; height: 52px; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: var(--cyan); font-size: .7rem; letter-spacing: .1em; }
.market-item h3 { margin: 0 0 8px; }
.market-item p { margin-bottom: 0; color: #9eafc1; font-size: .91rem; }
.portfolio { padding: 55px 0; background: white; }
.portfolio-card { border-left: 4px solid var(--blue); background: #edf2f5; }
.portfolio-copy { max-width: 800px; padding: 35px 42px; }
.portfolio-copy h2 { font-size: clamp(1.7rem, 2vw, 2.1rem); }
.portfolio-copy > p { max-width: 470px; }
.portfolio-copy .button { margin-top: 18px; }

.collaborations { padding: 78px 0; background: var(--surface); }
.collaboration-heading { max-width: 820px; }
.collaboration-heading h2 { font-size: clamp(1.65rem, 2.2vw, 2.35rem); }
.collaboration-heading > p:not(.eyebrow) { max-width: 680px; }
.partner-logo-list { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 36px; border-top: 1px solid #ced8e1; border-bottom: 1px solid #ced8e1; background: rgba(255,255,255,.42); }
.partner-logo-item { display: grid; min-width: 0; min-height: 112px; place-items: center; padding: 24px 20px; border-right: 1px solid #d8e1e9; transition: background .2s; }
.partner-logo-item:last-child { border-right: 0; }
.partner-logo-item:hover { background: white; }
.partner-logo { width: auto; max-width: 100%; height: auto; max-height: 48px; object-fit: contain; opacity: .82; transition: filter .2s, opacity .2s, transform .2s; }
.partner-logo--payguru { max-width: 145px; max-height: 44px; }
.partner-logo--turk-telekom { max-width: 136px; max-height: 46px; }
.partner-logo--vodafone { max-width: 142px; max-height: 38px; }
.partner-logo--turkcell { max-width: 142px; max-height: 38px; }
.partner-logo--etisalat { max-width: 76px; max-height: 52px; }
.collaboration-note { max-width: 760px; margin: 20px 0 0; font-size: .74rem; }

.contact { background: var(--navy-2); color: white; }
.contact-heading { max-width: 680px; margin-bottom: 38px; }
.contact-heading > p:not(.eyebrow) { color: #a9b9ca; }
.contact-layout { display: grid; grid-template-columns: .82fr 1.18fr; align-items: start; gap: 28px; }
.contact-channels { display: grid; gap: 14px; }
.contact-channel { display: flex; min-height: 210px; flex-direction: column; padding: 28px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.05); color: white; text-decoration: none; transition: border-color .2s, background .2s, transform .2s; }
.contact-channel:hover { transform: translateY(-2px); border-color: rgba(56,195,217,.55); background: rgba(255,255,255,.075); }
.contact-label { margin-bottom: 8px; color: #8fa4ba; font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.contact-channel h3 { margin: 10px 0; color: white; font-size: 1.18rem; }
.contact-channel p { margin-bottom: 22px; color: #9fb0c1; font-size: .85rem; }
.contact-channel strong { margin-top: auto; overflow-wrap: anywhere; color: white; font-size: .94rem; letter-spacing: -.01em; }
.contact-form-card { padding: 32px; background: white; color: var(--ink); }
.contact-form-card > h3 { margin-bottom: 8px; font-size: 1.35rem; }
.contact-form-card > p { margin-bottom: 25px; font-size: .86rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: grid; gap: 7px; color: #2a4057; font-size: .74rem; font-weight: 700; letter-spacing: .04em; }
.form-field--wide { grid-column: 1 / -1; }
.form-field input,
.form-field textarea { width: 100%; border: 1px solid #cdd7e0; border-radius: 3px; outline: 0; background: #fbfcfd; color: var(--ink); font: inherit; font-size: .92rem; font-weight: 400; letter-spacing: 0; transition: border-color .2s, box-shadow .2s; }
.form-field input { min-height: 46px; padding: 0 13px; }
.form-field textarea { min-height: 132px; padding: 12px 13px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(21,91,215,.1); }
.form-submit { margin-top: 22px; border: 0; cursor: pointer; }
.form-submit:disabled { cursor: wait; opacity: .65; transform: none; }
.form-status { margin: 16px 0 0; padding: 11px 13px; border-radius: 3px; font-size: .8rem; }
.form-status.is-success { background: #e8f6ef; color: #17633a; }
.form-status.is-error { background: #fff0f0; color: #9b1c27; }
.hidden-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.site-footer { padding: 58px 0 28px; background: #eef2f5; color: var(--ink); }
.footer-main { display: grid; grid-template-columns: 240px 1fr auto; align-items: center; gap: 60px; padding-bottom: 55px; }
.footer-brand { width: 230px; height: 58px; }
.footer-main p { max-width: 440px; margin: 0; color: #66798c; font-size: .87rem; }
.footer-main nav { display: flex; gap: 25px; }
.footer-main nav a { color: #40566e; font-size: .82rem; text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid #d2dce5; color: #708498; font-size: .72rem; }
.footer-bottom a { color: inherit; text-decoration: none; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-visible,
.js.content-ready .reveal { opacity: 1; transform: none; }

html[dir="rtl"] body { font-family: "Noto Sans Arabic", Tahoma, Arial, sans-serif; line-height: 1.75; text-align: right; }
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3 { line-height: 1.35; letter-spacing: 0; }
html[dir="rtl"] .site-header::before { inset: 0 0 0 auto; clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%); }
html[dir="rtl"] .site-nav { direction: rtl; }
html[dir="rtl"] .hero-copy,
html[dir="rtl"] .section-heading,
html[dir="rtl"] .section-intro,
html[dir="rtl"] .markets-copy,
html[dir="rtl"] .portfolio-copy,
html[dir="rtl"] .collaboration-heading,
html[dir="rtl"] .contact-heading { text-align: right; }
html[dir="rtl"] .portfolio-card { border-right: 4px solid var(--blue); border-left: 0; }
html[dir="rtl"] .contact-heading,
html[dir="rtl"] .contact-channel,
html[dir="rtl"] .contact-form-card { text-align: right; }
html[dir="rtl"] .footer-main nav { direction: rtl; }
html[dir="rtl"] .contact-channel strong,
html[dir="rtl"] .footer-bottom a { display: inline-block; direction: ltr; unicode-bidi: isolate; }
html[dir="rtl"] .form-field input[type="email"] { direction: ltr; text-align: left; }

@media (hover: hover) {
  .partner-logo { filter: grayscale(1); opacity: .68; }
  .partner-logo-item:hover .partner-logo { filter: grayscale(0); opacity: 1; transform: translateY(-1px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .section { padding: 70px 0; }
  .split-layout, .markets-layout, .contact-layout { grid-template-columns: 1fr; gap: 55px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-copy { padding: 46px; }
  .partner-logo-list { grid-template-columns: repeat(3, 1fr); }
  .partner-logo-item { border-bottom: 1px solid #d8e1e9; }
  .partner-logo-item:nth-child(3) { border-right: 0; }
  .partner-logo-item:nth-child(n+4) { border-bottom: 0; }
  .footer-main { grid-template-columns: 190px 1fr; }
  .footer-main nav { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 32px, 1180px); }
  .section { padding: 60px 0; }
  h1 { font-size: clamp(2.05rem, 9vw, 2.45rem); }
  .site-header::before { width: 245px; clip-path: polygon(0 0, 93% 0, 100% 100%, 0 100%); }
  html[dir="rtl"] .site-header::before { clip-path: polygon(7% 0, 100% 0, 100% 100%, 0 100%); }
  .nav-wrap { height: 78px; }
  .brand { width: 195px; height: 50px; }
  .header-tools { gap: 10px; }
  .language-switcher { gap: 4px; font-size: .64rem; }
  .menu-toggle { display: grid; width: 42px; height: 42px; place-content: center; gap: 5px; cursor: pointer; }
  .menu-toggle span:not(.sr-only) { display: block; width: 22px; height: 2px; background: currentColor; transition: transform .2s, opacity .2s; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: fixed; top: 78px; right: 0; bottom: 0; left: 0; display: flex; visibility: hidden; flex-direction: column; align-items: stretch; gap: 0; padding: 30px 24px; transform: translateX(100%); background: var(--navy); opacity: 0; transition: transform .25s, opacity .25s, visibility .25s; }
  html[dir="rtl"] .site-nav { transform: translateX(-100%); text-align: right; }
  .site-nav.is-open { visibility: visible; transform: none; opacity: 1; }
  .site-nav a { padding: 18px 5px; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 1.05rem; }
  .site-nav .nav-cta { margin-top: 20px; text-align: center; }
  .hero { min-height: auto; }
  .hero-layout { min-height: 610px; padding-top: 125px; padding-bottom: 50px; }
  .hero h1 { font-size: clamp(2.15rem, 9.5vw, 2.55rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-markets { flex-wrap: wrap; margin-top: 45px; }
  .section-intro { align-items: start; flex-direction: column; gap: 10px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 260px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { min-height: auto; padding: 27px; }
  .why-card h3 { min-height: auto; }
  .portfolio-copy { padding: 40px 28px; }
  .partner-logo-list { grid-template-columns: repeat(2, 1fr); }
  .partner-logo-item { min-height: 96px; padding: 20px 18px; }
  .partner-logo-item:nth-child(3) { border-right: 1px solid #d8e1e9; }
  .partner-logo-item:nth-child(even) { border-right: 0; }
  .partner-logo-item:nth-child(n+4) { border-bottom: 1px solid #d8e1e9; }
  .partner-logo-item:last-child { border-bottom: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field--wide { grid-column: auto; }
  .contact-form-card { padding: 26px 22px; }
  .footer-main { grid-template-columns: 1fr; gap: 25px; }
  .footer-main nav { flex-wrap: wrap; grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .contact-channel strong, .footer-bottom a { max-width: 100%; overflow-wrap: anywhere; word-break: break-word; }
}

@media (max-width: 420px) {
  .site-header::before { width: 192px; }
  .brand { width: 148px; height: 42px; }
  .header-tools { gap: 5px; }
  .language-switcher { gap: 2px; font-size: .58rem; }
  .menu-toggle { width: 38px; height: 38px; }
  .hero-markets span { width: 100%; }
  .market-item { grid-template-columns: 48px 1fr; }
  .market-item > span { width: 44px; height: 44px; }
}
