/* ═══════════════════════════════════════════════════════════
   KONVYRT MARKETING — Website Stylesheet
   Brand: Midnight + Gold (Primary) + Teal (Pinstripe)
   Font: Plus Jakarta Sans
═══════════════════════════════════════════════════════════ */

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../assets/fonts/PlusJakartaSans-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../assets/fonts/PlusJakartaSans-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* ─── VARIABLES ──────────────────────────────────────────── */
:root {
  --midnight:     #0F172A;
  --midnight-2:   #1E293B;
  --midnight-3:   #162032;
  --gold:         #B89B5E;
  --gold-light:   #C9A870;
  --gold-glow:    rgba(184,155,94,0.12);
  --gold-glow-sm: rgba(184,155,94,0.08);
  --teal:         #0D9488;
  --zinc:         #71717A;
  --body-color:   #475569;
  --sub:          #94A3B8;
  --bg:           #F1F5F9;
  --bg-2:         #E8EEF4;
  --white:        #FFFFFF;
  --border:       #E2E8F0;
  --border-mid:   #CBD5E1;
  --border-dark:  rgba(255,255,255,0.07);
  --font:         'Plus Jakarta Sans', sans-serif;
  --max:          1200px;
  --radius:       14px;
  --radius-sm:    8px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --shadow:       0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06);
  --shadow-gold:  0 6px 24px rgba(184,155,94,0.40);
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET + BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--midnight);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h3 { font-size: 1.2rem; font-weight: 700; line-height: 1.3; letter-spacing: -0.01em; }
h4 { font-size: 1rem; font-weight: 600; }
p  { font-size: 1rem; line-height: 1.75; color: var(--body-color); }

.gold  { color: var(--gold); }
.teal  { color: var(--teal); }
.white { color: var(--white); }
.zinc  { color: var(--zinc); }
.sub   { color: var(--sub); }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--midnight); }
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: transparent;
  color: var(--midnight);
  border: 1.5px solid var(--border-mid);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline-light:hover {
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.06);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 9px 20px; font-size: 0.875rem; }

/* ─── BADGE ──────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-gold { background: rgba(184,155,94,0.12); color: var(--gold); border: 1px solid rgba(184,155,94,0.25); }
.badge-teal { background: rgba(13,148,136,0.10); color: var(--teal); }

/* ─── SECTION LABEL ──────────────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.section-label span {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-label--center { justify-content: center; }

/* ─── SCROLL ANIMATIONS ──────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.fade-up.visible   { opacity: 1; transform: translateY(0); }
.fade-up.delay-1   { transition-delay: 0.10s; }
.fade-up.delay-2   { transition-delay: 0.20s; }
.fade-up.delay-3   { transition-delay: 0.30s; }
.fade-up.delay-4   { transition-delay: 0.40s; }
.fade-up.delay-5   { transition-delay: 0.50s; }

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: var(--transition);
  padding: 20px 0;
}
.nav.scrolled {
  background: rgba(241,245,249,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
  box-shadow: 0 1px 20px rgba(0,0,0,0.05);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo-icon img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.nav-logo-combined {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-logo-icon-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-logo-text-img {
  height: 18px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--midnight);
  letter-spacing: -0.03em;
  transition: color var(--transition);
}

/* Dark hero modifier — index.html only, unscrolled state */
.nav--dark-hero:not(.scrolled) .nav-logo-text      { color: var(--white); }
.nav--dark-hero:not(.scrolled) .nav-links a        { color: rgba(255,255,255,0.75); }
.nav--dark-hero:not(.scrolled) .nav-links a:hover  { color: var(--white); }
.nav--dark-hero:not(.scrolled) .nav-hamburger span { background: var(--white); }
.nav--dark-hero:not(.scrolled) .nav-links a::after { background: rgba(255,255,255,0.60); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--midnight);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-links a:hover        { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 12px; }

/* ─── MOBILE NAV ─────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--midnight);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--midnight);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 2rem;
  cursor: pointer;
  color: var(--white);
  background: none;
  border: none;
  font-family: var(--font);
  line-height: 1;
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--midnight);
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px; height: 700px;
  background: radial-gradient(
    ellipse at 50% 30%,
    rgba(184,155,94,0.18) 0%,
    rgba(184,155,94,0.07) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.hero-badge  { margin-bottom: 28px; }
.hero h1     { color: var(--white); margin-bottom: 24px; }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(148,163,184,0.90);
  max-width: 620px;
  margin-bottom: 44px;
  line-height: 1.75;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Frosted stat strip */
.hero-trust {
  display: flex;
  align-items: stretch;
  margin-top: 64px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  width: 100%;
  max-width: 720px;
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  gap: 4px;
  flex: 1;
}
.hero-trust-value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.hero-trust-label {
  font-size: 0.72rem;
  color: var(--sub);
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}
.hero-trust-divider {
  width: 1px;
  background: var(--border-dark);
  flex-shrink: 0;
  align-self: stretch;
}

/* ═══════════════════════════════════════════════════════════
   MARQUEE STRIP
═══════════════════════════════════════════════════════════ */
.marquee-strip {
  background: var(--midnight-2);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}
.marquee-strip::before,
.marquee-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.marquee-strip::before { left: 0;  background: linear-gradient(to right, var(--midnight-2), transparent); }
.marquee-strip::after  { right: 0; background: linear-gradient(to left,  var(--midnight-2), transparent); }
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.marquee-item .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.8;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════
   POSITIONING
═══════════════════════════════════════════════════════════ */
.positioning {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.positioning-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.positioning-text h2 { margin-bottom: 20px; }
.positioning-text p  { font-size: 1.05rem; margin-bottom: 14px; }

.positioning-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: var(--transition);
}
.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.stat-card .stat-num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--midnight);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card .stat-label {
  font-size: 0.82rem;
  color: var(--zinc);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES — BENTO GRID
═══════════════════════════════════════════════════════════ */
.services { background: var(--bg); }
.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.services-header h2 { margin-bottom: 14px; }

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

/* Base service card */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-mid);
}
.service-card:hover::before { transform: scaleX(1); }

/* Wide card (col-span 2) — dark version */
.service-card--wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
  padding: 40px;
  background: var(--midnight);
  border-color: rgba(255,255,255,0.06);
}
.service-card--wide::before { background: var(--gold); }
.service-card--wide:hover   { border-color: rgba(255,255,255,0.10); }
.service-card--wide .service-card-visual {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-top: 4px;
}
.service-card--wide .service-icon {
  background: rgba(184,155,94,0.12);
  border: 1px solid rgba(184,155,94,0.20);
  margin-bottom: 0;
}
.service-card--wide .service-icon svg { stroke: var(--gold); }
.service-card--wide h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 12px; }
.service-card--wide p  { color: var(--sub); font-size: 0.95rem; line-height: 1.7; margin: 0; }
.service-card--wide .service-tag {
  background: rgba(184,155,94,0.12);
  color: var(--gold);
  border: 1px solid rgba(184,155,94,0.25);
  margin-top: 0;
}

/* Full-width card (col-span 3) — horizontal film card */
.service-card--full {
  grid-column: span 3;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 26px 36px;
  border-style: dashed;
  border-color: var(--border-mid);
  background: var(--bg);
}
.service-card--full::before { background: var(--teal); height: 2px; }
.service-card--full:hover   { transform: translateY(-2px); }
.service-card--full .service-icon {
  background: rgba(13,148,136,0.08);
  margin-bottom: 0;
  flex-shrink: 0;
}
.service-card--full .service-icon svg { stroke: var(--teal); }
.service-card--full .service-card-text { flex: 1; }
.service-card--full .service-card-text h3 { margin-bottom: 5px; font-size: 1rem; }
.service-card--full .service-card-text p  { font-size: 0.875rem; margin: 0; line-height: 1.65; }
.service-card--full .service-card-meta   { flex-shrink: 0; }

/* Icon */
.service-icon {
  width: 48px; height: 48px;
  background: var(--gold-glow-sm);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.service-icon svg {
  width: 24px; height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Tag */
.service-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-glow-sm);
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════════ */
.how-it-works {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.how-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 72px;
}
.how-header h2 { margin-bottom: 14px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 31px;
  left: calc(12.5% + 32px);
  right: calc(12.5% + 32px);
  height: 1px;
  background: var(--border-mid);
  z-index: 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  transition: var(--transition);
}
.step:hover .step-num {
  background: var(--gold);
  color: var(--midnight);
  transform: scale(1.08);
}
.step h3 { margin-bottom: 10px; font-size: 1rem; }
.step p  { font-size: 0.875rem; color: var(--zinc); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════
   WORK SAMPLES
═══════════════════════════════════════════════════════════ */
.work-samples {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.work-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.work-header h2 { max-width: 400px; }
.samples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sample-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.sample-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.sample-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--midnight);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.sample-thumb-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.sample-thumb-dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(184,155,94,0.15);
  border: 1.5px solid rgba(184,155,94,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sample-thumb-dot svg {
  width: 18px; height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sample-thumb-label {
  font-size: 0.68rem;
  color: var(--sub);
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.sample-card:nth-child(2) .sample-thumb { background: #0A1628; }
.sample-card:nth-child(3) .sample-thumb { background: #0F1F35; }
.sample-card:nth-child(4) .sample-thumb { background: #0B1A2E; }
.sample-card:nth-child(5) .sample-thumb { background: #0D1F32; }
.sample-card:nth-child(6) .sample-thumb { background: #0A1625; }
.sample-info   { padding: 20px 22px; }
.sample-info h4 { margin-bottom: 4px; font-size: 0.95rem; }
.sample-info p  { font-size: 0.82rem; color: var(--zinc); margin: 0; }
.sample-type {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-glow-sm);
  padding: 2px 9px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════════
   MID CTA
═══════════════════════════════════════════════════════════ */
.mid-cta {
  background: var(--midnight);
  border-top: 3px solid var(--teal);
  padding: 80px 0;
}
.mid-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.mid-cta-text h2 { color: var(--white); margin-bottom: 12px; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.mid-cta-text p  { color: var(--sub); max-width: 480px; margin: 0; }
.mid-cta-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}
.mid-cta-action small { font-size: 0.78rem; color: var(--sub); }

/* ═══════════════════════════════════════════════════════════
   BOTTOM CTA
═══════════════════════════════════════════════════════════ */
.bottom-cta {
  background: var(--midnight);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bottom-cta::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(184,155,94,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.bottom-cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.bottom-cta h2    { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.bottom-cta p     { color: var(--sub); font-size: 1.05rem; margin-bottom: 40px; }
.bottom-cta-btns  { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--midnight);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 56px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 32px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-logo-img {
  width: 36px; height: 36px;
  border-radius: 8px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-logo-wordmark {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}
.footer-brand p {
  color: var(--sub);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 20px;
}
.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--zinc);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--sub);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p   { font-size: 0.8rem; color: var(--sub); }
.footer-bottom a   { color: var(--gold); transition: var(--transition); }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 34px; height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sub);
  transition: var(--transition);
}
.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow-sm);
}
.footer-socials a svg { width: 15px; height: 15px; }

/* ═══════════════════════════════════════════════════════════
   INNER PAGES — PAGE HERO
═══════════════════════════════════════════════════════════ */
.page-hero {
  padding: 140px 0 80px;
  background: var(--bg);
  position: relative;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse at center top, rgba(184,155,94,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1    { margin-bottom: 20px; max-width: 700px; }
.page-hero p     { font-size: 1.1rem; max-width: 580px; color: var(--zinc); }

/* ═══════════════════════════════════════════════════════════
   INNER PAGES — ABOUT
═══════════════════════════════════════════════════════════ */
.about-story {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-grid .text-block h2 { margin-bottom: 20px; }
.about-grid .text-block p  { margin-bottom: 16px; }
.about-visual { position: relative; }
.about-card-main {
  background: var(--midnight);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--teal);
  padding: 40px;
  color: var(--white);
}
.about-card-main h3 { color: var(--gold); margin-bottom: 12px; font-size: 1.3rem; }
.about-card-main p  { color: var(--sub); margin: 0; line-height: 1.7; }
.about-card-badge {
  position: absolute;
  bottom: -16px; right: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-card-badge .icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--gold-glow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-card-badge .icon svg {
  width: 20px; height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-card-badge .info strong { display: block; font-size: 0.9rem; color: var(--midnight); }
.about-card-badge .info span   { font-size: 0.78rem; color: var(--zinc); }

.why-home { background: var(--bg); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.why-card .num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 12px;
}
.why-card h3 { margin-bottom: 8px; }
.why-card p  { font-size: 0.88rem; margin: 0; }

.values {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.value-item {
  padding: 40px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.value-item:nth-child(even) { border-right: none; }
.value-item:nth-child(n+3)  { border-bottom: none; }
.value-item:hover { background: var(--bg); }
.value-item .v-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
}
.value-item h3 { margin-bottom: 10px; }
.value-item p  { font-size: 0.9rem; margin: 0; }

/* ═══════════════════════════════════════════════════════════
   INNER PAGES — BOOKING / FORM
═══════════════════════════════════════════════════════════ */
.booking-section { background: var(--bg); }
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.booking-info h2 { margin-bottom: 16px; }
.booking-info p  { margin-bottom: 24px; }
.booking-checklist { display: flex; flex-direction: column; gap: 14px; }
.booking-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--body-color);
}
.booking-checklist li .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold-glow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.booking-checklist li .check svg {
  width: 12px; height: 12px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.booking-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.booking-card-header {
  background: var(--midnight);
  border-top: 3px solid var(--gold);
  padding: 28px 32px;
}
.booking-card-header h3 { color: var(--white); margin-bottom: 4px; }
.booking-card-header p  { color: var(--sub); font-size: 0.88rem; margin: 0; }
.booking-card-body  { padding: 32px; }
.form-group         { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--midnight);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--midnight);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(184,155,94,0.10);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row    { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; margin-top: 8px; justify-content: center; }
.form-note   { font-size: 0.78rem; color: var(--sub); text-align: center; margin-top: 12px; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-top           { grid-template-columns: 1fr 1fr 1fr; }
  .positioning-inner    { grid-template-columns: 1fr; gap: 48px; }
  .about-grid           { grid-template-columns: 1fr; }
  .booking-grid         { grid-template-columns: 1fr; }
  .service-card--wide   { grid-column: span 3; grid-template-columns: auto 1fr; }
  .service-card--full   { grid-column: span 3; }
  .steps-grid           { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps-grid::before   { display: none; }
  .hero-trust           { max-width: 100%; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section   { padding: 72px 0; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger       { display: flex; }

  .hero       { padding: 130px 0 80px; min-height: auto; }
  .hero-cta   { flex-direction: column; align-items: center; width: 100%; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-trust {
    border: none; background: none;
    backdrop-filter: none; -webkit-backdrop-filter: none;
    flex-wrap: wrap; gap: 0;
  }
  .hero-trust-item    { padding: 14px 16px; min-width: 48%; }
  .hero-trust-divider { display: none; }

  .services-grid           { grid-template-columns: 1fr; }
  .service-card--wide      { grid-column: span 1; grid-template-columns: 1fr; gap: 20px; padding: 28px; }
  .service-card--full      { grid-column: span 1; flex-direction: column; align-items: flex-start; padding: 24px; gap: 16px; }
  .service-card--full .service-card-meta { margin-top: 4px; }

  .samples-grid  { grid-template-columns: 1fr 1fr; }
  .work-header   { flex-direction: column; align-items: flex-start; gap: 20px; }

  .mid-cta-inner  { flex-direction: column; align-items: flex-start; gap: 32px; }
  .mid-cta-action { align-items: flex-start; }

  .footer-top    { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  .why-grid   { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .value-item { border-right: none !important; }
  .form-row   { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.6rem; }
  .bottom-cta  { padding: 80px 0; }
  .samples-grid { grid-template-columns: 1fr; }
  .footer-top  { grid-template-columns: 1fr; }
  .hero-trust-item { min-width: 100%; }
}
