*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #1B2A48;
  --orange:      #E8701A;
  --warm:        #FFF8F3;
  --ground:      #F4F2EF;
  --ash:         #6B7280;
  --muted:       #C4B5A5;
  --white:       #FFFFFF;
  --card-shadow: 0 8px 40px rgba(27,42,72,0.10);
}

html { scroll-behavior: smooth; background: #1B2A48; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--warm);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  background: rgba(27,42,72,0.95);
  backdrop-filter: blur(12px);
}
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-name { font-size: 17px; font-weight: 800; color: #fff; letter-spacing: -0.3px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.65);
  text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: var(--orange); color: #fff !important;
  padding: 10px 22px; border-radius: 24px;
  font-size: 13px !important; font-weight: 700 !important;
  transition: opacity .2s !important;
}
.nav-cta:hover { opacity: 0.88; }

/* ── HERO ── */
.hero {
  background: var(--navy);
  padding: 160px 48px 120px;
  text-align: center;
  border-bottom-left-radius: 56px;
  border-bottom-right-radius: 56px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232,112,26,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 900; line-height: 1.05;
  color: #fff; letter-spacing: -2px;
  text-wrap: balance;
  margin-bottom: 24px;
}
.hero h1 span { color: var(--orange); }
.hero p {
  font-size: clamp(16px, 2.2vw, 20px);
  color: rgba(255,255,255,0.55);
  max-width: 560px; margin: 0 auto 48px;
  line-height: 1.65;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange); color: #fff;
  padding: 16px 32px; border-radius: 32px;
  font-size: 15px; font-weight: 700; text-decoration: none;
  box-shadow: 0 8px 32px rgba(232,112,26,0.4);
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(232,112,26,0.5); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08); color: #fff;
  padding: 16px 32px; border-radius: 32px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.18);
  transition: background .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); }
.hero-badge {
  margin-top: 56px;
  display: flex; justify-content: center; gap: 32px; flex-wrap: wrap;
}
.badge-item { display: flex; align-items: center; gap: 8px; }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.badge-item span { font-size: 13px; color: rgba(255,255,255,0.4); font-weight: 500; }

/* ── HOW IT WORKS ── */
.section { padding: 100px 48px; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--orange);
  text-align: center; margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px); font-weight: 900;
  color: var(--navy); letter-spacing: -1px; text-align: center;
  text-wrap: balance; margin-bottom: 16px;
}
.section-sub {
  font-size: 17px; color: var(--ash);
  text-align: center; max-width: 520px; margin: 0 auto 64px;
  line-height: 1.65;
}
.steps { display: flex; gap: 24px; max-width: 900px; margin: 0 auto; flex-wrap: wrap; }
.step {
  flex: 1; min-width: 220px;
  background: var(--white); border-radius: 24px; padding: 36px 28px;
  box-shadow: var(--card-shadow);
}
.step-num {
  font-size: 11px; font-weight: 800; letter-spacing: 2px;
  color: var(--orange); text-transform: uppercase; margin-bottom: 16px;
}
.step-icon { font-size: 32px; margin-bottom: 16px; }
.step h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--ash); line-height: 1.65; }

/* ── PRODUCTS ── */
.products-bg { background: var(--ground); }
.product {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; max-width: 1100px; margin: 0 auto;
  padding: 80px 48px;
}
.product.reverse { direction: rtl; }
.product.reverse > * { direction: ltr; }
.product-visual {
  border-radius: 28px; overflow: hidden;
  background: var(--navy);
  aspect-ratio: 9/16;
  max-width: 300px;
  margin: 0 auto;
  box-shadow: 0 24px 80px rgba(27,42,72,0.25);
  display: flex; flex-direction: column;
}
.product-visual.ext { aspect-ratio: 3/4; max-width: 340px; }

/* Phone mock */
.mock-arch {
  background: var(--navy); padding: 28px 20px 24px;
  border-bottom-left-radius: 28px; border-bottom-right-radius: 28px;
  flex-shrink: 0;
}
.mock-brand-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mock-logo { display: flex; align-items: center; gap: 8px; }
.mock-logo-name { font-size: 13px; font-weight: 800; color: #fff; }
.mock-settings {
  width: 28px; height: 28px; border-radius: 14px;
  background: rgba(255,255,255,0.1); display: grid; place-items: center; font-size: 13px;
}
.mock-url-box {
  background: rgba(255,255,255,0.07); border-radius: 12px; padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.1);
}
.mock-url-label { font-size: 8px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px; }
.mock-url-text { font-size: 10px; color: #fff; line-height: 1.5; }
.mock-body { background: #F4F2EF; flex: 1; padding: 16px; }
.mock-section-label { font-size: 7px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.mock-chips { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.mock-chip {
  padding: 5px 12px; border-radius: 16px;
  font-size: 9px; font-weight: 600; color: var(--navy);
  border: 1.5px solid var(--navy); background: #fff;
}
.mock-chip.active { background: var(--navy); color: #fff; }
.mock-card { background: #fff; border-radius: 14px; padding: 14px; margin-bottom: 12px; }
.mock-field-label { font-size: 7px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.mock-field { background: #F9F7F4; border-radius: 7px; padding: 7px 10px; font-size: 9px; color: var(--navy); margin-bottom: 9px; }
.mock-field:last-child { margin-bottom: 0; }
.mock-save-btn {
  background: var(--navy); border-radius: 18px; padding: 12px;
  text-align: center; font-size: 10px; font-weight: 700; color: #fff; margin-top: 10px;
}

/* Extension mock */
.mock-ext { background: #fff; flex: 1; display: flex; flex-direction: column; }
.mock-ext-arch {
  background: var(--navy); padding: 20px 18px 18px;
  border-bottom-left-radius: 20px; border-bottom-right-radius: 20px;
}
.mock-ext-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.mock-ext-brand { display: flex; align-items: center; gap: 7px; }
.mock-ext-name { font-size: 11px; font-weight: 800; color: #fff; }
.mock-ext-pill { background: rgba(255,255,255,0.1); border-radius: 12px; padding: 4px 10px; font-size: 8px; color: rgba(255,255,255,0.6); }
.mock-ext-url { background: rgba(255,255,255,0.07); border-radius: 10px; padding: 10px 12px; border: 1px solid rgba(255,255,255,0.1); }
.mock-ext-url-label { font-size: 7px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px; }
.mock-ext-url-text { font-size: 9px; color: #fff; }
.mock-ext-body { padding: 14px; flex: 1; background: #F4F2EF; }
.mock-ext-chips { display: flex; gap: 5px; margin-bottom: 10px; flex-wrap: wrap; }
.mock-ext-chip { padding: 4px 10px; border-radius: 12px; font-size: 8px; font-weight: 600; color: var(--navy); border: 1.5px solid var(--navy); background: #fff; }
.mock-ext-chip.active { background: var(--navy); color: #fff; }
.mock-fields-card { background: #fff; border-radius: 12px; padding: 12px; margin-bottom: 10px; }
.mock-fl { font-size: 7px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.mock-fi { background: #F9F7F4; border-radius: 6px; padding: 6px 8px; font-size: 8px; color: var(--navy); margin-bottom: 7px; }
.mock-fi:last-child { margin-bottom: 0; }
.mock-ext-save { background: var(--navy); border-radius: 14px; padding: 10px; text-align: center; font-size: 9px; font-weight: 700; color: #fff; }

/* Product content */
.product-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,112,26,0.1); color: var(--orange);
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 20px;
}
.product-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.product-content h2 {
  font-size: clamp(28px, 3.5vw, 40px); font-weight: 900;
  color: var(--navy); letter-spacing: -1px; line-height: 1.1;
  margin-bottom: 16px; text-wrap: balance;
}
.product-content p { font-size: 16px; color: var(--ash); line-height: 1.7; margin-bottom: 28px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--navy); font-weight: 500; }
.feature-list li::before {
  content: ''; width: 20px; height: 20px; border-radius: 10px;
  background: rgba(232,112,26,0.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M7 10l2.5 2.5L13 7' stroke='%23E8701A' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0; margin-top: 1px;
}
.product-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--navy); color: #fff;
  padding: 15px 28px; border-radius: 28px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  box-shadow: 0 6px 24px rgba(27,42,72,0.2);
  transition: transform .2s, box-shadow .2s;
}
.product-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(27,42,72,0.28); }
.product-cta.orange { background: var(--orange); box-shadow: 0 6px 24px rgba(232,112,26,0.3); }
.product-cta.orange:hover { box-shadow: 0 10px 32px rgba(232,112,26,0.4); }

/* ── PRICING ── */
.pricing { padding: 100px 48px; }
.pricing-cards { display: flex; gap: 24px; max-width: 760px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.pricing-card {
  flex: 1; min-width: 280px; max-width: 340px;
  background: var(--white); border-radius: 28px; padding: 40px 36px;
  box-shadow: var(--card-shadow); position: relative;
}
.pricing-card.featured { background: var(--navy); color: #fff; }
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 16px; border-radius: 12px; white-space: nowrap;
}
.plan-name { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ash); margin-bottom: 16px; }
.pricing-card.featured .plan-name { color: rgba(255,255,255,0.5); }
.plan-price { font-size: 52px; font-weight: 900; letter-spacing: -2px; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.pricing-card.featured .plan-price { color: #fff; }
.plan-period { font-size: 13px; color: var(--ash); margin-bottom: 32px; }
.pricing-card.featured .plan-period { color: rgba(255,255,255,0.45); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--navy); }
.pricing-card.featured .plan-features li { color: rgba(255,255,255,0.85); }
.check {
  width: 18px; height: 18px; border-radius: 9px; flex-shrink: 0;
  background: rgba(232,112,26,0.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M5 9l2.5 2.5L13 6' stroke='%23E8701A' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
}
.pricing-card.featured .check { background-color: rgba(255,255,255,0.1); }
.plan-btn {
  display: block; text-align: center; text-decoration: none;
  padding: 15px; border-radius: 24px; font-size: 14px; font-weight: 700;
  background: var(--ground); color: var(--navy); transition: background .2s;
}
.plan-btn:hover { background: #e8e4df; }
.pricing-card.featured .plan-btn { background: var(--orange); color: #fff; }
.pricing-card.featured .plan-btn:hover { background: #d4641a; }
.pricing-toggle { display: flex; justify-content: center; gap: 12px; margin-bottom: 48px; }
.toggle-btn {
  padding: 10px 24px; border-radius: 24px; font-size: 13px; font-weight: 600;
  cursor: pointer; border: none; background: transparent; color: var(--ash); transition: all .2s;
}
.toggle-btn.active { background: var(--navy); color: #fff; }
.yearly-note { text-align: center; font-size: 13px; color: var(--orange); font-weight: 600; margin-top: 20px; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top-left-radius: 48px; border-top-right-radius: 48px;
  padding: 40px 48px;
  text-align: center;
}
.footer-logo { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 20px; }
.footer-logo-name { font-size: 20px; font-weight: 800; color: #fff; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.35); margin-bottom: 36px; }
.footer-links { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; margin-bottom: 32px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; font-weight: 500; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.2); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero { padding: 120px 24px 80px; border-bottom-left-radius: 36px; border-bottom-right-radius: 36px; }
  .section { padding: 64px 24px; }
  .product { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px; }
  .product.reverse { direction: ltr; }
  .product-visual { max-width: 240px; }
  .product-visual.ext { max-width: 280px; }
  .pricing { padding: 64px 24px; }
  footer { padding: 32px 24px; border-top-left-radius: 32px; border-top-right-radius: 32px; }
}
