/* ===================== DESIGN TOKENS ===================== */
:root {
  --navy-900: #060c1c;
  --navy-800: #0a1128;
  --navy-700: #0e1838;
  --navy-600: #142150;
  --navy-card: #0d1530;
  --gold: #c9a24b;
  --gold-light: #e3c479;
  --gold-soft: rgba(201, 162, 75, 0.12);
  --white: #ffffff;
  --gray-100: #eef1f7;
  --gray-300: #c2c9d6;
  --gray-400: #9aa3b5;
  --gray-500: #6b7488;
  --line: rgba(255, 255, 255, 0.08);

  --radius: 16px;
  --radius-lg: 22px;
  --maxw: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.65);

  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* ===================== RESET ===================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font-body);
  background: var(--navy-800);
  color: var(--gray-100);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; font-weight: 700; letter-spacing: -0.02em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 110px 0; position: relative; }
.center { text-align: center; margin-top: 48px; }
.accent { color: var(--gold); }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  padding: 14px 26px; border-radius: 50px; border: 1px solid transparent;
  cursor: pointer; transition: all 0.3s var(--ease); white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn-lg { padding: 17px 34px; font-size: 1.02rem; }
.btn-block { width: 100%; }

.btn-primary { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); color: #1a1300; box-shadow: 0 10px 30px -8px rgba(201, 162, 75, 0.55); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -8px rgba(201, 162, 75, 0.7); }

.btn-outline { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.25); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-3px); }

.btn-ghost { background: transparent; color: var(--gray-300); padding: 10px 16px; }
.btn-ghost:hover { color: var(--gold-light); }

/* shimmer on primary */
.btn-primary::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg); transition: left 0.6s var(--ease);
}
.btn-primary:hover::after { left: 140%; }

/* ===================== HEADER ===================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all 0.35s var(--ease);
  background: rgba(8, 14, 32, 0); padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(8, 14, 32, 0.9);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: baseline; gap: 8px; font-family: var(--font-head); font-weight: 800; }
.brand-mark { color: var(--gold); font-size: 1.5rem; letter-spacing: 0.02em; }
.brand-text { color: var(--white); font-size: 0.95rem; letter-spacing: 0.18em; font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links > a:not(.btn) { color: var(--gray-300); font-size: 0.92rem; font-weight: 500; transition: color 0.25s; }
.nav-links > a:not(.btn):hover { color: var(--gold-light); }
.nav-call { border: 1px solid var(--line); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* ===================== HERO ===================== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 140px 0 90px;
  background:
    radial-gradient(1200px 600px at 70% -10%, rgba(201,162,75,0.10), transparent 60%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  overflow: hidden;
}
.hero-glow {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,75,0.16), transparent 70%);
  top: -200px; right: -150px; filter: blur(20px); pointer-events: none;
  animation: float 9s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(40px); } }
.hero-inner { position: relative; max-width: 880px; }
.eyebrow {
  display: inline-block; font-family: var(--font-head); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
  padding: 8px 16px; border: 1px solid var(--gold-soft); border-radius: 50px;
  background: var(--gold-soft); margin-bottom: 28px;
}
.hero-title { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 800; margin-bottom: 26px; }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--gray-300); max-width: 660px; margin-bottom: 40px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 44px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 14px 28px; }
.hero-trust li { position: relative; padding-left: 24px; color: var(--gray-400); font-size: 0.92rem; }
.hero-trust li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ===================== SECTION HEADINGS ===================== */
.section-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.kicker {
  display: inline-block; font-family: var(--font-head); font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 18px; }
.lead { color: var(--gray-300); font-size: 1.08rem; }

/* ===================== GRIDS ===================== */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: linear-gradient(160deg, var(--navy-card), var(--navy-700));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.card:hover { transform: translateY(-6px); border-color: rgba(201,162,75,0.4); box-shadow: var(--shadow); }
.card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.card p { color: var(--gray-400); font-size: 0.96rem; }

/* PROBLEM */
.problem { background: var(--navy-700); }
.pain-icon { font-size: 2rem; margin-bottom: 16px; }

/* SOLUTION */
.solution { background: linear-gradient(180deg, var(--navy-800), var(--navy-700)); }
.feature {
  padding: 26px 24px; border-radius: var(--radius);
  border: 1px solid var(--line); background: rgba(255,255,255,0.02);
  transition: all 0.35s var(--ease);
}
.feature:hover { border-color: rgba(201,162,75,0.35); transform: translateY(-4px); }
.feature-dot { display: inline-block; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px var(--gold-soft); margin-bottom: 16px; }
.feature h3 { font-size: 1.12rem; margin-bottom: 8px; }
.feature p { color: var(--gray-400); font-size: 0.95rem; }

/* SERVICES */
.services { background: var(--navy-800); }
.svc-icon {
  width: 54px; height: 54px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; border-radius: 14px; margin-bottom: 18px;
  background: var(--gold-soft); border: 1px solid rgba(201,162,75,0.25);
}

/* OFFER */
.offer { background: linear-gradient(180deg, var(--navy-700), var(--navy-900)); }
.offer-card {
  position: relative; max-width: 760px; margin: 0 auto; text-align: center;
  padding: 64px 40px; border-radius: var(--radius-lg);
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(201,162,75,0.18), transparent 70%),
    linear-gradient(160deg, var(--navy-700), var(--navy-card));
  border: 1px solid rgba(201,162,75,0.4);
  box-shadow: 0 0 60px -10px rgba(201,162,75,0.35);
}
.offer-flag {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #1a1300;
  font-family: var(--font-head); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 9px 22px; border-radius: 50px; white-space: nowrap;
}
.offer-title { font-size: clamp(1.8rem, 4vw, 2.7rem); margin-bottom: 8px; }
.price-now { color: var(--gold); }
.offer-strike { color: var(--gray-500); font-size: 1rem; margin-bottom: 22px; }
.offer-strike span { text-decoration: line-through; }
.offer-text { color: var(--gray-300); font-size: 1.1rem; max-width: 560px; margin: 0 auto 26px; }
.offer-text strong { color: var(--white); }
.offer-urgency {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 30px;
  padding: 12px 22px; border-radius: 50px; background: rgba(255,80,80,0.08);
  border: 1px solid rgba(255,90,90,0.3); color: #ffd2d2; font-size: 0.95rem;
}
.offer-urgency strong { color: #fff; }
.pulse-dot { width: 10px; height: 10px; border-radius: 50%; background: #ff5a5a; animation: pulse 1.5s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,90,90,0.6); } 70% { box-shadow: 0 0 0 12px rgba(255,90,90,0); } 100% { box-shadow: 0 0 0 0 rgba(255,90,90,0); } }
.offer-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 22px; }
.offer-fineprint { color: var(--gray-500); font-size: 0.82rem; }

/* MANAGEMENT */
.management { background: var(--navy-800); }
.management-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.management-text h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 18px; }
.management-note { color: var(--gold-light); font-size: 0.92rem; margin: 18px 0 24px; font-weight: 500; }
.management-list {
  display: grid; gap: 14px; padding: 36px;
  background: linear-gradient(160deg, var(--navy-card), var(--navy-700));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.management-list li { position: relative; padding-left: 34px; color: var(--gray-200); font-size: 1.02rem; }
.management-list li::before {
  content: "✓"; position: absolute; left: 0; top: -1px; width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700;
  color: #1a1300; background: var(--gold); border-radius: 50%;
}

/* PROCESS */
.process { background: linear-gradient(180deg, var(--navy-700), var(--navy-800)); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step {
  position: relative; padding: 38px 26px 30px; border-radius: var(--radius);
  background: rgba(255,255,255,0.02); border: 1px solid var(--line);
  transition: all 0.35s var(--ease);
}
.step:hover { transform: translateY(-6px); border-color: rgba(201,162,75,0.4); }
.step-num {
  display: flex; align-items: center; justify-content: center; width: 52px; height: 52px;
  font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: var(--gold);
  border: 2px solid rgba(201,162,75,0.45); border-radius: 50%; margin-bottom: 20px;
  background: var(--gold-soft);
}
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--gray-400); font-size: 0.95rem; }
.process-speed {
  text-align: center; margin-top: 44px; color: var(--gray-300); font-size: 1.05rem;
  padding: 18px 26px; border-radius: 50px; background: var(--gold-soft);
  border: 1px solid rgba(201,162,75,0.25); display: inline-block; width: 100%;
}
.process-speed strong { color: var(--gold-light); }

/* WHY */
.why { background: var(--navy-800); }
.why-icon { font-size: 1.7rem; margin-bottom: 14px; }
.why-card { padding: 28px 24px; }
.why-card h3 { font-size: 1.05rem; }

/* CTA BAND */
.cta-band {
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(201,162,75,0.16), transparent 70%),
    linear-gradient(135deg, var(--navy-700), var(--navy-600));
  text-align: center;
}
.cta-inner { max-width: 720px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 18px; }
.cta-inner p { color: var(--gray-300); font-size: 1.1rem; margin-bottom: 36px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* CONTACT */
.contact { background: var(--navy-900); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-info h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 18px; }
.contact-details { margin: 32px 0; display: grid; gap: 20px; }
.contact-details li { display: flex; align-items: center; gap: 16px; }
.ci-icon {
  width: 50px; height: 50px; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; border-radius: 14px; background: var(--gold-soft); border: 1px solid rgba(201,162,75,0.25);
}
.ci-label { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gray-500); }
.contact-details a { font-size: 1.05rem; font-weight: 500; transition: color 0.25s; word-break: break-word; }
.contact-details a:hover { color: var(--gold-light); }
.contact-cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.contact-form {
  background: linear-gradient(160deg, var(--navy-card), var(--navy-700));
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field label { font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; color: var(--gray-300); font-family: var(--font-head); }
.field input, .field textarea {
  width: 100%; padding: 14px 16px; font-family: var(--font-body); font-size: 0.98rem;
  color: var(--white); background: rgba(255,255,255,0.04);
  border: 1px solid var(--line); border-radius: 12px; transition: all 0.25s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--gray-500); }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: rgba(201,162,75,0.06);
  box-shadow: 0 0 0 3px var(--gold-soft);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-status { text-align: center; margin-top: 16px; font-size: 0.95rem; min-height: 22px; }
.form-status.ok { color: var(--gold-light); }
.form-status.err { color: #ff9a9a; }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--navy-900); border-top: 1px solid var(--line); padding-top: 64px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 48px; }
.footer-tag { color: var(--gray-500); font-size: 0.9rem; margin-top: 14px; max-width: 280px; }
.footer-col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { color: var(--gray-400); font-size: 0.94rem; transition: color 0.25s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid var(--line); padding: 24px 0; }
.footer-bottom p { color: var(--gray-500); font-size: 0.88rem; text-align: center; }

/* FLOATING CALL BUTTON (mobile) */
.float-call {
  position: fixed; bottom: 22px; right: 22px; z-index: 90; display: none;
  width: 58px; height: 58px; border-radius: 50%; align-items: center; justify-content: center;
  font-size: 1.5rem; background: linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow: 0 10px 30px -6px rgba(201,162,75,0.6); animation: pulse-gold 2s infinite;
}
@keyframes pulse-gold { 0% { box-shadow: 0 0 0 0 rgba(201,162,75,0.5); } 70% { box-shadow: 0 0 0 16px rgba(201,162,75,0); } 100% { box-shadow: 0 0 0 0 rgba(201,162,75,0); } }

/* ===================== REVEAL ANIMATION ===================== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .management-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 760px) {
  .section { padding: 80px 0; }
  .nav-links {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(80vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 22px;
    background: var(--navy-900); padding: 40px; transform: translateX(100%);
    transition: transform 0.4s var(--ease); border-left: 1px solid var(--line); z-index: 99;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links .btn { width: 100%; }
  .nav-toggle { display: flex; z-index: 100; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .float-call { display: flex; }
  .offer-card { padding: 56px 24px 44px; }
  .hero { min-height: auto; }
}
@media (max-width: 460px) {
  .footer-inner { grid-template-columns: 1fr; }
  .btn-lg { width: 100%; }
  .hero-actions, .offer-actions, .cta-actions { flex-direction: column; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
}
