/* =============================================
   MADVERTI — Design System
   Colors extracted from brand logo
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* --- Variables --- */
:root {
  --navy:        #0D1B3E;
  --navy-light:  #162552;
  --cream:       #DDD0B8;
  --cream-light: #F0EBE1;
  --cream-dark:  #C4B49A;
  --bg:          #FAF9F7;
  --bg-alt:      #F3EEE7;
  --white:       #FFFFFF;
  --text:        #1A1A2E;
  --text-muted:  #6B6B7B;
  --text-light:  #9A9AAA;
  --accent:      #C4933F;
  --accent-dark: #A67A2E;
  --success:     #2A7A4B;
  --border:      rgba(13, 27, 62, 0.12);
  --border-cream: rgba(196, 180, 154, 0.4);

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 1px 3px rgba(13,27,62,0.08);
  --shadow-md:  0 4px 16px rgba(13,27,62,0.10);
  --shadow-lg:  0 12px 40px rgba(13,27,62,0.14);

  --max-w:      1100px;
  --section-v:  96px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Container --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 500; }
p  { color: var(--text-muted); line-height: 1.8; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.1rem;
  max-width: 580px;
  margin-bottom: 48px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
}
.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196,147,63,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-light {
  background: var(--cream-light);
  color: var(--navy);
}
.btn-light:hover {
  background: var(--cream);
}

/* --- Nav --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,249,247,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--navy); }

.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.25s;
}

/* --- Hero --- */
.hero {
  padding-top: 140px;
  padding-bottom: 96px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg) 55%, var(--cream-light) 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream-light);
  border: 1px solid var(--border-cream);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-trust-icon {
  width: 20px;
  height: 20px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-trust-icon::after {
  content: '';
  display: block;
  width: 6px;
  height: 10px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg) translate(-1px, -1px);
}

/* --- Sections --- */
.section { padding: var(--section-v) 0; }
.section-alt { background: var(--bg-alt); }
.section-navy {
  background: var(--navy);
  color: var(--white);
}
.section-navy h2,
.section-navy h3,
.section-navy h4 { color: var(--white); }
.section-navy p   { color: rgba(255,255,255,0.72); }
.section-navy .section-label { color: var(--cream); }

/* --- Problem Section --- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--navy);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.problem-number {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 12px;
}

.problem-card h4 {
  margin-bottom: 10px;
}

/* --- Solution / How it works --- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  margin-top: 48px;
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding-bottom: 40px;
  position: relative;
}

.step:last-child { padding-bottom: 0; }

.step-line {
  position: absolute;
  left: 32px;
  top: 52px;
  bottom: 0;
  width: 1px;
  background: var(--border-cream);
}
.step:last-child .step-line { display: none; }

.step-num {
  width: 52px;
  height: 52px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-body { padding-top: 10px; }
.step-body h4 { margin-bottom: 6px; }

/* --- Features / Deliverables --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

/* --- Guarantee --- */
.guarantee-box {
  background: var(--cream-light);
  border: 2px solid var(--cream);
  border-radius: var(--radius-xl);
  padding: 56px 64px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
}

.guarantee-badge {
  width: 120px;
  height: 120px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-align: center;
  padding: 16px;
}

.guarantee-badge-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}

.guarantee-badge-text {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dark);
  line-height: 1.3;
}

.guarantee-body h3 {
  margin-bottom: 12px;
}

/* --- Stats bar --- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 48px 0;
}

.stat-item {
  background: var(--white);
  padding: 32px 24px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
}

/* --- CTA section --- */
.cta-box {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 72px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196,147,63,0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.cta-box h2 { color: var(--white); margin-bottom: 16px; }
.cta-box p  { color: rgba(255,255,255,0.7); margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* --- Footer --- */
.footer {
  background: var(--navy);
  padding: 56px 0 32px;
  color: rgba(255,255,255,0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 12px;
  max-width: 280px;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 8px;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-accent  { color: var(--accent); }
.text-cream   { color: var(--cream); }
.text-muted   { color: var(--text-muted); }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.check-list li::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--success);
  border-radius: 50%;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L4.5 7.5L11 1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  :root { --section-v: 64px; }

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

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--bg);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    gap: 20px;
    align-items: flex-start;
  }

  .guarantee-box {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    text-align: center;
    gap: 24px;
  }
  .guarantee-badge { margin: 0 auto; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-box { padding: 48px 28px; }

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

@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   HOMEPAGE — Page-Specific Styles
   ============================================= */

/* --- Hero (dark navy override) --- */
.hero {
  padding-top: 120px;
  padding-bottom: 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-mesh::before {
  content: '';
  position: absolute;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(196,147,63,.18) 0%, transparent 65%);
  top: -300px;
  right: -200px;
  animation: meshPulse 8s ease-in-out infinite;
}
.hero-mesh::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(221,208,184,.09) 0%, transparent 60%);
  bottom: 80px;
  left: -150px;
  animation: meshPulse 10s ease-in-out infinite reverse;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(221,208,184,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(221,208,184,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

@keyframes meshPulse {
  0%, 100% { transform: scale(1) translate(0, 0); opacity: 1; }
  50% { transform: scale(1.08) translate(20px, -20px); opacity: .7; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
  align-items: center;
  padding: 48px 0 80px;
  flex: 1;
}

.hero-left { max-width: 580px; }

.hero .hero-badge {
  background: rgba(221,208,184,.1);
  border: 1px solid rgba(221,208,184,.22);
  color: var(--cream);
  letter-spacing: .04em;
}
.hero-badge-dot {
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 6px var(--accent); }
  50% { box-shadow: 0 0 16px var(--accent), 0 0 28px rgba(196,147,63,.4); }
}

.hero h1 { color: #fff; line-height: 1.15; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero .hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.62);
  line-height: 1.8;
}
.hero .hero-actions { margin-bottom: 44px; }
.hero .hero-trust { flex-direction: column; gap: 10px; }
.hero .hero-trust-item {
  font-size: .85rem;
  color: rgba(255,255,255,.52);
}

.trust-check {
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: rgba(42,122,75,.22);
  border: 1px solid rgba(42,122,75,.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Nav Logo Image --- */
.nav-logo img {
  height: 200px;
  width: auto;
  display: block;
}

/* --- Phone Mockup --- */
.phone-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}
.phone-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(196,147,63,.18) 0%, transparent 70%);
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.phone-float { animation: phoneFloat 6s ease-in-out infinite; }
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.phone-frame {
  width: 320px;
  background: #0E0E24;
  border-radius: 38px;
  border: 2px solid rgba(221,208,184,.18);
  padding: 10px;
  box-shadow:
    0 0 0 1px rgba(221,208,184,.07),
    0 40px 80px rgba(0,0,0,.65),
    0 0 60px rgba(196,147,63,.08);
}
.phone-notch {
  width: 76px;
  height: 22px;
  background: #0E0E24;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 6px;
  border: 2px solid rgba(221,208,184,.12);
  border-top: none;
}
.phone-screen {
  background: #F2F2F7;
  border-radius: 28px;
  overflow: hidden;
  min-height: 540px;
}
.phone-status {
  background: var(--navy);
  color: var(--cream);
  text-align: center;
  font-size: .58rem;
  padding: 5px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: .05em;
}
.phone-bar {
  background: #E5E5EA;
  padding: 10px 14px 8px;
  border-bottom: 1px solid rgba(0,0,0,.07);
  display: flex;
  align-items: center;
  gap: 10px;
}
.phone-av {
  width: 32px;
  height: 32px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .58rem;
  font-weight: 700;
  color: var(--cream);
  font-family: var(--font-head);
  flex-shrink: 0;
}
.phone-name { font-size: .72rem; font-weight: 600; color: #1C1C1E; }
.phone-online { font-size: .6rem; color: #34C759; }
.phone-msgs {
  padding: 12px 9px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.msg {
  max-width: 83%;
  padding: 8px 11px;
  border-radius: 15px;
  font-size: .7rem;
  line-height: 1.45;
  font-family: var(--font-body);
}
.msg-in { background: #E9E9EB; color: #1C1C1E; align-self: flex-start; border-bottom-left-radius: 4px; }
.msg-out { background: var(--navy); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.msg-time { font-size: .57rem; color: #8E8E93; margin-top: 2px; }
.msg-tr { text-align: right; }
.msg-lbl {
  font-size: .54rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8E8E93;
  text-align: center;
  margin: 4px 0;
  font-family: var(--font-body);
}

/* Phone message animation */
.msg-group {
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.msg-group.msg-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Typing indicator */
.typing-indicator {
  display: flex;
  gap: 3px;
  padding: 8px 14px;
  background: #E9E9EB;
  border-radius: 15px;
  border-bottom-left-radius: 4px;
  width: fit-content;
  align-self: flex-start;
}
.typing-indicator span {
  width: 5px;
  height: 5px;
  background: #8E8E93;
  border-radius: 50%;
  animation: typingBounce 1.2s ease-in-out infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.15s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-4px); }
}

/* --- Stats Wave --- */
.stats-wave { background: var(--navy); }
.stats-wave-end {
  height: 56px;
  background: var(--bg-alt);
  clip-path: ellipse(55% 100% at 50% 0%);
  margin-top: -1px;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  border-top: 1px solid rgba(255,255,255,.07);
}
.scard {
  padding: 32px 20px;
  text-align: center;
  position: relative;
}
.scard::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,.07);
}
.scard:last-child::after { display: none; }
.snum {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 7px;
}
.slbl { font-size: .78rem; color: rgba(255,255,255,.45); }

/* --- Section Label (variant) --- */
.slabel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.slabel::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* --- Problem Section --- */
.problem-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 64px;
}
.pstat {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.pstat span { color: var(--accent); }
.prob-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pcard {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pcard-top {
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--navy-light));
  position: absolute;
  top: 0; left: 0; right: 0;
  border-radius: 20px 20px 0 0;
}
.picon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(13,27,62,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.pcard h4 { margin-bottom: 9px; font-size: .97rem; }

/* --- Solution Section --- */
.sol-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.sol-section::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(196,147,63,.06) 0%, transparent 65%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}
.sol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.sol-steps { display: flex; flex-direction: column; gap: 0; }
.sstep { display: flex; gap: 18px; padding-bottom: 28px; position: relative; }
.sstep:last-child { padding-bottom: 0; }
.sstep-l { display: flex; flex-direction: column; align-items: center; }
.snum2 {
  width: 42px;
  height: 42px;
  background: rgba(196,147,63,.13);
  border: 1px solid rgba(196,147,63,.32);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.sline {
  width: 1px;
  flex: 1;
  background: rgba(221,208,184,.1);
  min-height: 28px;
  margin-top: 7px;
}
.sstep:last-child .sline { display: none; }
.sbody { padding-top: 8px; }
.sbody h4 { color: #fff; margin-bottom: 5px; }
.sbody p { color: rgba(255,255,255,.52); font-size: .88rem; }

/* --- Browser Mockup --- */
.browser {
  background: #0A0F1E;
  border-radius: 16px;
  border: 1px solid rgba(221,208,184,.1);
  overflow: hidden;
  box-shadow: 0 28px 72px rgba(0,0,0,.5);
}
.bbar {
  background: #141929;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.bdots { display: flex; gap: 5px; }
.bdot { width: 9px; height: 9px; border-radius: 50%; }
.burl {
  flex: 1;
  background: rgba(255,255,255,.05);
  border-radius: 5px;
  padding: 4px 10px;
  font-size: .68rem;
  color: rgba(255,255,255,.3);
}
.bcontent { padding: 20px; }
.blog-hd {
  color: rgba(255,255,255,.28);
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.fevent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 10px;
  padding: 11px 12px;
  margin-bottom: 8px;
}
.fevent-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fi-red { background: rgba(13,27,62,.14); border: 1px solid rgba(13,27,62,.28); }
.fi-amber { background: rgba(196,147,63,.14); border: 1px solid rgba(196,147,63,.28); }
.fi-green { background: rgba(42,122,75,.14); border: 1px solid rgba(42,122,75,.28); }
.fi-blue { background: rgba(59,130,246,.14); border: 1px solid rgba(59,130,246,.28); }
.ev-lbl {
  color: rgba(255,255,255,.3);
  font-size: .59rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 2px;
}
.ev-txt { color: rgba(255,255,255,.82); font-size: .74rem; }
.ev-meta { color: var(--accent); font-size: .62rem; margin-top: 2px; }
.ev-meta-g { color: #34C759; font-size: .62rem; margin-top: 2px; }
.fconnect {
  display: flex;
  align-items: center;
  padding-left: 24px;
  gap: 6px;
  color: rgba(255,255,255,.18);
  font-size: .62rem;
  margin-bottom: 8px;
}
.fconnect::before {
  content: '';
  display: block;
  width: 1px;
  height: 14px;
  background: rgba(196,147,63,.2);
}

/* --- Feature Cards --- */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.fcard {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
  transition: box-shadow .25s, transform .25s;
}
.fcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.fcard-icon {
  width: 50px;
  height: 50px;
  background: var(--navy);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.fcard h4 { margin-bottom: 9px; font-size: .97rem; }

/* --- Comparison --- */
.cmp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.ccol { border-radius: 18px; overflow: hidden; border: 1px solid var(--border); }
.chdr {
  padding: 18px 24px;
  font-weight: 600;
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: 9px;
}
.chdr-bad { background: rgba(13,27,62,.05); color: var(--navy); border-bottom: 1px solid var(--border); }
.chdr-good { background: rgba(13,27,62,.05); color: var(--navy); border-bottom: 1px solid var(--border); }
.citems { background: #fff; padding: 6px 0; }
.citem {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 13px 24px;
  border-bottom: 1px solid rgba(0,0,0,.04);
  font-size: .87rem;
  color: var(--text-muted);
}
.citem:last-child { border-bottom: none; }
.cdot {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cdot-bad { background: rgba(13,27,62,.08); }
.cdot-good { background: rgba(42,122,75,.11); }

/* --- ROI Section --- */
.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.roi-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 32px 28px;
}
.roi-card h4 {
  color: #fff;
  margin-bottom: 24px;
  font-size: 1rem;
}
.roi-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .88rem;
  color: rgba(255,255,255,.52);
}
.roi-line:last-child { border-bottom: none; }
.roi-val {
  font-weight: 600;
  color: rgba(255,255,255,.85);
  font-family: var(--font-head);
  font-size: 1rem;
}
.roi-total {
  border-bottom: none;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.roi-total .roi-val {
  color: var(--accent);
  font-size: 1.15rem;
}
.roi-card-solution {
  background: rgba(196,147,63,.06);
  border-color: rgba(196,147,63,.18);
}
.roi-bottom {
  text-align: center;
  margin-top: 32px;
  padding: 20px;
  background: rgba(196,147,63,.08);
  border: 1px solid rgba(196,147,63,.16);
  border-radius: var(--radius-md);
}
.roi-bottom p {
  color: var(--cream);
  font-size: .95rem;
  font-weight: 500;
}
.roi-bottom strong {
  color: var(--accent);
  font-size: 1.1rem;
}

/* --- Guarantee --- */
.g-wrap {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: center;
}
.g-vis { display: flex; justify-content: center; }
.g-badge {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid rgba(221,208,184,.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
  position: relative;
  box-shadow: 0 0 0 12px rgba(13,27,62,.06), var(--shadow-lg);
}
.g-badge::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(196,147,63,.28);
  animation: rotateDash 20s linear infinite;
}
@keyframes rotateDash {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.g-num {
  font-family: var(--font-head);
  font-size: 4.2rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}
.g-unit {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 4px;
  line-height: 1.4;
}

/* --- How to Start --- */
.start-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  position: relative;
}
.start-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(33.33% - 8px);
  right: calc(33.33% - 8px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent, var(--accent));
  opacity: .25;
}
.scrd {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow .25s, transform .25s;
}
.scrd:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.snumw {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.snumt {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
}
.scrd h4 { margin-bottom: 9px; }

/* --- Founder Strip --- */
.founder-strip {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.founder-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.founder-quote blockquote {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 28px;
  position: relative;
}
.founder-quote blockquote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--accent);
  font-family: var(--font-head);
  position: absolute;
  top: -20px;
  left: -8px;
  opacity: .3;
  line-height: 1;
}
.founder-info {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.founder-avatar {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  color: var(--cream);
  flex-shrink: 0;
}
.founder-name {
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
}
.founder-role {
  font-size: .82rem;
  color: var(--text-muted);
}
.founder-location {
  font-size: .78rem;
  color: var(--text-light);
}

/* --- CTA (Final) --- */
.cta-sec {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.cta-sec::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(196,147,63,.11) 0%, transparent 60%);
  top: -200px;
  right: -150px;
  pointer-events: none;
}
.cta-sec::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(221,208,184,.05) 0%, transparent 60%);
  bottom: -100px;
  left: -100px;
  pointer-events: none;
}
.cta-in {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta-in h2 { color: #fff; margin-bottom: 14px; }
.cta-in p { color: rgba(255,255,255,.58); margin-bottom: 36px; font-size: 1.02rem; }
.cta-acts { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-ghost {
  background: rgba(255,255,255,.07);
  color: #fff;
  border: 1px solid rgba(255,255,255,.14);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.cta-note { margin-top: 18px; font-size: .78rem; color: rgba(255,255,255,.28); }

/* --- Footer --- */
.footer {
  background: #070D1C;
  padding: 56px 0 28px;
}
.ftop {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 28px;
}
.flogo {
  margin-bottom: 11px;
}
.flogo img {
  height: 48px;
  width: auto;
}
.ftagline { font-size: .85rem; color: rgba(255,255,255,.38); line-height: 1.7; max-width: 260px; }
.femail {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  font-size: .83rem;
  color: var(--accent);
  transition: opacity .15s;
}
.femail:hover { opacity: .72; }
.fcol h5 {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 16px;
}
.fcol a { display: block; font-size: .85rem; color: rgba(255,255,255,.46); margin-bottom: 11px; transition: color .15s; }
.fcol a:hover { color: #fff; }
.fbot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .76rem;
  color: rgba(255,255,255,.22);
  flex-wrap: wrap;
  gap: 7px;
}

/* --- Scroll Indicator --- */
.scroll-indicator {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.25);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: opacity .3s;
}
.scroll-arrow {
  width: 20px;
  height: 28px;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 10px;
  position: relative;
}
.scroll-arrow::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 7px;
  background: rgba(255,255,255,.35);
  border-radius: 2px;
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(6px); opacity: .3; }
}

/* --- Scroll Reveal Animations --- */
.pcard, .fcard, .sstep, .scard, .scrd, .fevent,
.roi-card, .ccol, .g-wrap, .founder-inner {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.in-view {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Stagger delays */
.prob-cards .pcard:nth-child(2) { transition-delay: 100ms; }
.prob-cards .pcard:nth-child(3) { transition-delay: 200ms; }
.feat-grid .fcard:nth-child(2) { transition-delay: 80ms; }
.feat-grid .fcard:nth-child(3) { transition-delay: 160ms; }
.feat-grid .fcard:nth-child(4) { transition-delay: 80ms; }
.feat-grid .fcard:nth-child(5) { transition-delay: 160ms; }
.feat-grid .fcard:nth-child(6) { transition-delay: 240ms; }
.start-grid .scrd:nth-child(2) { transition-delay: 120ms; }
.start-grid .scrd:nth-child(3) { transition-delay: 240ms; }
.sol-steps .sstep:nth-child(2) { transition-delay: 100ms; }
.sol-steps .sstep:nth-child(3) { transition-delay: 200ms; }
.sol-steps .sstep:nth-child(4) { transition-delay: 300ms; }
.sol-steps .sstep:nth-child(5) { transition-delay: 400ms; }
.roi-grid .roi-card:nth-child(2) { transition-delay: 120ms; }
.cmp-grid .ccol:nth-child(2) { transition-delay: 120ms; }
.bcontent .fevent:nth-child(2) { transition-delay: 80ms; }
.bcontent .fevent:nth-child(4) { transition-delay: 160ms; }
.bcontent .fevent:nth-child(6) { transition-delay: 240ms; }
.bcontent .fevent:nth-child(8) { transition-delay: 320ms; }

/* Stats reveal */
.scard {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stats-row .scard:nth-child(2) { transition-delay: 100ms; }
.stats-row .scard:nth-child(3) { transition-delay: 200ms; }
.stats-row .scard:nth-child(4) { transition-delay: 300ms; }

/* --- Homepage Responsive --- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .phone-wrap { display: none; }
  .hero { min-height: auto; }
  .problem-intro { grid-template-columns: 1fr; gap: 40px; }
  .prob-cards { grid-template-columns: 1fr; }
  .sol-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .g-wrap { grid-template-columns: 1fr; }
  .g-vis { order: -1; }
  .cmp-grid { grid-template-columns: 1fr; }
  .roi-grid { grid-template-columns: 1fr; }
  .start-grid { grid-template-columns: 1fr; }
  .start-grid::before { display: none; }
  .ftop { grid-template-columns: 1fr; gap: 28px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .scroll-indicator { display: none; }
}

@media (max-width: 640px) {
  .feat-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.1rem; }
  .founder-quote blockquote { font-size: 1.05rem; }
  .founder-info { flex-direction: column; gap: 12px; }
}