/* ============================================================
   ZENTROFY MEDIA GROUP — STYLESHEET
   Palette is untouched on purpose: sand / navy / gold / white.
   Everything else — layout, motion, responsiveness, components —
   has been rebuilt for a premium, real-world agency feel.
   ============================================================ */

:root {
  /* brand colors — DO NOT CHANGE */
  --sand: #DFD5C8;
  --sand-light: #E4DCCF;
  --navy: #283D55;
  --navy-deep: #112440;
  --gold: #C5842E;
  --white: #FAF8F5;

  /* system tokens (new — structure only, no new colors) */
  --error: #B3261E;
  --maxw: 1440px;
  --content-max: 1280px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-soft: cubic-bezier(.16, .84, .44, 1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --shadow-sm: 0 6px 18px rgba(17, 36, 64, .06);
  --shadow-md: 0 14px 40px rgba(17, 36, 64, .12);
  --shadow-lg: 0 24px 60px rgba(17, 36, 64, .22);
  --nav-h: 112px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: clamp(14px, 1.25vw, 16px); }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--navy-deep);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

button { font-family: inherit; }

/* ─── ACCESSIBILITY: skip link & focus ──────────────────── */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy-deep); color: var(--sand-light);
  padding: 14px 22px; z-index: 2000; font-size: 13px;
  font-weight: 600; letter-spacing: .04em; border-radius: 0 0 4px 0;
}
.skip-link:focus { left: 0; top: 0; }

a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ─── SHARED REVEAL / MOTION UTILITIES ──────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── SCROLL PROGRESS (lives inside <nav>) ──────────────── */
.scroll-progress {
  position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
  background: rgba(197, 132, 46, .12);
}
.scroll-progress span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--navy));
  transition: width .12s linear;
}

/* ─── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center;
  padding: 14px 60px;
  background: rgba(250, 248, 245, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197, 132, 46, .15);
  transition: padding .35s var(--ease), box-shadow .35s var(--ease), height .35s var(--ease);
  height: var(--nav-h);
}
nav.scrolled {
  padding: 10px 60px;
  height: 88px;
  box-shadow: 0 8px 30px rgba(17, 36, 64, .08);
}
.nav-inner {
  width: 100%; max-width: var(--maxw); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.nav-logo span { color: var(--gold); }
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  line-height: 0; flex-shrink: 0;
  height: var(--nav-h);
  max-height: 96px;
}
.nav-logo img {
  display: block; max-height: 140px; height: 100%; width: auto;
  object-fit: contain; border-radius: 2px;
  transition: max-height .35s var(--ease), transform .35s var(--ease);
}
nav.scrolled .nav-logo { max-height: 92px; }
nav.scrolled .nav-logo img { max-height: 92px; }

.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 500; letter-spacing: .04em;
  color: var(--navy); text-decoration: none;
  position: relative; padding-bottom: 4px;
  transition: color .2s;
  white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 100%;
  height: 1px; background: var(--gold); transition: right .3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-cta {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--navy-deep); color: var(--sand-light) !important;
  height: 44px; min-width: 140px; padding: 0 18px; border-radius: 6px;
  font-size: 15px !important; font-weight: 700 !important;
  letter-spacing: .06em; text-transform: none;
  text-decoration: none; transition: background .22s, transform .22s, box-shadow .22s;
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 6px 18px rgba(17,36,64,0.06);
}
.nav-cta:hover {
  background: var(--gold) !important; color: var(--white) !important;
  transform: translateY(-2px); box-shadow: 0 12px 30px rgba(197,132,46,0.18);
}
.nav-cta::after { display: none !important; }

@media (max-width: 1100px) {
  .nav-cta { min-width: 120px; height: 40px; font-size: 14px !important; }
}

@media (max-width: 900px) {
  /* Desktop links hidden on small screens; ensure CTA not visible there */
  .nav-cta { display: none; }
}

/* Hamburger toggle (mobile) */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: none; cursor: pointer;
  z-index: 210; flex-shrink: 0; padding: 0;
}
.nav-toggle-bar {
  display: block; width: 22px; height: 2px; background: var(--navy-deep);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.nav-toggle.is-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile full-screen menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: var(--navy-deep);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity .4s var(--ease), visibility .4s, transform .4s var(--ease);
  padding: 32px;
  overflow-y: auto;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu-links { list-style: none; text-align: center; }
.mobile-menu-links li { overflow: hidden; }
.mobile-menu-links a {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 8vw, 38px); font-weight: 600; color: var(--sand-light);
  text-decoration: none; padding: 14px 0; opacity: 0; transform: translateY(24px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), color .2s;
}
.mobile-menu.is-open .mobile-menu-links a { opacity: 1; transform: translateY(0); }
.mobile-menu-links a:hover, .mobile-menu-links a:focus-visible { color: var(--gold); }
.mobile-menu-links li:nth-child(1) a { transition-delay: .08s; }
.mobile-menu-links li:nth-child(2) a { transition-delay: .14s; }
.mobile-menu-links li:nth-child(3) a { transition-delay: .2s; }
.mobile-menu-links li:nth-child(4) a { transition-delay: .26s; }
.mobile-menu-links li:nth-child(5) a { transition-delay: .32s; }
.mobile-menu-footer {
  margin-top: 48px; display: flex; gap: 28px; flex-wrap: wrap; justify-content: center;
  opacity: 0; transition: opacity .5s var(--ease) .4s;
}
.mobile-menu.is-open .mobile-menu-footer { opacity: 1; }
.mobile-menu-footer a {
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(228, 220, 207, .6); text-decoration: none; border-bottom: 1px solid rgba(197, 132, 46, .3);
  padding-bottom: 4px; transition: color .2s;
}
.mobile-menu-footer a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  min-height: 100vh; min-height: 100svh;
  background: var(--navy-deep);
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: calc(var(--nav-h) + 64px) 60px 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 55%; height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(197, 132, 46, .08) 50%, rgba(40, 61, 85, .4) 100%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0; opacity: .04;
  background-image: linear-gradient(var(--sand) 1px, transparent 1px),
                     linear-gradient(90deg, var(--sand) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 132, 46, .16), transparent 70%);
  top: var(--my, 30%); left: var(--mx, 70%);
  transform: translate(-50%, -50%);
  pointer-events: none; transition: top .6s var(--ease-soft), left .6s var(--ease-soft);
  filter: blur(10px);
}
.hero-accent {
  position: absolute; right: 60px; top: 50%;
  transform: translateY(-50%);
  width: 380px; height: 380px;
  border: 1px solid rgba(197, 132, 46, .2);
  border-radius: 50%; pointer-events: none;
}
.hero-accent::before {
  content: ''; position: absolute; inset: 40px;
  border: 1px solid rgba(197, 132, 46, .12); border-radius: 50%;
}
.hero-accent::after {
  content: ''; position: absolute; inset: 80px;
  border: 1px solid rgba(197, 132, 46, .08); border-radius: 50%;
}
.hero-inner { width: 100%; max-width: var(--content-max); margin-inline: auto; position: relative; z-index: 2; padding: 0 20px; box-sizing: border-box; }
.hero-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px; display: flex; align-items: center; gap: 12px;
  opacity: 0; animation: fadeUp .8s .2s forwards;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); flex-shrink: 0; }
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 6.5vw, 92px);
  font-weight: 600; line-height: 1.08;
  color: var(--sand-light); max-width: 700px;
  opacity: 0; animation: fadeUp .9s .35s forwards;
  word-wrap: break-word;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  margin-top: 28px; font-size: 16px; line-height: 1.7; font-weight: 300;
  color: rgba(228, 220, 207, .7); max-width: 520px;
  opacity: 0; animation: fadeUp .9s .5s forwards;
}
.hero-actions {
  margin-top: 48px; display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .9s .65s forwards;
}
.btn-primary {
  background: var(--gold); color: var(--white);
  padding: 14px 32px; border-radius: 2px;
  font-size: 13px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; text-decoration: none; border: none; cursor: pointer;
  transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 4px 20px rgba(197, 132, 46, .3);
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.btn-primary:hover { background: #b8762a; transform: translateY(-3px); box-shadow: 0 10px 30px rgba(197, 132, 46, .4); }
.btn-outline {
  border: 1px solid rgba(228, 220, 207, .3); color: var(--sand-light);
  padding: 14px 32px; border-radius: 2px;
  font-size: 13px; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; text-decoration: none;
  transition: border-color .25s, color .25s, background .25s;
  white-space: nowrap;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(197, 132, 46, .06); }

.hero-stats {
  margin-top: 64px; display: flex; gap: 60px; flex-wrap: wrap;
  border-top: 1px solid rgba(197, 132, 46, .15);
  padding-top: 40px;
  max-width: 100%;
}
.hero-stats .stat-item { min-width: 110px; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px; font-weight: 600; color: var(--sand-light); line-height: 1;
  white-space: nowrap;
}
.stat-num .stat-suffix { color: var(--gold); }
.stat-label {
  font-size: 12px; font-weight: 400; letter-spacing: .08em;
  color: rgba(228, 220, 207, .5); margin-top: 6px; text-transform: uppercase;
}

.scroll-cue {
  position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1px solid rgba(228, 220, 207, .35);
  border-radius: 14px; z-index: 2;
}
.scroll-cue span {
  position: absolute; top: 8px; left: 50%; width: 4px; height: 8px;
  border-radius: 2px; background: var(--gold); transform: translateX(-50%);
  animation: scrollCue 1.8s infinite;
}
@keyframes scrollCue {
  0% { opacity: 1; top: 8px; }
  80% { opacity: 0; top: 24px; }
  100% { opacity: 0; top: 8px; }
}

/* ─── MARQUEE ────────────────────────────────────────── */
.marquee-strip {
  background: var(--gold); padding: 14px 0; overflow: hidden; display: flex;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track {
  display: flex; gap: 0; white-space: nowrap; flex-shrink: 0;
  animation: marquee 32s linear infinite;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-size: 12px; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: var(--white); padding: 0 36px;
  display: flex; align-items: center; gap: 16px; flex-shrink: 0;
}
.marquee-item::after { content: '◆'; font-size: 8px; opacity: .6; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── SECTION BASE ───────────────────────────────────── */
section { padding: 110px 60px; overflow: hidden; }
.section-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px; display: flex; align-items: center; gap: 12px;
}
.section-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold); flex-shrink: 0; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4.5vw, 58px);
  font-weight: 600; line-height: 1.15; color: var(--navy-deep);
  word-wrap: break-word;
}

/* ─── ABOUT ──────────────────────────────────────────── */
.about { background: var(--sand-light); }
.about-inner {
  max-width: var(--maxw); margin-inline: auto;
  display: flex; flex-direction: row; gap: 80px; align-items: center;
}
.about-visual { position: relative; flex: 1 1 460px; max-width: 560px; min-width: 0; }
.about-card { background: var(--navy-deep); padding: 56px 48px; border-radius: var(--radius-md); position: relative; overflow: hidden; }
.about-card::before {
  content: ''; position: absolute; top: 0; right: 0; width: 120px; height: 120px;
  background: var(--gold); opacity: .12; border-radius: 0 0 0 120px;
  pointer-events: none;
}
.about-card-quote {
  font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 500;
  line-height: 1.4; color: var(--sand-light); font-style: italic; margin-bottom: 32px;
  position: relative; z-index: 1;
}
.about-card-list { list-style: none; display: flex; flex-direction: column; gap: 16px; position: relative; z-index: 1; }
.about-card-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(228, 220, 207, .8); font-weight: 400;
}
.about-card-list li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0;
}
.about-float {
  position: absolute; bottom: -20px; right: 24px;
  background: var(--gold); padding: 16px 22px; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  max-width: calc(100% - 48px);
}
.about-float-num { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 700; color: var(--white); line-height: 1; }
.about-float-label { font-size: 11px; font-weight: 500; color: rgba(255, 255, 255, .85); letter-spacing: .06em; max-width: 160px; margin-top: 2px; }

.about-text { flex: 1 1 480px; text-align: left; min-width: 0; }
.about-text p {
  font-size: 16px; line-height: 1.8; color: rgba(17, 36, 64, .75);
  margin-top: 24px; font-weight: 300; max-width: 540px;
}
.about-pillars { margin-top: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 540px; }
.pillar {
  border-left: 2px solid var(--gold); padding: 12px 16px; background: rgba(197, 132, 46, .05);
  transition: background .25s, transform .25s var(--ease);
  min-width: 0;
}
.pillar:hover { background: rgba(197, 132, 46, .12); transform: translateX(3px); }
.pillar-title { font-size: 13px; font-weight: 600; color: var(--navy-deep); }
.pillar-desc { font-size: 12px; color: rgba(17, 36, 64, .6); margin-top: 4px; }

/* ─── SERVICES ───────────────────────────────────────── */
.services { background: var(--white); }
.services-inner { max-width: var(--maxw); margin-inline: auto; }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 60px; flex-wrap: wrap; }
.services-header-copy { max-width: 320px; font-size: 14px; color: rgba(17, 36, 64, .6); line-height: 1.7; }

.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-card {
  background: var(--sand); padding: 48px 40px; position: relative; overflow: hidden;
  border-radius: var(--radius-md);
  transition: background .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
  cursor: default;
  min-width: 0;
}
.service-card:hover {
  background: var(--navy-deep);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.service-card:hover .service-num,
.service-card:hover .service-title,
.service-card:hover .service-desc,
.service-card:hover .service-tags span { color: rgba(228, 220, 207, .7) !important; }
.service-card:hover .service-title { color: var(--sand-light) !important; }
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }
.service-num {
  font-family: 'Cormorant Garamond', serif; font-size: 13px; font-weight: 600;
  color: var(--gold); letter-spacing: .1em; margin-bottom: 28px;
  display: block; transition: color .3s;
}

/* unified icon system — icon fills the badge edge-to-edge, like a real app icon */
.service-icon {
  width: 72px; height: 72px; border-radius: 50%; overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(197, 132, 46, .18);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px; flex-shrink: 0; padding: 8px;
  box-shadow: 0 4px 14px rgba(17, 36, 64, .08);
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
}
.service-icon img { width: 100%; height: 100%; object-fit: contain; }
.service-card:hover .service-icon { transform: scale(1.06) rotate(-3deg); border-color: rgba(197, 132, 46, .4); box-shadow: 0 6px 18px rgba(197, 132, 46, .2); }

/* layered duo-icon badge for "two platform" services */
.icon-duo { position: relative; width: 72px; height: 76px; margin-bottom: 28px; flex-shrink: 0; }
.icon-duo-item {
  position: absolute; width: 48px; height: 48px; border-radius: 50%;
  overflow: hidden; border: 3px solid var(--sand);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(17, 36, 64, .14);
  padding: 7px;
  transition: transform .4s var(--ease), border-color .4s;
}
.icon-duo-item img { width: 100%; height: 100%; object-fit: contain; }
.icon-duo-item--front { top: 0; left: 0; z-index: 2; }
.icon-duo-item--back { top: 24px; left: 24px; z-index: 1; }
.service-card:hover .icon-duo-item { border-color: var(--navy-deep); }
.service-card:hover .icon-duo-item--front { transform: translate(-4px, -4px); }
.service-card:hover .icon-duo-item--back { transform: translate(4px, 4px); }


.service-title {
  font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600;
  line-height: 1.25; color: var(--navy-deep); margin-bottom: 16px; transition: color .3s;
}
.service-desc { font-size: 14px; line-height: 1.7; color: rgba(17, 36, 64, .65); font-weight: 300; transition: color .3s; max-width: 100%; }
.service-tags { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 8px; }
.service-tags span {
  font-size: 11px; font-weight: 500; letter-spacing: .06em;
  border: 1px solid rgba(17, 36, 64, .2); padding: 4px 10px; border-radius: 20px;
  color: rgba(17, 36, 64, .6); transition: color .3s, border-color .3s;
  white-space: nowrap;
}
.service-card:hover .service-tags span { border-color: rgba(197, 132, 46, .35); }
.service-arrow {
  position: absolute; bottom: 40px; right: 40px; font-size: 22px; color: var(--gold);
  opacity: 0; transform: translateX(-8px); transition: opacity .35s, transform .35s;
}

/* ─── PROCESS ────────────────────────────────────────── */
.process { background: var(--navy-deep); }
.process-inner { max-width: var(--maxw); margin-inline: auto; }
.process .section-title { color: var(--sand-light); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px; margin-top: 64px; position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 28px; left: 10%; right: 10%;
  height: 1px; background: rgba(197, 132, 46, .25);
  pointer-events: none;
}
.process-step { padding: 0 12px; text-align: center; min-width: 0; }
.step-dot {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px; position: relative; z-index: 1;
  font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; color: var(--gold);
  transition: transform .4s var(--ease), box-shadow .4s;
}
.process-step:hover .step-dot { transform: scale(1.08); box-shadow: 0 0 0 6px rgba(197, 132, 46, .12); }
.step-title { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 600; color: var(--sand-light); margin-bottom: 12px; }
.step-desc { font-size: 13px; line-height: 1.7; color: rgba(228, 220, 207, .5); font-weight: 300; }

/* ─── WHY US ─────────────────────────────────────────── */
.why { background: var(--sand); }
.why-inner { max-width: var(--maxw); margin-inline: auto; }
.why-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; margin-top: 60px; }
.why-intro { min-width: 0; }
.why-intro p { font-size: 16px; line-height: 1.8; color: rgba(17, 36, 64, .7); font-weight: 300; margin-bottom: 32px; }
.why-features { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.why-feature {
  padding: 26px 28px; background: var(--sand-light);
  border-left: 3px solid transparent; border-radius: var(--radius-sm);
  transition: border-color .3s, background .3s, transform .3s var(--ease);
  display: flex; gap: 18px; align-items: flex-start;
  min-width: 0;
}
.why-feature:hover { border-left-color: var(--gold); background: var(--white); transform: translateX(4px); }
.why-feature-icon {
  font-size: 22px; flex-shrink: 0; margin-top: 2px;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(197, 132, 46, .12);
  display: flex; align-items: center; justify-content: center;
  transition: transform .35s var(--ease), background .35s;
}
.why-feature:hover .why-feature-icon { transform: scale(1.08); background: rgba(197, 132, 46, .22); }
.why-feature-title { font-size: 15px; font-weight: 600; color: var(--navy-deep); margin-bottom: 6px; }
.why-feature-desc { font-size: 13px; line-height: 1.6; color: rgba(17, 36, 64, .6); }

/* ─── CONTACT ────────────────────────────────────────── */
.contact { background: var(--white); display: grid; grid-template-columns: 1fr 1fr; gap: 0; overflow: hidden; }
.contact-left { background: var(--navy-deep); padding: 110px 60px; position: relative; overflow: hidden; display: flex; align-items: center; min-width: 0; }
.contact-left::before {
  content: ''; position: absolute; bottom: 0; right: 0; width: 200px; height: 200px;
  background: var(--gold); opacity: .08; border-radius: 50% 0 0 0;
  pointer-events: none;
}
.contact-left-inner { max-width: 460px; margin-inline: auto; width: 100%; position: relative; z-index: 1; }
.contact-left .section-title { color: var(--sand-light); }
.contact-left p { font-size: 15px; line-height: 1.8; color: rgba(228, 220, 207, .6); font-weight: 300; margin-top: 20px; margin-bottom: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; min-width: 0; }
.contact-info-icon {
  width: 44px; height: 44px; border: 1px solid rgba(197, 132, 46, .3);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: 18px; flex-shrink: 0; color: var(--gold); overflow: hidden;
  line-height: 1; box-shadow: 0 4px 12px rgba(0, 0, 0, .18);
}
.contact-info-icon img { width: 22px; height: 22px; object-fit: contain; }
.contact-info-label { font-size: 10px; text-transform: uppercase; letter-spacing: .12em; color: rgba(228, 220, 207, .4); margin-bottom: 4px; }
.contact-info-value { font-size: 14px; color: var(--sand-light); font-weight: 400; word-break: break-word; }

.contact-right { padding: 110px 60px; background: var(--sand-light); display: flex; align-items: center; min-width: 0; }
.contact-right-inner { max-width: 540px; margin-inline: auto; width: 100%; }
.contact-right .section-eyebrow { color: var(--gold); }
.contact-right h3 { font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 600; color: var(--navy-deep); margin-bottom: 12px; }
.contact-right > .contact-right-inner > p { font-size: 14px; color: rgba(17, 36, 64, .6); margin-bottom: 40px; line-height: 1.6; }

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(17, 36, 64, .5); margin-bottom: 8px; transition: color .2s; }
.form-group:focus-within label { color: var(--gold); }
input, textarea, select {
  width: 100%; padding: 13px 16px; border: 1px solid rgba(40, 61, 85, .15);
  background: var(--white); color: var(--navy-deep);
  font-family: 'DM Sans', sans-serif; font-size: 14px; border-radius: 4px; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
input:focus, textarea:focus, select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(197, 132, 46, .12); }
textarea { resize: vertical; min-height: 120px; }
.form-error-msg { font-size: 11px; color: var(--error); margin-top: 6px; display: none; }
.form-group.has-error input, .form-group.has-error textarea, .form-group.has-error select { border-color: var(--error); }
.form-group.has-error .form-error-msg { display: block; }

.form-submit {
  width: 100%; padding: 15px; background: var(--navy-deep);
  color: var(--sand-light); border: none; border-radius: 4px;
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; cursor: pointer;
  transition: background .25s, transform .25s; margin-top: 8px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.form-submit:hover { background: var(--gold); transform: translateY(-2px); }
.form-submit:disabled { opacity: .7; cursor: progress; transform: none; }
.form-spinner {
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid rgba(228, 220, 207, .35); border-top-color: var(--sand-light);
  display: none; animation: spin .7s linear infinite; flex-shrink: 0;
}
.form-submit.is-loading .form-spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.or-divider { text-align: center; margin: 24px 0; font-size: 12px; color: rgba(17, 36, 64, .4); letter-spacing: .08em; position: relative; }
.or-divider::before, .or-divider::after { content: ''; position: absolute; top: 50%; width: 40%; height: 1px; background: rgba(40, 61, 85, .12); }
.or-divider::before { left: 0; }
.or-divider::after { right: 0; }
.calendly-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px; border: 1px solid var(--navy-deep); border-radius: 4px;
  text-align: center; text-decoration: none; color: var(--navy-deep);
  font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  transition: background .25s, color .25s, border-color .25s, transform .25s;
  flex-wrap: wrap;
}
.calendly-btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); transform: translateY(-2px); }
.btn-icon { width: 22px; height: 22px; object-fit: contain; flex-shrink: 0; }

/* ─── FOOTER ─────────────────────────────────────────── */
footer { background: var(--navy-deep); padding: 64px 60px 32px; color: var(--sand-light); position: relative; overflow: hidden; }
.footer-inner { max-width: var(--maxw); margin-inline: auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; padding-bottom: 36px; border-bottom: 1px solid rgba(197, 132, 46, .12); }
.footer-brand { min-width: 0; }
.footer-brand .brand-name { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 700; color: var(--sand-light); }
.footer-brand .brand-name span { color: var(--gold); }
.footer-brand p { font-size: 13px; line-height: 1.6; color: rgba(228, 220, 207, .7); margin-top: 8px; font-weight: 300; max-width: 420px; }

.trustpilot-badge { display: inline-block; margin-top: 14px; transition: opacity .25s; }
.trustpilot-badge:hover { opacity: .8; }
.trustpilot-badge img { max-width: 180px; width: 100%; height: auto; }

.sc-handle { display: flex; gap: 14px; margin-top: 18px; align-items: center; }
.footer-social-icon {
  width: clamp(44px, 6vw, 56px); height: clamp(44px, 6vw, 56px);
  border-radius: 50%; overflow: hidden; display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
  background: var(--white);
  border: 1px solid rgba(17,36,64,0.06);
  box-shadow: 0 6px 18px rgba(17,36,64,0.12);
  transition: transform .28s var(--ease), box-shadow .28s, border-color .28s;
}
.footer-social-icon:hover { transform: translateY(-4px); border-color: rgba(197,132,46,0.6); box-shadow: 0 10px 24px rgba(17,36,64,0.14); }
.footer-social-icon img { width: 60%; height: 60%; object-fit: contain; display: block; }

.footer-col { min-width: 0; }
.footer-col h4 { font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(228, 220, 207, .5); text-decoration: none; transition: color .2s, padding-left .2s; }
.footer-col ul li a:hover { color: var(--sand-light); padding-left: 4px; }

/* ─── PAYMENT BADGES ───────────────────────────────────
   Real circular badges (same pattern as .footer-social-icon):
   a fixed-size circle wrapper + an image centered inside with
   object-fit:contain. This guarantees a true circle no matter
   the logo's aspect ratio, and keeps icons crisp on every screen. */
.payments-icon { display: flex; gap: 12px; align-items: center; justify-content: flex-start; margin-top: 22px; flex-wrap: wrap; }
.payment-badge {
  width: clamp(40px, 6vw, 52px); height: clamp(40px, 6vw, 52px);
  border-radius: 50%; overflow: hidden;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 22px rgba(17,36,64,0.14);
  border: 1px solid rgba(17,36,64,0.06);
  transition: transform .18s var(--ease), box-shadow .18s, border-color .18s;
}
.payment-badge:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 12px 30px rgba(17,36,64,0.18); border-color: rgba(197,132,46,0.5); }
.payment-badge img {
  width: 60%; height: 60%; object-fit: contain; display: block;
}

@media (max-width: 480px) {
  .payment-badge { width: clamp(36px, 9vw, 44px); height: clamp(36px, 9vw, 44px); }
}

.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; gap: 18px; flex-wrap: wrap; }
.footer-bottom p { font-size: 12px; color: rgba(228, 220, 207, .3); }
.footer-bottom p span { color: var(--gold); }

/* ─── FLOATING UI: WhatsApp + Back to top + Toast ───────── */
.float-actions {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  display: flex; flex-direction: column; gap: 14px; align-items: center;
}
.float-btn {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; cursor: pointer; border: none;
  box-shadow: var(--shadow-md); flex-shrink: 0;
  transition: transform .3s var(--ease), background .3s, box-shadow .3s, opacity .3s, visibility .3s;
}
.float-whatsapp { background: var(--gold); }
.float-whatsapp:hover { background: var(--navy-deep); transform: translateY(-3px) scale(1.05); }
.float-whatsapp img {
  width: 34px; height: 34px; object-fit: contain;
  background: var(--white); border-radius: 50%; padding: 4px;
}
.float-top {
  background: var(--navy-deep); color: var(--gold); font-size: 18px;
  opacity: 0; visibility: hidden; transform: translateY(10px);
}
.float-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.float-top:hover { background: var(--gold); color: var(--white); transform: translateY(-3px); }

.toast {
  position: fixed; bottom: 24px; left: 24px; z-index: 1500;
  background: var(--navy-deep); color: var(--sand-light);
  padding: 18px 22px; border-radius: var(--radius-md);
  display: flex; gap: 14px; align-items: flex-start;
  box-shadow: var(--shadow-lg); max-width: 320px;
  border-left: 3px solid var(--gold);
  transform: translateY(140%); opacity: 0;
  transition: transform .45s var(--ease), opacity .45s var(--ease);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon {
  width: 26px; height: 26px; border-radius: 50%; background: var(--gold); color: var(--white);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 13px; font-weight: 700;
}
.toast strong { display: block; font-size: 14px; margin-bottom: 4px; }
.toast p { font-size: 12px; color: rgba(228, 220, 207, .7); margin: 0; line-height: 1.5; }

/* ============================================================
   RESPONSIVE — every breakpoint declared once, in one place
   ============================================================ */
@media (max-width: 1100px) {
  .hero-accent { width: 280px; height: 280px; }
  .why-grid { gap: 56px; }
  .services-grid { gap: 18px; }
}

@media (max-width: 900px) {
  nav { padding: 10px 22px; height: 76px; }
  nav.scrolled { height: 66px; padding: 8px 22px; }
  .nav-logo, .nav-logo img { max-height: 64px; }
  nav.scrolled .nav-logo, nav.scrolled .nav-logo img { max-height: 54px; }

  section { padding: 72px 24px; }

  .hero { padding: calc(72px + 56px) 24px 100px; align-items: center; text-align: center; }
  .hero-accent, .hero-glow, .scroll-cue { display: none; }
  .hero-grid { opacity: .02; background-size: 40px 40px; }
  .hero-eyebrow { justify-content: center; margin-bottom: 12px; }
  .hero h1 { font-size: clamp(34px, 8vw, 64px); max-width: 100%; margin: 0 auto; }
  .hero-sub { max-width: 100%; margin: 18px auto 0; }
  .hero-actions { justify-content: center; flex-direction: column; gap: 12px; margin-top: 28px; width: 100%; max-width: 320px; }
  .hero-actions .btn-primary, .hero-actions .btn-outline { width: 100%; justify-content: center; }
  .hero-stats { justify-content: center; text-align: center; gap: 28px; margin-top: 40px; }

  .about-inner { flex-direction: column; gap: 56px; }
  .about-text { text-align: center; }
  .about-text p, .about-pillars { margin-inline: auto; }
  .about-visual { max-width: 460px; margin-inline: auto; width: 100%; }
  .about-float { right: 50%; transform: translateX(50%); bottom: -22px; text-align: center; }

  .services-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }

  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
  .process-steps::before { display: none; }

  .why-grid { grid-template-columns: 1fr; gap: 40px; }

  .contact { grid-template-columns: 1fr; }
  .contact-left, .contact-right { padding: 64px 24px; }

  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  footer { padding: 56px 24px 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .payments-icon { justify-content: center; }

  .form-row { grid-template-columns: 1fr; }

  .float-actions { right: 16px; bottom: 16px; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: clamp(30px, 9vw, 48px); }
  .hero-stats { flex-direction: column; gap: 20px; align-items: center; }
  .service-card { padding: 36px 26px; }
  .service-title { font-size: 22px; }
  .about-card { padding: 36px 26px; }
  .about-card-quote { font-size: 21px; }
  .about-float { padding: 14px 18px; }
  .why-feature { padding: 22px 18px; flex-wrap: wrap; }
  .why-feature-icon { width: 38px; height: 38px; font-size: 17px; }
}

@media (max-width: 480px) {
  .hero { padding: calc(64px + 48px) 16px 90px; }
  .hero-eyebrow { font-size: 10px; }
  .hero-sub { font-size: 14px; }
  nav { padding: 8px 16px; height: 68px; }
  nav.scrolled { height: 60px; padding: 6px 16px; }
  .nav-logo, .nav-logo img { max-height: 54px; }
  nav.scrolled .nav-logo, nav.scrolled .nav-logo img { max-height: 46px; }
  .service-icon { width: 60px; height: 60px; }
  .icon-duo { width: 60px; height: 64px; }
  .icon-duo-item { width: 40px; height: 40px; }
  .icon-duo-item--back { top: 20px; left: 20px; }
  .service-title { font-size: 19px; }
  .about-pillars { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .mobile-menu-links a { font-size: 28px; }
  .float-btn { width: 48px; height: 48px; }
  .float-whatsapp img { width: 28px; height: 28px; padding: 3px; }
  .toast { left: 12px; right: 12px; max-width: none; bottom: 12px; }
  .contact-info-value { font-size: 13px; }
  .form-submit { font-size: 12px; padding: 14px; }
}

@media (max-width: 360px) {
  .hero h1 { font-size: 28px; }
  .stat-num { font-size: 34px; }
  .section-title { font-size: 28px; }
  nav { padding: 8px 14px; height: 62px; }
  nav.scrolled { height: 56px; }
  .nav-logo, .nav-logo img { max-height: 46px; }
  nav.scrolled .nav-logo, nav.scrolled .nav-logo img { max-height: 40px; }
}

@media (min-width: 1600px) {
  .hero-inner, .about-inner, .services-inner, .process-inner, .why-inner, .contact-left-inner, .contact-right-inner, .footer-inner {
    max-width: calc(var(--content-max) + 160px);
    margin-left: auto; margin-right: auto;
  }
}

/* ─── REDUCED MOTION ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  html { scroll-behavior: auto; }
}