/* ═══════════════════════════════════════════════════════════════
   RETORİK · ANKARA TERCÜME — Modern Direction (B v3)
   Navy #1E2B45 · Sky #4F94D4 · Montserrat + Open Sans
   Dinamik layout: Hero · Stats · Process · Services Alt · Langs Marquee · About · Testimonials · FAQ · CTA
   ═══════════════════════════════════════════════════════════════ */

:root {
  --primary:        #1E2B45;
  --primary-deep:   #14213A;
  --accent:         #4F94D4;
  --accent-light:   #7DBEF0;
  --accent-soft:    #B8D6EE;
  --accent-tint:    rgba(79,148,212,0.08);
  --bg:             #F8F9FC;
  --bg-soft:        #EEF2F8;
  --paper:          #FFFFFF;
  --text:           #1E2B45;
  --text-muted:     #5C6577;
  --text-soft:      #8B95A5;
  --border:         #E2E8F0;
  --border-soft:    #ECF1F7;
  --footer:         #0D1422;

  --color-primary:  var(--primary);
  --color-accent:   var(--accent);
  --color-bg:       var(--bg);
  --color-text:     var(--text);

  --font-head:      'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:      'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w:          1240px;
  --gutter:         28px;
  --topbar-h:       42px;
  --nav-h:          68px;
  --total-h:        110px;
  --r:              10px;
  --r-lg:           16px;
}

/* ──────── Reset ──────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.65;
  color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }

/* ──────── Type ──────── */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.1; letter-spacing: -.5px; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.05rem, 1.8vw, 1.35rem); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* ──────── Buttons ──────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  letter-spacing: 0.6px; padding: 14px 28px;
  border-radius: var(--r); border: 2px solid transparent;
  transition: all .22s cubic-bezier(.2,.8,.2,1);
  white-space: nowrap; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 6px 20px rgba(79,148,212,.32); }
.btn-primary:hover { background: #3b80c2; box-shadow: 0 10px 28px rgba(79,148,212,.42); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,.4); color: #fff; }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-outline { background: transparent; border-color: var(--accent); color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-wa { background: #25D366; color: #fff; box-shadow: 0 6px 20px rgba(37,211,102,.34); }
.btn-wa:hover { background: #1eaf56; }

/* ════════════════════════════════════════
   CONTACT TOPBAR (always-visible thin strip)
════════════════════════════════════════ */
.contact-topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 901;
  height: var(--topbar-h);
  background: var(--primary-deep);
  border-bottom: 1px solid rgba(79,148,212,.18);
  display: flex; align-items: center;
  font-size: 12.5px;
}
.ct-inner {
  width: 100%; max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
}
.ct-left {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.ct-item {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.78);
  font-family: var(--font-body); font-weight: 500;
  transition: color .18s;
  white-space: nowrap;
}
.ct-item:hover { color: var(--accent-light); }
.ct-item i { color: var(--accent-light); font-size: 12px; }
.ct-item span { letter-spacing: 0.2px; }
.ct-quote-btn {
  background: var(--accent); color: #fff;
  font-family: var(--font-head); font-weight: 700;
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  padding: 8px 18px; border-radius: 6px;
  display: inline-flex; align-items: center; gap: 7px;
  box-shadow: 0 2px 10px rgba(79,148,212,.32);
  transition: background .18s, transform .15s;
  border: 0; cursor: pointer; white-space: nowrap;
}
.ct-quote-btn:hover { background: #3b80c2; transform: translateY(-1px); }
.ct-quote-btn i { font-size: 11px; }

/* ════════════════════════════════════════
   NAV
════════════════════════════════════════ */
.nav {
  position: fixed; top: var(--topbar-h); left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  background: rgba(30,43,69,.94); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(79,148,212,.18);
  display: flex; align-items: center;
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled { background: rgba(30,43,69,.98); box-shadow: 0 4px 28px rgba(0,0,0,.28); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter);
}

.logo-wrap { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.logo-globe {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.logo-globe svg { width: 20px; height: 20px; }
.logo-text-block { line-height: 1; }
.logo-main { font-family: var(--font-head); font-size: 18px; font-weight: 900; color: #fff; letter-spacing: 2.5px; display: block; }
.logo-sub { font-family: var(--font-head); font-size: 8.5px; font-weight: 600; color: var(--accent-light); letter-spacing: 2px; display: block; margin-top: 2px; }
img[data-logo-image] {
  height: 50px; width: auto;
  background: #FAF7F0;
  border-radius: 8px;
  padding: 3px 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  flex-shrink: 0;
}
/* Hide only when no src or empty src */
img[data-logo-image]:not([src]),
img[data-logo-image][src=""] {
  display: none;
}

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-family: var(--font-head); font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.75); padding: 8px 14px; border-radius: 6px;
  transition: color .18s, background .18s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,.08); }
.nav-cta { background: var(--accent); color: #fff !important; padding: 9px 18px !important; box-shadow: 0 4px 14px rgba(79,148,212,.35); }
.nav-cta:hover { background: #3b80c2 !important; transform: translateY(-1px); }

.nav-toggle { display: none; color: #fff; font-size: 22px; padding: 6px; }

/* ════════════════════════════════════════
   1 ·  HERO  (dark, split, video bg)
════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--primary);
  padding-top: var(--total-h);
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg video, .hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .14; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(14,22,40,.97) 0%, rgba(14,22,40,.86) 45%, rgba(14,22,40,.55) 100%),
    radial-gradient(ellipse at top right, rgba(79,148,212,.18) 0%, transparent 60%);
}

.hero-lang-bg {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-wrap: wrap; align-content: center;
  gap: 18px 44px; padding: 60px 60px;
  pointer-events: none; overflow: hidden;
  /* Pull behind text — only show on outer edges */
  -webkit-mask-image: radial-gradient(ellipse at center, transparent 30%, #000 75%);
          mask-image: radial-gradient(ellipse at center, transparent 30%, #000 75%);
}
.hero-lang-bg span {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.2vw, 50px);
  font-weight: 900; color: rgba(255,255,255,.014);
  white-space: nowrap; line-height: 1;
}

.hero-body {
  position: relative; z-index: 2;
  padding: 80px 0 0;
  min-height: calc(100vh - var(--nav-h));
  display: flex; flex-direction: column; justify-content: center;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px; align-items: center;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(79,148,212,.14); border: 1px solid rgba(79,148,212,.28);
  border-radius: 100px; padding: 8px 16px;
  font-family: var(--font-head); font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--accent-light); margin-bottom: 24px;
}
.hero-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.5); }
}

.hero-h1 { color: #fff; margin-bottom: 22px; }
.hero-h1 .accent {
  background: linear-gradient(120deg, var(--accent-light) 0%, #a8d4f5 50%, var(--accent-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; background-size: 200% 100%;
  animation: shimmer 8s ease-in-out infinite;
}
.hero-h1 .h1-tail {
  display: block;
  font-style: italic; font-weight: 400;
  font-size: .58em;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
  letter-spacing: -.5px;
}
@keyframes shimmer { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.hero-sub {
  font-size: 18px; line-height: 1.7;
  color: rgba(255,255,255,.7); max-width: 540px; margin-bottom: 22px;
}
.hero-address {
  display: inline-flex; align-items: flex-start; gap: 10px;
  font-family: var(--font-body); font-size: 13.5px; line-height: 1.5;
  color: rgba(255,255,255,.78);
  background: rgba(79,148,212,.1);
  border: 1px solid rgba(79,148,212,.28);
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 28px;
  max-width: 540px;
  transition: background .18s, border-color .18s;
}
.hero-address:hover { background: rgba(79,148,212,.2); border-color: var(--accent); color: #fff; }
.hero-address i { color: var(--accent-light); font-size: 14px; flex-shrink: 0; margin-top: 2px; }
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero figure with badge */
.hero-img-panel { position: relative; }
.hero-img-frame {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  height: 540px;
  box-shadow: -24px 24px 70px rgba(0,0,0,.5);
}
.hero-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-frame::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(30,43,69,.18) 0%, transparent 60%);
}
.hero-img-deco {
  position: absolute;
  top: -14px; right: -14px;
  width: 100%; height: 100%;
  border: 2px solid rgba(79,148,212,.32);
  border-radius: var(--r-lg);
  z-index: -1;
}

/* Floating glass badge */
.hero-badge {
  position: absolute; bottom: 22px; left: 22px; z-index: 3;
  background: rgba(14,22,40,.78);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(79,148,212,.32);
  border-radius: var(--r);
  padding: 14px 20px;
  display: flex; align-items: center; gap: 14px;
}
.hero-badge .icon {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(79,148,212,.22);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-light); font-size: 16px;
}
.hero-badge .num { font-family: var(--font-head); font-size: 22px; font-weight: 900; color: #fff; line-height: 1; display: block; }
.hero-badge .lbl { font-family: var(--font-head); font-size: 9.5px; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase; color: rgba(255,255,255,.55); }

/* Hero stats inline strip — REMOVED from hero, now its own dark band */

.hero-bottom-bar {
  margin-top: 70px; padding: 26px 0 18px;
  display: flex; gap: 20px; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
}
.hero-trust {
  display: flex; gap: 28px; align-items: center; flex-wrap: wrap;
  font-family: var(--font-head); font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.hero-trust b { color: var(--accent-light); margin-right: 8px; font-weight: 700; }
.hero-scroll {
  font-family: var(--font-head); font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent-light);
  display: flex; align-items: center; gap: 10px;
}
.hero-scroll .down { animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0) } 50% { transform: translateY(4px) } }

/* ════════════════════════════════════════
   2 ·  STATS BAND  (light inset, between dark hero and process)
════════════════════════════════════════ */
.stats-band {
  background: var(--paper);
  padding: 56px 0;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  position: relative; z-index: 1;
  gap: 0;
}
.stat-col {
  text-align: center; padding: 8px 28px;
  border-right: 1px solid var(--border-soft);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.stat-col:last-child { border-right: 0; }
.stat-col .stat-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--accent-tint); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; margin-bottom: 4px;
}
.stat-numwrap { display: flex; align-items: baseline; justify-content: center; gap: 1px; }
.s-num {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  font-weight: 900; line-height: 1;
  color: var(--primary); letter-spacing: -1.5px;
}
.s-sfx {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 900; color: var(--accent); line-height: 1;
}
.s-lbl {
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted);
}

/* ════════════════════════════════════════
   3 ·  PROCESS TIMELINE  (horizontal stepped flow with icons)
════════════════════════════════════════ */
.process { padding: 100px 0 80px; background: var(--bg); }

.section-head {
  text-align: center; max-width: 720px; margin: 0 auto 64px;
}
.section-head h2 { margin-bottom: 14px; color: var(--primary); }
.section-head .lead { font-size: 17px; line-height: 1.7; color: var(--text-muted); }

.process-flow {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.process-flow::before {
  content: ''; position: absolute;
  top: 44px; left: 12.5%; right: 12.5%;
  height: 2px; background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
  opacity: .25; z-index: 0;
}
.process-step { text-align: center; padding: 0 18px; position: relative; z-index: 1; }
.process-step .ico {
  width: 88px; height: 88px; margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--accent);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  position: relative;
  transition: all .3s;
}
.process-step:hover .ico {
  background: var(--accent); color: #fff;
  box-shadow: 0 12px 28px rgba(79,148,212,.32);
  transform: translateY(-3px);
}
.process-step .ico::after {
  content: attr(data-num);
  position: absolute; bottom: -6px; right: -4px;
  background: var(--primary); color: #fff;
  width: 26px; height: 26px; border-radius: 50%;
  font-family: var(--font-head); font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--bg);
  letter-spacing: 0;
}
.process-step:hover .ico::after { background: var(--accent-light); }
.process-step h3 {
  font-family: var(--font-head); font-size: 16px; font-weight: 700;
  color: var(--primary); margin-bottom: 8px; letter-spacing: -.2px;
}
.process-step p {
  font-size: 13.5px; line-height: 1.6;
  color: var(--text-muted);
}

/* ════════════════════════════════════════
   4 ·  SERVICES  (alternating image-text rows, NOT cards)
════════════════════════════════════════ */
.svc-block { padding: 88px 0; position: relative; }
.svc-block:nth-child(odd) { background: var(--bg); }
.svc-block:nth-child(even) { background: var(--paper); }
.svc-block:not(:last-child) { border-bottom: 1px solid var(--border-soft); }

.svc-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center;
}
.svc-grid.flip .svc-fig { order: 2; }

.svc-fig {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  height: 440px;
  box-shadow: 0 20px 60px rgba(30,43,69,.12);
}
.svc-fig img { width: 100%; height: 100%; object-fit: cover; }
.svc-fig::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(30,43,69,.25));
}
.svc-fig-tag {
  position: absolute; top: 22px; left: 22px; z-index: 2;
  background: var(--paper); color: var(--accent);
  font-family: var(--font-head); font-size: 13px; font-weight: 800;
  letter-spacing: 2px;
  padding: 8px 16px; border-radius: 100px;
}

.svc-text .eyebrow { color: var(--accent); }
.svc-text h2 { color: var(--primary); margin-bottom: 4px; }
.svc-text .svc-subtitle {
  display: block;
  font-family: var(--font-body);
  font-size: 16px; font-style: italic; font-weight: 500;
  color: var(--accent); margin-bottom: 18px;
}
.svc-text .lead {
  font-size: 16px; line-height: 1.7; color: var(--text-muted);
  margin-bottom: 28px;
}

.svc-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; margin-bottom: 32px;
  border-top: 1px solid var(--border);
}
.svc-features li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 14.5px; color: var(--text);
  font-family: var(--font-body); font-weight: 500;
}
.svc-features li:nth-child(odd) { padding-right: 18px; }
.svc-features li:nth-child(even) { padding-left: 18px; border-left: 1px solid var(--border-soft); }
.svc-features li i {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent-tint); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; flex-shrink: 0; margin-top: 3px;
  font-style: normal; font-weight: 800;
}

.svc-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ════════════════════════════════════════
   5 ·  LANGUAGES MARQUEE  (full-width scroll band)
════════════════════════════════════════ */
.langs-marquee {
  background: var(--primary);
  padding: 36px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(79,148,212,.18);
  border-bottom: 1px solid rgba(79,148,212,.18);
}
.langs-marquee::before, .langs-marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px;
  z-index: 2; pointer-events: none;
}
.langs-marquee::before { left: 0; background: linear-gradient(90deg, var(--primary), transparent); }
.langs-marquee::after { right: 0; background: linear-gradient(-90deg, var(--primary), transparent); }

.marquee-track {
  display: inline-flex; gap: 0;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}
.marquee-track > .lang {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: rgba(255,255,255,.65);
  padding: 0 14px 0 24px;
  letter-spacing: -1px;
  display: inline-flex; align-items: baseline; gap: 14px;
}
.marquee-track > .lang .code {
  font-family: var(--font-mono, 'Courier New', monospace);
  font-size: clamp(11px, 1.2vw, 14px);
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 1.5px;
  background: rgba(79,148,212,.16);
  border: 1px solid rgba(79,148,212,.34);
  padding: 4px 10px;
  border-radius: 100px;
  margin-left: 4px;
}
.marquee-track > .star {
  color: var(--accent);
  font-size: clamp(12px, 1.6vw, 18px);
  padding: 0 12px;
  align-self: center;
  opacity: .7;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ════════════════════════════════════════
   6 ·  ABOUT SPLIT  (image + offset content card)
════════════════════════════════════════ */
.about-split {
  padding: 110px 0;
  background: var(--bg);
  position: relative;
}
.about-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 0;
  align-items: stretch;
  position: relative;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--r-lg); overflow: hidden;
  height: 560px;
  box-shadow: 0 24px 60px rgba(30,43,69,.18);
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30,43,69,.25) 0%, transparent 50%);
}

.about-content-card {
  background: var(--paper);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 60px rgba(30,43,69,.12);
  padding: 56px 48px;
  margin-left: -80px; margin-top: 48px; margin-bottom: 48px;
  position: relative;
  z-index: 2;
}
.about-content-card .eyebrow { color: var(--accent); }
.about-content-card h2 { color: var(--primary); margin-bottom: 22px; }
.about-content-card p { color: var(--text-muted); font-size: 16px; line-height: 1.75; margin-bottom: 16px; }

.about-trust-list {
  margin: 28px 0 32px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px;
}
.about-trust-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14.5px; color: var(--text); font-weight: 500;
  line-height: 1.5;
}
.about-trust-list li i {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; flex-shrink: 0;
}

/* ════════════════════════════════════════
   7 ·  TESTIMONIALS  (featured + grid)
════════════════════════════════════════ */
.testimonials { padding: 110px 0; background: var(--paper); }

.t-featured {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  border-radius: var(--r-lg); padding: 56px 60px;
  margin-bottom: 28px; position: relative; overflow: hidden;
}
.t-featured::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(79,148,212,.16) 0%, transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(79,148,212,.1) 0%, transparent 50%);
  pointer-events: none;
}
.t-quote-mark {
  font-family: var(--font-head); font-size: 140px; font-weight: 900;
  color: rgba(79,148,212,.18);
  line-height: .8; margin-bottom: 4px;
  display: block;
}
.t-featured-quote {
  font-size: clamp(18px, 2.2vw, 24px); font-weight: 500;
  color: rgba(255,255,255,.94); line-height: 1.55;
  margin-bottom: 28px; position: relative; z-index: 1;
  max-width: 800px;
}
.t-featured-author { display: flex; align-items: center; gap: 16px; position: relative; z-index: 1; }
.t-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(79,148,212,.22); border: 2px solid rgba(79,148,212,.4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 16px; font-weight: 800;
  color: var(--accent-light);
}
.t-name { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: #fff; }
.t-role { font-size: 12.5px; color: var(--accent-light); margin-top: 2px; }

.t-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.t-card {
  background: var(--bg);
  border: 1px solid var(--border-soft); border-radius: var(--r-lg);
  padding: 30px 28px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.t-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(30,43,69,.1); border-color: var(--accent-soft); }
.t-card .stars { color: #F59E0B; font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; }
.t-card p { font-size: 15px; line-height: 1.65; color: var(--text); margin-bottom: 16px; }
.t-card .author { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--primary); }
.t-card .role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ════════════════════════════════════════
   8 ·  FAQ  (accordion)
════════════════════════════════════════ */
.faq { padding: 110px 0; background: var(--bg); }

.faq-grid {
  display: grid; grid-template-columns: 380px 1fr;
  gap: 64px; align-items: start;
}
.faq-side h2 { color: var(--primary); margin-bottom: 16px; }
.faq-side p { font-size: 16px; line-height: 1.7; color: var(--text-muted); margin-bottom: 28px; }
.faq-side .btn { margin-top: 8px; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item:hover { border-color: var(--accent-soft); }
.faq-item[open] { border-color: var(--accent); box-shadow: 0 8px 28px rgba(79,148,212,.15); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 22px 26px;
  font-family: var(--font-head); font-size: 16px; font-weight: 700;
  color: var(--primary);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-family: var(--font-head); font-size: 24px; font-weight: 400;
  color: var(--accent); transition: transform .25s, color .25s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-item .answer {
  padding: 0 26px 24px;
  font-size: 15px; line-height: 1.75; color: var(--text-muted);
}

/* ════════════════════════════════════════
   9 ·  CTA  (gradient closing)
════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 60%, #1d3563 100%);
  padding: 96px 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(79,148,212,.22) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(79,148,212,.12) 0%, transparent 60%);
}
.cta-section::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(0deg, transparent 0%, transparent calc(100% - 1px), rgba(79,148,212,.06) 100%),
    linear-gradient(90deg, transparent 0%, transparent calc(100% - 1px), rgba(79,148,212,.06) 100%);
  background-size: 60px 60px;
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-section .eyebrow { color: var(--accent-light); display: inline-block; }
.cta-section h2 { color: #fff; margin-bottom: 16px; font-size: clamp(2rem, 4.4vw, 3.4rem); }
.cta-section > .container > .cta-inner > p {
  font-size: 18px; line-height: 1.65; color: rgba(255,255,255,.7);
  max-width: 540px; margin: 0 auto 38px;
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  background: var(--footer);
  padding: 72px 0 30px;
  font-size: 14px; color: rgba(255,255,255,.55);
}
.ft-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.ft-brand .logo-wrap { margin-bottom: 18px; }
.ft-brand p { font-size: 14px; line-height: 1.65; max-width: 280px; }
.ft-col h4 {
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent-light); margin-bottom: 18px;
}
.ft-col a, .ft-col p { font-size: 14px; color: rgba(255,255,255,.5); margin-bottom: 9px; display: block; transition: color .2s; }
.ft-col a:hover { color: #fff; }
.ft-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; gap: 16px; flex-wrap: wrap;
}

/* ════════════════════════════════════════
   PAGE HEROES (inner pages)
════════════════════════════════════════ */
.page-hero {
  background: var(--primary);
  padding: calc(var(--total-h) + 60px) 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(79,148,212,.2) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(79,148,212,.08) 0%, transparent 50%);
}
.page-hero-bg {
  position: absolute; inset: 0; opacity: .14;
}
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-content { position: relative; z-index: 1; max-width: 720px; }
.page-hero-content .eyebrow { color: var(--accent-light); }
.page-hero-content h1 { color: #fff; margin-bottom: 14px; }
.page-hero-content p { font-size: 18px; line-height: 1.65; color: rgba(255,255,255,.72); }

/* ════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════ */
.about-story { padding: 110px 0; background: var(--paper); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-text h2 { color: var(--primary); margin-bottom: 24px; white-space: pre-line; }
.story-text p { font-size: 16px; line-height: 1.85; color: var(--text-muted); margin-bottom: 16px; }
.story-img { border-radius: var(--r-lg); overflow: hidden; height: 520px; box-shadow: 0 24px 64px rgba(30,43,69,.15); }
.story-img img { width: 100%; height: 100%; object-fit: cover; }

.values-section { padding: 100px 0; background: var(--primary); position: relative; overflow: hidden; }
.values-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(79,148,212,.12) 0%, transparent 60%); }
.values-section .container { position: relative; z-index: 1; }
.values-section .section-head h2 { color: #fff; }
.values-section .section-head .eyebrow { color: var(--accent-light); }
.values-section .section-head .lead { color: rgba(255,255,255,.65); }
.val-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.val-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg); padding: 36px 30px;
  transition: background .25s, transform .25s, border-color .25s;
}
.val-card:hover { background: rgba(255,255,255,.07); transform: translateY(-3px); border-color: rgba(79,148,212,.3); }
.val-icon {
  width: 54px; height: 54px; border-radius: 12px;
  background: rgba(79,148,212,.22);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-light); font-size: 22px;
  margin-bottom: 22px;
}
.val-card h3 { color: #fff; margin-bottom: 10px; }
.val-card p { font-size: 14px; color: rgba(255,255,255,.62); line-height: 1.7; }

/* ════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════ */
.contact-section { padding: 100px 0; background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

.ci-list { border-top: 1px solid var(--border); }
.ci-row {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 18px; align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-soft);
}
.ci-icon {
  width: 46px; height: 46px; border-radius: 10px;
  background: var(--accent-tint); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.ci-lbl { font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.ci-val { font-size: 16px; color: var(--text); font-weight: 500; }
.ci-val a { color: var(--accent); transition: color .2s; }
.ci-val a:hover { color: var(--primary); text-decoration: underline; }

.contact-map { border-radius: var(--r-lg); overflow: hidden; height: 420px; box-shadow: 0 16px 50px rgba(30,43,69,.12); }
.contact-map iframe { width: 100%; height: 100%; border: 0; }

.contact-form-section { padding: 80px 0 100px; background: var(--bg); }
.cf-wrap { max-width: 720px; margin: 0 auto; }
.cf-head { text-align: center; margin-bottom: 40px; }
.cf-head h2 { color: var(--primary); margin-bottom: 12px; }
.cf-head p { font-size: 16px; color: var(--text-muted); }

.cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cf-group { display: flex; flex-direction: column; gap: 7px; }
.cf-group.full { grid-column: 1/-1; }
.cf-group label { font-family: var(--font-head); font-size: 12px; font-weight: 700; color: var(--text); letter-spacing: 0.4px; }
.cf-group input, .cf-group textarea, .cf-group select {
  padding: 13px 16px; border: 2px solid var(--border); border-radius: var(--r);
  font-family: var(--font-body); font-size: 15px; color: var(--text);
  background: var(--paper); outline: 0; transition: border-color .2s, box-shadow .2s;
}
.cf-group input:focus, .cf-group textarea:focus, .cf-group select:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(79,148,212,.12); }
.cf-group textarea { resize: vertical; min-height: 130px; }
.cf-submit { text-align: center; margin-top: 28px; }

/* ════════════════════════════════════════
   FLOATING WHATSAPP
════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 700;
  width: 50px; height: 50px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 6px 22px rgba(37,211,102,.5);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float::before {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,.4);
  animation: wa-pulse 2s infinite;
}
@keyframes wa-pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0; transform: scale(1.35); } }

/* ════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════ */
.fade-up   { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.fade-left { opacity: 0; transform: translateX(-24px); transition: opacity .65s ease, transform .65s ease; }
.fade-right{ opacity: 0; transform: translateX(24px);  transition: opacity .65s ease, transform .65s ease; }
.delay-1   { transition-delay: .12s; }
.delay-2   { transition-delay: .24s; }
.delay-3   { transition-delay: .36s; }
.fade-up.visible, .fade-left.visible, .fade-right.visible { opacity: 1; transform: none; }

/* ════════════════════════════════════════
   TEKLIF MODAL (7/24 Quote Request)
════════════════════════════════════════ */
.teklif-modal {
  position: fixed; inset: 0; z-index: 9000;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.teklif-modal.open { display: flex; }
.modal-overlay {
  position: absolute; inset: 0;
  background: rgba(13,20,34,.78); backdrop-filter: blur(8px);
}
.modal-card {
  position: relative; z-index: 1;
  background: var(--paper);
  border-radius: var(--r-lg);
  width: 100%; max-width: 580px;
  max-height: 92vh; overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  padding: 40px 44px 36px;
  animation: modalIn .28s cubic-bezier(.2,.8,.2,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--text-muted);
  transition: background .18s, color .18s;
}
.modal-close:hover { background: var(--accent-tint); color: var(--accent); }
.modal-card .eyebrow { color: var(--accent); margin-bottom: 8px; }
.modal-card h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem); color: var(--primary);
  margin-bottom: 8px;
}
.modal-card > p { font-size: 14.5px; line-height: 1.6; color: var(--text-muted); margin-bottom: 22px; }
.modal-form { display: flex; flex-direction: column; gap: 14px; }
.modal-form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.modal-form label { font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 0.5px; color: var(--text); margin-bottom: 5px; display: block; }
.modal-form input,
.modal-form select,
.modal-form textarea {
  width: 100%;
  padding: 11px 14px; border: 2px solid var(--border); border-radius: var(--r);
  font-family: var(--font-body); font-size: 14.5px; color: var(--text);
  background: var(--paper); outline: 0;
  transition: border-color .18s, box-shadow .18s;
}
.modal-form input:focus, .modal-form select:focus, .modal-form textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(79,148,212,.14);
}
.modal-form textarea { resize: vertical; min-height: 80px; }
.modal-form .file-input {
  border: 2px dashed var(--border); border-radius: var(--r);
  padding: 14px; text-align: center;
  font-size: 13px; color: var(--text-muted);
  cursor: pointer; transition: border-color .18s, color .18s;
}
.modal-form .file-input:hover { border-color: var(--accent); color: var(--accent); }
.modal-form .submit-row { margin-top: 4px; display: flex; gap: 10px; align-items: center; }
.modal-form .submit-row .btn { flex: 1; justify-content: center; }
.modal-msg { margin-top: 14px; font-size: 13px; text-align: center; display: none; }


/* ════════════════════════════════════════
   SERVICES — Compact Grid (for 17 services in groups)
════════════════════════════════════════ */
.svc-groups-page { padding: 80px 0 60px; background: var(--paper); }
.svc-groups-page:nth-child(odd) { background: var(--bg); }

.svc-group-head {
  display: grid; grid-template-columns: auto 1fr;
  gap: 36px; align-items: end;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 22px;
  margin-bottom: 36px;
}
.svc-group-head .left .eyebrow { color: var(--accent); }
.svc-group-head .left h2 {
  color: var(--primary);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  letter-spacing: -.5px;
  margin-top: 4px;
  white-space: nowrap;
}
.svc-group-head .right p {
  font-size: 15px; line-height: 1.65; color: var(--text-muted);
  max-width: 540px; text-align: right; margin-left: auto;
}

.svc-group-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px 28px;
  transition: border-color .22s, box-shadow .22s, transform .22s;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
}
.svc-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 36px rgba(30,43,69,.1);
  transform: translateY(-2px);
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .35s;
}
.svc-card:hover::before { transform: scaleX(1); }

.svc-card .ico-row { display: flex; align-items: center; gap: 14px; }
.svc-card .ico {
  width: 46px; height: 46px; border-radius: 10px;
  background: var(--accent-tint); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.svc-card h3 {
  font-family: var(--font-head); font-size: 17px; font-weight: 700;
  color: var(--primary); line-height: 1.25; letter-spacing: -.2px;
}
.svc-card .lead {
  font-size: 14px; color: var(--text-muted); line-height: 1.55;
}
.svc-card .body {
  font-size: 13.5px; line-height: 1.7; color: var(--text);
}
.svc-card .body[hidden] { display: none; }
.svc-card .toggle {
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 6px;
  cursor: pointer; align-self: flex-start;
  margin-top: 4px;
  transition: gap .18s;
}
.svc-card .toggle:hover { gap: 10px; }
.svc-card .toggle::after { content: '+'; font-size: 16px; transition: transform .25s; }
.svc-card.open .toggle::after { content: '−'; }


/* ════════════════════════════════════════
   LANGUAGES PAGE
════════════════════════════════════════ */
.langs-section { padding: 90px 0; }

.langs-main-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.lang-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 26px;
  transition: border-color .22s, transform .22s, box-shadow .22s;
  display: flex; flex-direction: column; gap: 10px;
}
.lang-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30,43,69,.08);
}
.lang-card .head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 10px; padding-bottom: 8px;
  border-bottom: 1px solid var(--border-soft);
}
.lang-card .name {
  font-family: var(--font-head); font-size: 19px; font-weight: 800;
  color: var(--primary); letter-spacing: -.3px;
}
.lang-card .code {
  font-family: var(--font-mono, 'Courier New', monospace);
  font-size: 11px; font-weight: 600;
  color: var(--accent);
  background: var(--accent-tint);
  padding: 4px 9px; border-radius: 100px;
  letter-spacing: 1.5px;
}
.lang-card p {
  font-size: 13.5px; line-height: 1.6;
  color: var(--text-muted);
}

.langs-extra { padding: 80px 0; background: var(--paper); }
.langs-pill-wrap {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 32px;
}
.lang-pill {
  background: var(--paper);
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 9px 18px; border-radius: 100px;
  font-family: var(--font-head); font-size: 13.5px; font-weight: 600;
  transition: all .2s;
  cursor: default;
}
.lang-pill:hover {
  background: var(--accent); border-color: var(--accent); color: #fff;
  transform: translateY(-2px);
}
.langs-extra-footer {
  margin-top: 36px; padding: 26px 28px;
  background: var(--accent-tint);
  border-left: 4px solid var(--accent);
  border-radius: var(--r);
  font-size: 15px; line-height: 1.7; color: var(--text);
}
.langs-extra-footer b { color: var(--accent); }


/* ════════════════════════════════════════
   FAQ PAGE — grouped sections
════════════════════════════════════════ */
.faq-page { padding: 80px 0; }
.faq-group {
  margin-bottom: 56px;
}
.faq-group-head {
  display: flex; align-items: center; gap: 16px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--primary);
  margin-bottom: 22px;
}
.faq-group-head .ico {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--accent-tint); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.faq-group-head h2 {
  font-family: var(--font-head); font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  color: var(--primary); letter-spacing: -.3px;
}
.faq-group .faq-list {
  display: flex; flex-direction: column; gap: 10px;
}


/* ════════════════════════════════════════
   CONTACT PARTNERS / LOCATIONS (4-up cards)
════════════════════════════════════════ */
.partners-section { padding: 80px 0; background: var(--paper); border-top: 1px solid var(--border); }
.partners-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.partner-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 28px 26px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  display: flex; flex-direction: column;
}
.partner-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(30,43,69,.1);
  transform: translateY(-2px);
}
.partner-card .tag {
  display: inline-block;
  font-family: var(--font-head); font-size: 10.5px; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.partner-card h3 {
  font-family: var(--font-head); font-size: 18px; font-weight: 700;
  color: var(--primary); line-height: 1.25;
  margin-bottom: 10px;
}
.partner-card .addr {
  font-size: 14px; line-height: 1.55; color: var(--text-muted);
  padding-bottom: 16px; margin-bottom: 16px;
  border-bottom: 1px solid var(--border-soft);
}
.partner-card .links {
  display: flex; flex-direction: column; gap: 9px;
  font-size: 13.5px;
}
.partner-card .links a {
  display: flex; align-items: center; gap: 9px;
  color: var(--text);
  transition: color .15s;
}
.partner-card .links a:hover { color: var(--accent); }
.partner-card .links a i {
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--accent-tint); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; flex-shrink: 0;
}


/* ════════════════════════════════════════
   REFERENCES PLACEHOLDER
════════════════════════════════════════ */
.ref-placeholder {
  padding: 120px 0;
  background: var(--paper);
  text-align: center;
}
.ref-card {
  max-width: 640px; margin: 0 auto;
  background: var(--bg);
  border: 1px dashed var(--accent);
  border-radius: var(--r-lg);
  padding: 64px 40px;
  position: relative;
}
.ref-card .ico {
  width: 72px; height: 72px; margin: 0 auto 24px;
  border-radius: 50%; background: var(--accent-tint);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 28px;
}
.ref-card h2 { color: var(--primary); margin-bottom: 14px; }
.ref-card p { font-size: 16px; line-height: 1.7; color: var(--text-muted); max-width: 480px; margin: 0 auto 24px; }


/* ════════════════════════════════════════
   ABOUT PAGE — vision / expertise / why-us additions
════════════════════════════════════════ */
.vision-section { padding: 90px 0; background: var(--paper); }
.vision-section .section-head { text-align: left; max-width: 100%; }
.vision-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.vision-text p { font-size: 16px; line-height: 1.85; color: var(--text-muted); margin-bottom: 18px; }
.vision-locations { display: flex; flex-direction: column; gap: 14px; }
.vl-row {
  display: grid; grid-template-columns: 36px 1fr auto;
  gap: 14px; align-items: center;
  padding: 14px 18px;
  background: var(--bg);
  border-radius: var(--r);
  border-left: 4px solid var(--accent);
}
.vl-row .ico {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.vl-row .city { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--primary); }
.vl-row .city b { color: var(--accent); margin-left: 8px; }
.vl-row .city span { font-size: 13px; font-weight: 500; color: var(--text-muted); margin-left: 8px; }
.vl-row .tag { font-family: var(--font-head); font-size: 9.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); background: var(--accent-tint); padding: 4px 10px; border-radius: 100px; }

.expertise-section { padding: 90px 0; }
.exp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.exp-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px 26px 24px;
  transition: border-color .22s, transform .22s;
}
.exp-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.exp-card .ico {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--accent-tint); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 14px;
}
.exp-card h3 { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.exp-card p { font-size: 14px; line-height: 1.6; color: var(--text-muted); }


/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-split { grid-template-columns: 1fr; gap: 40px; }
  .hero-img-panel { display: none; }
  .process-flow { grid-template-columns: 1fr 1fr; gap: 28px 0; }
  .process-flow::before { display: none; }
  .svc-grid, .svc-grid.flip, .story-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .svc-grid.flip .svc-fig { order: 0; }
  .about-grid { grid-template-columns: 1fr; }
  .about-content-card { margin: 0; transform: translateY(-30px); }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-col { border-bottom: 1px solid var(--border-soft); padding: 20px 16px; }
  .stat-col:nth-child(2n) { border-right: 0; }
  .stat-col:nth-last-child(-n+2) { border-bottom: 0; }
  .val-grid { grid-template-columns: 1fr 1fr; }
  .t-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 36px; }
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .svc-features { grid-template-columns: 1fr; }
  .svc-features li:nth-child(odd) { padding-right: 0; }
  .svc-features li:nth-child(even) { padding-left: 0; border-left: 0; }
  .svc-group-head { grid-template-columns: 1fr; gap: 14px; }
  .svc-group-head .right p { text-align: left; max-width: 100%; }
  .svc-group-grid { grid-template-columns: 1fr; }
  .langs-main-grid { grid-template-columns: 1fr 1fr; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .vision-grid { grid-template-columns: 1fr; gap: 36px; }
  .exp-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  body { font-size: 15px; }
  .container { padding: 0 18px; }
  /* Topbar mobile: keep all 3 contact icons + CTA, hide text labels */
  .ct-inner { gap: 10px; }
  .ct-left { gap: 14px; }
  .ct-item span { display: none; }
  .ct-item i { font-size: 16px; padding: 4px; }
  .ct-quote-btn { font-size: 11px; padding: 7px 14px; }
  .ct-quote-btn i { font-size: 12px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 4px;
    position: fixed; top: calc(var(--topbar-h) + var(--nav-h)); left: 0; right: 0;
    background: var(--primary); padding: 18px;
    border-bottom: 1px solid rgba(79,148,212,.18);
    box-shadow: 0 12px 30px rgba(0,0,0,.4);
  }
  .nav-links.open a { padding: 12px 16px; font-size: 15px; }
  .hero-img-frame { height: 400px; }
  .process-flow { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .val-grid { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr; gap: 32px; }
  .ft-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cf-grid { grid-template-columns: 1fr; }
  .t-featured { padding: 36px 28px; }
  .about-content-card { padding: 36px 24px; }
  .langs-main-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .modal-card { padding: 28px 22px; }
  .modal-form .row-2 { grid-template-columns: 1fr; }
  .ref-card { padding: 40px 24px; }
}
