/* ================================================
   CUSTOM PROPERTIES
   ================================================ */
:root {
  --bg:        #FAF8F3;
  --bg2:       #F2EDE3;
  --bg3:       #EAE3D6;
  --surface:   #FDFBF7;
  --navy:      #1B2C6E;
  --amber:     #E8941A;
  --amber-h:   #CF810F;
  --text:      #1C1C2E;
  --text2:     #6A6A7A;
  --muted:     #9D9A94;
  --border:    #DDD8CE;
  --nav-bg:    rgba(250,248,243,0.88);
  --sh-sm:     0 1px 6px rgba(28,28,46,.06);
  --sh-md:     0 6px 28px rgba(28,28,46,.11);
  --sh-lg:     0 14px 52px rgba(28,28,46,.15);
  --ease:      cubic-bezier(.4,0,.2,1);
  --t:         .3s;
}

[data-theme="dark"] {
  --bg:        #0E1628;
  --bg2:       #172040;
  --bg3:       #1D2848;
  --surface:   #172040;
  --amber:     #F0A030;
  --amber-h:   #D88E20;
  --text:      #F2EDE3;
  --text2:     #9AA0B8;
  --muted:     #6A7A9A;
  --border:    #2D3F6B;
  --nav-bg:    rgba(14,22,40,.92);
  --sh-sm:     0 1px 6px rgba(0,0,0,.3);
  --sh-md:     0 6px 28px rgba(0,0,0,.4);
  --sh-lg:     0 14px 52px rgba(0,0,0,.5);
}

/* ================================================
   RESET & BASE
   ================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background var(--t) var(--ease), color var(--t) var(--ease);
}

img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }
h1,h2,h3,h4 { line-height: 1.12; letter-spacing: -.022em; }

/* ================================================
   LAYOUT
   ================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px)  { .container { padding: 0 40px; } }
@media (min-width: 1200px) { .container { padding: 0 64px; } }

/* ================================================
   EYEBROW & SECTION HEADER
   ================================================ */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}
.eyebrow-light {
  color: rgba(255,255,255,.45);
  justify-content: center;
}
.section-header {
  margin-bottom: 64px;
  max-width: 680px;
}
.section-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(34px, 4.5vw, 52px);
  color: var(--text);
  margin-top: 8px;
}
.section-sub {
  font-size: 18px;
  color: var(--text2);
  margin-top: 18px;
  line-height: 1.7;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 11px 22px;
  border-radius: 6px;
  border: 1.5px solid transparent;
  transition: background var(--t) var(--ease),
              border-color var(--t) var(--ease),
              box-shadow var(--t) var(--ease),
              transform var(--t) var(--ease);
  white-space: nowrap;
}
.btn-sm  { font-size: 13px; padding: 8px 18px; }
.btn-lg  { font-size: 15px; padding: 14px 28px; }
.btn-arrow { display: inline-block; transition: transform var(--t) var(--ease); }

.btn-primary { background: var(--amber); color: #fff; }
.btn-primary:hover {
  background: var(--amber-h);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(232,148,26,.36);
}
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover {
  border-color: var(--text2);
  background: var(--bg2);
  transform: translateY(-1px);
}

.btn-light { background: #fff; color: var(--navy); font-weight: 600; }
.btn-light:hover {
  background: #F5F5F5;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(255,255,255,.18);
}
.btn-light:hover .btn-arrow { transform: translateX(4px); }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.btn-outline-light:hover {
  border-color: #fff;
  background: rgba(255,255,255,.1);
  transform: translateY(-1px);
}

/* ================================================
   NAVIGATION
   ================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background var(--t) var(--ease),
              border-color var(--t) var(--ease),
              box-shadow var(--t) var(--ease);
}
.nav.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--border);
  box-shadow: var(--sh-sm);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.nav-logo img {
  height: 54px;
  width: auto;
  mix-blend-mode: multiply;
  transition: opacity var(--t) var(--ease);
}
[data-theme="dark"] .nav-logo img { mix-blend-mode: screen; }
.nav-logo:hover img { opacity: .82; }

/* Desktop links */
.nav-links {
  display: none;
  align-items: center;
  gap: 36px;
}
@media (min-width: 900px) { .nav-links { display: flex; } }

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  position: relative;
  transition: color var(--t) var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--amber);
  border-radius: 2px;
  transition: width var(--t) var(--ease);
}
.nav-link:hover,
.nav-link.active { color: var(--text); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Theme toggle */
.theme-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 8px;
  color: var(--text2);
  border: 1.5px solid transparent;
  transition: all var(--t) var(--ease);
}
.theme-toggle:hover {
  color: var(--text);
  border-color: var(--border);
  background: var(--bg2);
}
.icon-sun { display: none; }
.icon-moon { display: block; }
[data-theme="dark"] .icon-sun  { display: block; }
[data-theme="dark"] .icon-moon { display: none; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  padding: 9px;
  border-radius: 8px;
  transition: background var(--t) var(--ease);
}
.hamburger:hover { background: var(--bg2); }
@media (min-width: 900px) { .hamburger { display: none; } }

.hamburger span {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--t) var(--ease), opacity var(--t) var(--ease);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 8px 24px 28px;
  box-shadow: var(--sh-md);
}
.mobile-menu.open { display: flex; }
@media (min-width: 900px) { .mobile-menu { display: none !important; } }

.mobile-link {
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--t) var(--ease);
}
.mobile-link:hover { color: var(--amber); }
.mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.mobile-ctas .btn { justify-content: center; }

/* ================================================
   HERO
   ================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 136px 0 96px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -180px; right: -280px;
  width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(232,148,26,.07) 0%, transparent 68%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -180px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(27,44,110,.055) 0%, transparent 68%);
  pointer-events: none;
}

/* Hero grid layout */
.hero-grid {
  display: grid;
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 360px;
    column-gap: 64px;
    align-items: center;
  }
}

.hero-content { min-width: 0; }

/* Logo panel — hidden on mobile, shown from tablet up */
.hero-logo-wrap {
  display: none;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .hero-logo-wrap { display: flex; }
}

.hero-logo-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 24px 48px rgba(27,44,110,.10));
}
[data-theme="dark"] .hero-logo-img {
  mix-blend-mode: screen;
  filter: drop-shadow(0 24px 48px rgba(232,148,26,.12));
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow-dash {
  display: block;
  width: 30px; height: 1.5px;
  background: var(--amber);
  border-radius: 2px;
  flex-shrink: 0;
}

.hero-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4.8vw, 58px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 32px;
}
.hero-heading em {
  font-style: italic;
  color: var(--navy);
}
[data-theme="dark"] .hero-heading em { color: var(--amber); }
.hero-amber { color: var(--amber); }

.hero-body {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text2);
  max-width: 560px;
  line-height: 1.72;
  margin-bottom: 48px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 60px;
}
.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--muted);
}
.tdot { color: var(--amber); font-weight: 700; }

/* ================================================
   ABOUT
   ================================================ */
.about {
  padding: 120px 0;
  background: var(--bg2);
}
.about-grid {
  display: grid;
  gap: 56px;
}
@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 320px 1fr;
    gap: 80px;
    align-items: start;
  }
  .about-left { position: sticky; top: 100px; }
}
.about-statement {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 700;
  line-height: 1.22;
  color: var(--text);
  margin-top: 12px;
}
.about-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.about-right p {
  font-size: 16.5px;
  line-height: 1.78;
  color: var(--text2);
}

/* ================================================
   SERVICES
   ================================================ */
.services {
  padding: 120px 0;
  background: var(--bg);
}
.services-grid {
  display: grid;
  gap: 2px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1000px) { .services-grid { grid-template-columns: repeat(3,1fr); } }

/* Center 7th card on 3-col desktop */
@media (min-width: 1000px) {
  .scard-last { grid-column: 2; }
}
/* On 2-col, let it span full */
@media (min-width: 640px) and (max-width: 999px) {
  .scard-last { grid-column: 1 / -1; }
}

.scard {
  padding: 38px 34px;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--t) var(--ease);
}
.scard::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.scard:hover::after { transform: scaleX(1); }
.scard:hover { box-shadow: var(--sh-md); z-index: 2; }

.scard-icon {
  color: var(--amber);
  margin-bottom: 22px;
}
.scard h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.scard p {
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--text2);
}

/* ================================================
   WHY CHOOSE US
   ================================================ */
.why {
  padding: 120px 0;
  background: var(--bg3);
}
.why-grid {
  display: grid;
  gap: 2px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .why-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1000px) { .why-grid { grid-template-columns: repeat(4,1fr); } }

.wcard {
  padding: 44px 34px;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: box-shadow var(--t) var(--ease);
}
.wcard:hover { box-shadow: var(--sh-md); }

.wcard-icon {
  color: var(--navy);
  margin-bottom: 26px;
}
[data-theme="dark"] .wcard-icon { color: var(--amber); }

.wcard h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.wcard p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text2);
}

/* ================================================
   WORK
   ================================================ */
.work {
  padding: 120px 0;
  background: var(--bg);
}
.proofs {
  display: grid;
  gap: 2px;
  margin-bottom: 72px;
}
@media (min-width: 768px) { .proofs { grid-template-columns: repeat(3,1fr); } }

.proof {
  padding: 44px 38px;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--t) var(--ease);
}
.proof::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--amber);
}
.proof:hover { box-shadow: var(--sh-md); }

.proof-cat {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}
.proof h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.2;
}
.proof p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text2);
}

/* Marquee */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  overflow: hidden;
}
.marquee { overflow: hidden; white-space: nowrap; }
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.mdot { color: var(--amber) !important; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================
   CONTACT CTA
   ================================================ */
.cta-section {
  padding: 140px 0;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -220px; left: 50%;
  transform: translateX(-50%);
  width: 820px; height: 820px;
  background: radial-gradient(circle, rgba(232,148,26,.13) 0%, transparent 62%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }

.cta-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(40px, 6vw, 74px);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 22px;
  margin-top: 16px;
}
.cta-sub {
  font-size: 18px;
  color: rgba(255,255,255,.6);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: #090F1E;
  padding: 80px 0 0;
}
[data-theme="dark"] .footer { background: #060B16; }

.footer-grid {
  display: grid;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; }
}

.footer-logo {
  height: 48px; width: auto;
  margin-bottom: 14px;
  mix-blend-mode: screen;
}
.footer-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 16px;
}
.footer-addr {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.42);
}
.footer-heading {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin-bottom: 18px;
}
.footer-col nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-link {
  font-size: 14px;
  color: rgba(255,255,255,.48);
  transition: color var(--t) var(--ease);
}
.footer-link:hover { color: #fff; }

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.48);
  transition: color var(--t) var(--ease);
}
.social-link:hover { color: var(--amber); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 22px 0;
}
.footer-bottom > p {
  font-size: 12.5px;
  color: rgba(255,255,255,.25);
}
.footer-legal {
  display: flex;
  gap: 22px;
}
.footer-legal .footer-link { font-size: 12.5px; }

/* ================================================
   REVEAL ANIMATIONS
   ================================================ */
.reveal-fade {
  opacity: 0;
  transition: opacity .75s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal-fade.visible,
.reveal-up.visible {
  opacity: 1;
  transform: none;
}

.reveal-card {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s var(--ease),
              transform .6s var(--ease),
              box-shadow var(--t) var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal-card.visible { opacity: 1; transform: none; }
.reveal-card.visible:hover { transform: translateY(-4px); }

/* Specific override: scard hover also shows bottom bar */
.scard.reveal-card.visible:hover { transform: translateY(-4px); }

/* ================================================
   SCROLL PROGRESS BAR
   ================================================ */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--amber) 0%, #F5B048 100%);
  z-index: 9999;
  border-radius: 0 2px 2px 0;
  pointer-events: none;
  transition: width 80ms linear;
}

/* ================================================
   STATS STRIP
   ================================================ */
.stats-strip {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.stat-divider { display: none; }
@media (min-width: 640px) {
  .stats-grid { grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; }
  .stat-divider {
    display: block;
    width: 1px;
    height: 52px;
    background: var(--border);
    align-self: center;
    justify-self: center;
  }
}
.stat-item {
  padding: 48px 24px;
  text-align: center;
}
@media (max-width: 639px) {
  .stats-grid .stat-item:nth-child(1),
  .stats-grid .stat-item:nth-child(5) { border-right: 1px solid var(--border); }
  .stats-grid .stat-item:nth-child(1),
  .stats-grid .stat-item:nth-child(3) { border-bottom: 1px solid var(--border); }
}
.stat-num {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(38px, 5.5vw, 62px);
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text2);
}

/* ================================================
   HERO DOT GRID
   ================================================ */
.hero-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--border) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
[data-theme="dark"] .hero-dot-grid { opacity: 0.18; }

/* ================================================
   HERO LOGO FLOAT ANIMATION
   ================================================ */
@keyframes logo-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}
.hero-logo-wrap.visible .hero-logo-img {
  animation: logo-float 6s ease-in-out infinite;
}
.hero-logo-wrap:hover .hero-logo-img {
  animation-play-state: paused;
}

/* ================================================
   DIAGONAL SECTION CUTS (768px +)
   ================================================ */
@media (min-width: 768px) {
  .hero {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 72px), 0 100%);
    padding-bottom: calc(96px + 72px);
    z-index: 2;
  }
  .stats-strip {
    margin-top: -72px;
    border-bottom: none;
  }
  .stats-strip .stats-grid {
    padding-top: 72px;
  }
  .work { position: relative; z-index: 1; }
  .cta-section {
    clip-path: polygon(0 72px, 100% 0, 100% 100%, 0 100%);
    margin-top: -72px;
    padding-top: calc(140px + 72px);
    z-index: 2;
  }
}

/* ================================================
   CTA SECTION UPGRADE
   ================================================ */
.cta-section {
  background: linear-gradient(135deg, #0D1B3E 0%, #1B2C6E 40%, #0E1628 100%);
}
.cta-deco {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -58%);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(260px, 36vw, 500px);
  line-height: 0.75;
  color: rgba(255, 255, 255, 0.028);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -.04em;
}

/* ================================================
   SERVICE CARD ICON HOVER ANIMATION
   ================================================ */
.scard-icon svg {
  transition: transform 0.35s cubic-bezier(.34, 1.56, .64, 1),
              filter 0.35s ease;
}
.scard:hover .scard-icon svg {
  transform: scale(1.18) rotate(8deg);
  filter: drop-shadow(0 0 10px rgba(232, 148, 26, 0.5));
}

/* ================================================
   MOBILE FLOATING CTA
   ================================================ */
.mobile-fab {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 800;
  background: var(--amber);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
  padding: 15px 32px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(232, 148, 26, 0.45),
              0 2px 8px rgba(0, 0, 0, .12);
  transition: transform 0.45s cubic-bezier(.34, 1.56, .64, 1),
              opacity 0.3s ease,
              box-shadow 0.3s ease;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  text-decoration: none;
}
.mobile-fab.fab-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-fab:hover {
  box-shadow: 0 12px 40px rgba(232, 148, 26, 0.55),
              0 4px 12px rgba(0, 0, 0, .15);
}
@media (min-width: 900px) {
  .mobile-fab { display: none; }
}
