/* ══════════════════════════════════════════════
   AOA DIGITAL — GLOBAL STYLES
   Dual theme: dark (default) / light via [data-theme="light"]
   Brand: Navy #0B1E35 / Teal #2A9D8F
   Fonts: Montserrat (headings) / Open Sans (body)
══════════════════════════════════════════════ */

/* ── BRAND CONSTANTS (never change between modes) ── */
:root {
  --teal:       #2A9D8F;
  --teal-light: #38B2A3;
  --teal-pale:  #52D9CC;
  --gold:       #E9C46A;
  --red:        #E63946;

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

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --shadow-btn:  0 6px 24px rgba(42,157,143,0.4);
  --transition: 250ms ease;
}

/* ══════════════════════════════════
   DARK MODE (default)
══════════════════════════════════ */
:root,
[data-theme="dark"] {
  --bg-base:      #0B1E35;
  --bg-alt:       #071828;
  --bg-section:   #0B1E35;
  --bg-card:      rgba(255,255,255,0.04);
  --bg-card-hover:rgba(42,157,143,0.07);
  --bg-input:     rgba(255,255,255,0.05);
  --bg-nav:       rgba(11,30,53,0.85);
  --bg-nav-scroll:rgba(11,30,53,0.97);

  --text-primary:  #FFFFFF;
  --text-secondary:rgba(255,255,255,0.72);
  --text-muted:    #8BAACB;

  --border-color:  rgba(42,157,143,0.18);
  --border-input:  rgba(255,255,255,0.10);
  --border-hover:  rgba(42,157,143,0.45);

  --shadow-card:   0 8px 40px rgba(0,0,0,0.35);

  --glow-1: rgba(42,157,143,0.15);
  --glow-2: rgba(26,63,111,0.4);

  --stat-bar-bg:   rgba(26,63,111,0.3);
  --hero-grid-clr: rgba(42,157,143,0.04);

  --logo-filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(42,157,143,0.5));
  --logo-filter-hover: brightness(0) invert(1) drop-shadow(0 0 18px rgba(42,157,143,0.75));
}

/* ══════════════════════════════════
   LIGHT MODE
══════════════════════════════════ */
[data-theme="light"] {
  --bg-base:      #F4F8FB;
  --bg-alt:       #FFFFFF;
  --bg-section:   #F4F8FB;
  --bg-card:      #FFFFFF;
  --bg-card-hover:rgba(42,157,143,0.05);
  --bg-input:     #FFFFFF;
  --bg-nav:       rgba(255,255,255,0.88);
  --bg-nav-scroll:rgba(255,255,255,0.98);

  --text-primary:  #0B1E35;
  --text-secondary:#2C4A6E;
  --text-muted:    #5C7A9A;

  --border-color:  rgba(42,157,143,0.2);
  --border-input:  #D1E0EE;
  --border-hover:  rgba(42,157,143,0.5);

  --shadow-card:   0 4px 24px rgba(11,30,53,0.10);

  --glow-1: rgba(42,157,143,0.10);
  --glow-2: rgba(42,157,143,0.06);

  --stat-bar-bg:   rgba(42,157,143,0.07);
  --hero-grid-clr: rgba(42,157,143,0.06);

  --logo-filter: drop-shadow(0 0 6px rgba(42,157,143,0.3));
  --logo-filter-hover: drop-shadow(0 0 14px rgba(42,157,143,0.55));
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.4s ease;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }
input, select, textarea { font: inherit; }

/* ── CONTAINER ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 12px 24px;
  border-radius: 50px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(42,157,143,0.55); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(255,255,255,0.07);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

.btn-sm  { font-size: 13px; padding: 9px 20px; }
.btn-lg  { font-size: 15px; padding: 16px 32px; }
.btn-full { width: 100%; justify-content: center; }

/* ── SECTION COMMONS ── */
.section { padding: 100px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
}
.text-gradient {
  background: linear-gradient(135deg, var(--teal), var(--teal-pale));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
══════════════════════════════════════════════ */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.revealed {
  opacity: 1 !important;
  transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-left, .reveal-right {
    opacity: 1; transform: none; transition: none;
  }
}

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 16px; left: 16px; right: 16px;
  z-index: 1000;
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  transition: background 0.4s ease, box-shadow var(--transition), border-color 0.4s ease;
}
.navbar.scrolled {
  background: var(--bg-nav-scroll);
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-icon { width: 44px; height: 36px; }

/* Real logo image — navbar */
.nav-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: var(--logo-filter);
  transition: filter var(--transition), transform var(--transition);
}
.nav-logo:hover .nav-logo-img {
  filter: var(--logo-filter-hover);
  transform: scale(1.04);
}

.nav-logo-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  color: var(--white);
  letter-spacing: 1px;
}
.nav-logo-name span { color: var(--teal-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 7px 14px;
  border-radius: 40px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--text-primary); background: rgba(42,157,143,0.08); }
.nav-link.active { color: var(--teal-light); }

.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* ── THEME TOGGLE ── */
.theme-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.theme-toggle:hover {
  border-color: var(--teal);
  background: rgba(42,157,143,0.12);
  transform: rotate(20deg);
}
.theme-toggle svg {
  width: 17px; height: 17px;
  stroke: var(--text-primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 0.2s ease, stroke var(--transition);
}

/* Dark mode: show moon, hide sun */
[data-theme="dark"] .icon-sun  { display: none; }
[data-theme="dark"] .icon-moon { display: block; }
/* Light mode: show sun, hide moon */
[data-theme="light"] .icon-moon { display: none; }
[data-theme="light"] .icon-sun  { display: block; }
/* Default (dark) fallback */
:root:not([data-theme="light"]) .icon-sun  { display: none; }
:root:not([data-theme="light"]) .icon-moon { display: block; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  border-top: 0px solid var(--border-color);
}
.mobile-menu.open {
  max-height: 500px;
  border-top-width: 1px;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 20px;
}
.mobile-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  transition: color var(--transition);
}
.mobile-link:hover { color: var(--text-primary); }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 140px 28px 80px;
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
}
.hero-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  top: -150px; left: -100px;
  background: radial-gradient(circle, var(--glow-1) 0%, transparent 65%);
}
.hero-glow-2 {
  width: 500px; height: 500px;
  bottom: -100px; right: -100px;
  background: radial-gradient(circle, var(--glow-2) 0%, rgba(42,157,143,0.06) 60%, transparent 75%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--hero-grid-clr) 1px, transparent 1px),
    linear-gradient(90deg, var(--hero-grid-clr) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-content { display: flex; flex-direction: column; align-items: flex-start; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(42,157,143,0.12);
  border: 1px solid rgba(42,157,143,0.3);
  border-radius: 40px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-light);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-headline {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(40px, 5.5vw, 66px);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13.5px;
  color: var(--text-muted);
}
.hero-trust strong { color: var(--text-primary); }
.trust-avatars { display: flex; }
.ta {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-left: -8px;
  color: var(--white);
}
.ta:first-child { margin-left: 0; }
.ta1 { background: linear-gradient(135deg,#2A9D8F,#38B2A3); }
.ta2 { background: linear-gradient(135deg,#1A3F6F,#2A9D8F); }
.ta3 { background: linear-gradient(135deg,#7c3aed,#a855f7); }
.ta4 { background: linear-gradient(135deg,#e63946,#f97316); }

/* ── Browser Mock ── */
.hero-visual { position: relative; display: flex; justify-content: center; }

.browser-mock {
  width: 100%;
  max-width: 500px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(42,157,143,0.1);
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

.browser-bar {
  background: #0B1E35;   /* always dark — matches the mock UI chrome */
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(42,157,143,0.12);
}
.b-dot { width: 10px; height: 10px; border-radius: 50%; }
.b-dot.r { background: #E63946; }
.b-dot.y { background: #E9C46A; }
.b-dot.g { background: #2A9D8F; }
.b-url {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11px;
  color: var(--text-muted);
  margin-left: 8px;
}
.browser-body { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.bm-nav { height: 28px; background: rgba(42,157,143,0.25); border-radius: 6px; }
.bm-hero { height: 100px; background: linear-gradient(135deg,rgba(42,157,143,0.25),rgba(26,63,111,0.35)); border-radius: 10px; }
.bm-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.bm-card { height: 64px; border-radius: 8px; border: 1px solid var(--border-color); }
.bm-text-lines { display: flex; flex-direction: column; gap: 6px; padding: 4px 0; }
.bm-line { height: 8px; border-radius: 4px; }

/* Dark mode: mock internals */
[data-theme="dark"] .bm-card { background: rgba(255,255,255,0.07); }
[data-theme="dark"] .bm-line { background: rgba(255,255,255,0.1); }
[data-theme="dark"] .b-url  { background: rgba(255,255,255,0.06); }

/* Light mode: mock internals — dark tones for visibility */
[data-theme="light"] .bm-card { background: rgba(11,30,53,0.07); }
[data-theme="light"] .bm-line { background: rgba(11,30,53,0.12); }
[data-theme="light"] .b-url  { background: rgba(11,30,53,0.06); }
.w80 { width: 80%; }
.w60 { width: 60%; }
.w90 { width: 90%; }

/* ── Floating badges — always dark bg so text stays white in both modes ── */
.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(11,30,53,0.96);
  border: 1px solid rgba(42,157,143,0.35);
  border-radius: 40px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #FFFFFF;          /* always white — badge has dark bg in both modes */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  white-space: nowrap;
}
.float-badge svg { width: 14px; height: 14px; stroke: var(--teal-light); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.fb1 { top: 20px; left: -30px; animation: float 3.5s 0.5s ease-in-out infinite; }
.fb2 { bottom: 80px; left: -40px; animation: float 4.5s 1s ease-in-out infinite; }
.fb3 { bottom: 20px; right: -20px; animation: float 3s 0.2s ease-in-out infinite; }

/* ══════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════ */
.stats-bar {
  background: var(--stat-bar-bg);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 48px 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 52px;
  line-height: 1;
  background: linear-gradient(135deg, var(--teal), var(--teal-pale));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-suffix {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 32px;
  background: linear-gradient(135deg, var(--teal), var(--teal-pale));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: 2px;
}
.stat-num + .stat-suffix { display: inline; }
.stat-item { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 0; }
.stat-item { flex-direction: column; }
.stat-item .stat-row { display: flex; align-items: flex-end; }
.stat-label {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.5px;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 56px;
  background: rgba(42,157,143,0.2);
  flex-shrink: 0;
}

/* Override for inline num+suffix */
.stat-item {
  position: relative;
  padding: 0 56px;
}
.stat-item > span:first-child,
.stat-item > span:nth-child(2) {
  display: inline;
}
.stat-num { display: inline; }
.stat-suffix { display: inline; }
.stat-label { display: block; }

/* ══════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════ */
.services { background: var(--bg-section); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.service-card:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.service-card--featured {
  border-color: rgba(42,157,143,0.4);
  background: var(--bg-card-hover);
}
.sc-badge {
  position: absolute;
  top: -10px; left: 28px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.sc-icon-wrap {
  width: 48px; height: 48px;
  background: rgba(42,157,143,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.sc-icon-wrap svg {
  width: 22px; height: 22px;
  stroke: var(--teal-light);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sc-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.sc-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
}
.sc-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}
.sc-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}
.sc-features li::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--teal-light);
  transition: gap var(--transition), color var(--transition);
  margin-top: auto;
}
.sc-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.sc-link:hover { gap: 10px; color: var(--teal-pale); }

/* ══════════════════════════════════════════════
   WORK / PORTFOLIO
══════════════════════════════════════════════ */
.work {
  background: linear-gradient(180deg, var(--navy) 0%, rgba(26,63,111,0.15) 100%);
}
.work-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.wf-btn {
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 40px;
  cursor: pointer;
  transition: all var(--transition);
}
.wf-btn:hover { color: var(--white); border-color: rgba(42,157,143,0.4); }
.wf-btn.active {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-btn);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.work-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.work-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--border-hover);
}
.work-card:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }
.work-card.hidden { display: none; }

.wc-img {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wc-mock {
  width: 85%; height: 80%;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
}
.wcm-bar { height: 12px; background: rgba(255,255,255,0.1); border-radius: 3px; }
.wcm-hero { height: 50px; border-radius: 5px; }
.wcm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; flex: 1; }
.wcm-tile { border-radius: 4px; }

.wc-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,30,53,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.work-card:hover .wc-overlay { opacity: 1; }

.wc-info { padding: 20px 22px 24px; }
.wc-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal-light);
  background: rgba(42,157,143,0.12);
  border-radius: 20px;
  padding: 3px 10px;
  margin-bottom: 10px;
}
.wc-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.wc-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════ */
.about { background: var(--bg-section); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  padding-bottom: 32px;
}
.about-img-main {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.aimg-content {
  text-align: center;
  color: var(--text-muted);
}
.aimg-icon {
  width: 64px; height: 64px;
  background: rgba(42,157,143,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.aimg-icon svg {
  width: 28px; height: 28px;
  stroke: var(--teal-light);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.aimg-content p { font-size: 15px; line-height: 1.7; max-width: 260px; }

.about-img-accent {
  position: absolute;
  bottom: 0; right: -16px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(42,157,143,0.4);
}
.aa-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 36px;
  color: var(--white);
  line-height: 1;
}
.aa-label {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
  line-height: 1.4;
}

.about-tech-stack {
  position: absolute;
  bottom: 0; left: 0;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.about-tech-stack span {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--teal-light);
  letter-spacing: 0.5px;
}

.about-para {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0 36px;
}
.av-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.av-icon {
  width: 40px; height: 40px;
  background: rgba(42,157,143,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.av-icon svg {
  width: 18px; height: 18px;
  stroke: var(--teal-light);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.av-item strong { display: block; color: var(--text-primary); font-size: 15px; margin-bottom: 3px; }
.av-item p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

/* ══════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════ */
.process {
  background: linear-gradient(180deg, rgba(26,63,111,0.12) 0%, var(--navy) 100%);
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  padding-top: 24px;
}
.process-line {
  position: absolute;
  top: 52px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--teal), transparent);
  opacity: 0.3;
  pointer-events: none;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  position: relative;
}
.ps-num {
  position: absolute;
  top: -24px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 11px;
  color: var(--teal);
  letter-spacing: 2px;
}
.ps-icon {
  width: 64px; height: 64px;
  background: rgba(42,157,143,0.12);
  border: 1px solid rgba(42,157,143,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: background var(--transition), border-color var(--transition);
}
.process-step:hover .ps-icon {
  background: rgba(42,157,143,0.2);
  border-color: rgba(42,157,143,0.6);
}
.ps-icon svg {
  width: 22px; height: 22px;
  stroke: var(--teal-light);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ps-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary);
}
.ps-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.testimonials { background: var(--bg-section); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tcard {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.tcard:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.tcard--featured {
  background: var(--bg-card-hover);
  border-color: rgba(42,157,143,0.35);
}

.tcard-stars { display: flex; gap: 3px; }
.tcard-stars svg {
  width: 16px; height: 16px;
  fill: var(--gold);
  stroke: var(--gold);
  stroke-width: 0;
}
.tcard-quote {
  font-style: italic;
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.8;
  flex: 1;
}
.tcard-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 18px;
}
.ta-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.tcard-author strong { display: block; font-size: 14px; color: var(--text-primary); }
.tcard-author span { font-size: 12px; color: var(--text-muted); }

/* ══════════════════════════════════════════════
   OFFER SECTION
══════════════════════════════════════════════ */
.offer {
  position: relative;
  background: linear-gradient(135deg, #071828 0%, #0a2035 50%, #071828 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.offer-bg { position: absolute; inset: 0; pointer-events: none; }
.offer-glow-1 {
  position: absolute;
  width: 600px; height: 600px;
  top: -200px; left: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,157,143,0.15) 0%, transparent 65%);
}
.offer-glow-2 {
  position: absolute;
  width: 500px; height: 500px;
  bottom: -150px; right: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,157,143,0.1) 0%, transparent 65%);
}

.offer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230,57,70,0.12);
  border: 1px solid rgba(230,57,70,0.3);
  border-radius: 40px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ff6b6b;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.offer-badge-dot {
  width: 7px; height: 7px;
  background: #E63946;
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

.offer-headline {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 18px;
}
.offer-headline span {
  background: linear-gradient(135deg, var(--teal), var(--teal-pale));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.offer-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.offer-exclusion {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gold);
  opacity: 0.85;
  padding: 10px 14px;
  background: rgba(233,196,106,0.07);
  border: 1px solid rgba(233,196,106,0.2);
  border-radius: var(--radius-sm);
  margin-bottom: 28px;
}
.offer-exclusion svg {
  width: 15px; height: 15px;
  stroke: var(--gold); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

.offer-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.oc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.8);
}
.oc-item svg {
  width: 18px; height: 18px;
  stroke: var(--teal); fill: none;
  stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

/* Offer card */
.offer-card {
  background: var(--bg-card);
  border: 1px solid rgba(42,157,143,0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.offer-card-top {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  padding: 40px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.offer-card-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
}
.oc-label {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
  position: relative;
}
.oc-big {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 80px;
  line-height: 1;
  color: var(--white);
  position: relative;
}
.oc-off {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
}

.offer-card-mid {
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-bottom: 1px solid rgba(42,157,143,0.15);
}
.oc-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}
.oc-row:last-child { border-bottom: none; padding-bottom: 0; }
.oc-row svg {
  width: 16px; height: 16px;
  stroke: var(--teal); fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

.offer-card-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  font-size: 13px;
  color: var(--teal-light);
  font-weight: 600;
}
.offer-card-bottom svg {
  width: 14px; height: 14px;
  stroke: var(--teal-light); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* ══════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════ */
.faq { background: var(--bg-section); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:has(.faq-q[aria-expanded="true"]) { border-color: rgba(42,157,143,0.4); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--teal-light); }
.faq-q svg {
  width: 18px; height: 18px;
  stroke: var(--muted); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform 0.35s ease, stroke var(--transition);
}
.faq-q[aria-expanded="true"] svg {
  transform: rotate(180deg);
  stroke: var(--teal-light);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-a.open { max-height: 300px; }
.faq-a p {
  padding: 0 24px 22px;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
.contact {
  background: linear-gradient(180deg, rgba(26,63,111,0.12) 0%, var(--navy) 100%);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.contact-intro {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 16px 0 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 16px; }

.cd-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), background var(--transition);
  text-decoration: none;
}
a.cd-item:hover { border-color: rgba(42,157,143,0.4); background: rgba(42,157,143,0.05); }
.cd-icon {
  width: 40px; height: 40px;
  background: rgba(42,157,143,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cd-icon svg {
  width: 17px; height: 17px;
  stroke: var(--teal-light); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.cd-label { display: block; font-size: 11px; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2px; }
.cd-value { font-size: 15px; color: var(--text-primary); font-weight: 600; }

/* Contact Form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 0; }
.form-group--full { margin-bottom: 16px; }

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
}
.form-group label span { color: var(--teal); }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-input);
  border: 1px solid var(--border-input);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-size: 14px;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-base); color: var(--text-primary); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: rgba(42,157,143,0.06);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); opacity: 0.55; }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-offer-check {
  margin-bottom: 20px;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
}
.checkbox-label input { display: none; }
.checkbox-custom {
  width: 18px; height: 18px;
  border: 2px solid var(--border-input);
  border-radius: 4px;
  flex-shrink: 0;
  position: relative;
  transition: border-color var(--transition), background var(--transition);
}
.checkbox-label input:checked + .checkbox-custom {
  background: var(--teal);
  border-color: var(--teal);
}
.checkbox-label input:checked + .checkbox-custom::after {
  content: '';
  position: absolute;
  top: 1px; left: 4px;
  width: 6px; height: 10px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.checkbox-label strong { color: var(--teal-light); }

.form-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* Loading state */
#submitBtn.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer { background: var(--bg-alt); border-top: 1px solid var(--border-color); }
.footer-top { padding: 72px 0 48px; border-bottom: 1px solid var(--border-color); }
.footer-top-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

/* Real logo image — footer */
.footer-logo-link { display: inline-block; }
.footer-logo-img {
  height: 68px;
  width: auto;
  object-fit: contain;
  filter: var(--logo-filter);
  transition: filter var(--transition);
  margin-bottom: 4px;
}
.footer-logo-link:hover .footer-logo-img {
  filter: var(--logo-filter-hover);
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 16px 0 24px;
}

.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}
.social-btn:hover { background: rgba(42,157,143,0.15); border-color: rgba(42,157,143,0.4); }
.social-btn svg {
  width: 15px; height: 15px;
  stroke: var(--text-muted); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  transition: stroke var(--transition);
}
.social-btn:hover svg { stroke: var(--teal-light); }

.footer-links-group h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.footer-links-group ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-group a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links-group a:hover { color: var(--text-primary); }

.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}
.footer-contact-list svg {
  width: 14px; height: 14px;
  stroke: var(--teal-light); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-list a { color: var(--text-muted); transition: color var(--transition); }
.footer-contact-list a:hover { color: var(--text-primary); }

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); opacity: 0.6; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: var(--text-muted); opacity: 0.6; transition: color var(--transition), opacity var(--transition); }
.footer-bottom-links a:hover { color: var(--text-primary); opacity: 1; }

/* ── Scroll to top ── */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(42,157,143,0.5);
  z-index: 900;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { box-shadow: 0 8px 24px rgba(42,157,143,0.7); }
.scroll-top svg {
  width: 18px; height: 18px;
  stroke: white; fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 120px; }
  .hero-content { align-items: center; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { display: none; }
  .offer-inner { grid-template-columns: 1fr; gap: 48px; }
  .offer-right { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-track { grid-template-columns: repeat(2, 1fr); }
  .process-line { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .nav-actions .btn-primary { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr; gap: 24px; }
  .stats-inner { gap: 0; flex-direction: column; }
  .stat-divider { width: 100px; height: 1px; margin: 8px 0; }
  .stat-item { padding: 12px 0; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
  .footer-top-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; flex-wrap: wrap; }
  .offer-headline { font-size: 36px; }
}

@media (max-width: 480px) {
  .navbar { top: 8px; left: 8px; right: 8px; border-radius: 16px; }
  .hero { padding-top: 100px; }
  .hero-headline { font-size: 36px; }
  .section-title { font-size: 28px; }
  .scroll-top { bottom: 16px; right: 16px; }
}
