:root {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --surface-soft: #eef4ff;
  --text: #151a2d;
  --muted: #667085;
  --primary: #1662ff;
  --primary-dark: #0b3fb4;
  --accent: #f2b705;
  --border: #e4e7ec;
  --success: #0f9d58;
  --shadow: 0 24px 60px rgba(22, 36, 78, .12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }

.page-shell { overflow: hidden; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(247, 248, 251, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(228, 231, 236, .8);
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px; height: 42px; display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 1.25rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 13px;
  box-shadow: 0 12px 30px rgba(22, 98, 255, .28);
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.2; }
.brand-copy strong { font-family: Manrope, sans-serif; font-size: 1.05rem; }
.brand-copy small { color: var(--muted); font-size: .72rem; margin-top: 4px; }
.desktop-nav { display: flex; align-items: center; gap: 26px; color: #344054; font-size: .93rem; font-weight: 600; }
.desktop-nav a:hover { color: var(--primary); }
.header-actions { display: flex; gap: 10px; align-items: center; }
.language-switch {
  display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--border);
  background: var(--surface); border-radius: 999px; padding: 8px 13px; color: #344054;
  font-weight: 700;
}
.language-dot { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: #eaf0ff; color: var(--primary); font-size: .72rem; }

.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 20px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 700; transition: .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 40px; padding: 0 16px; font-size: .9rem; }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); box-shadow: 0 14px 30px rgba(22,98,255,.25); }
.button-dark { background: var(--text); color: #fff; }
.button-ghost { background: var(--surface); border-color: var(--border); }
.button-light { background: #fff; color: var(--primary-dark); }
.button-outline-light { color: #fff; border-color: rgba(255,255,255,.45); background: transparent; }

.section-pad { padding: 100px clamp(20px, 6vw, 88px); }
.hero {
  min-height: 790px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center;
  background:
    radial-gradient(circle at 12% 20%, rgba(22, 98, 255, .11), transparent 32%),
    radial-gradient(circle at 85% 30%, rgba(242, 183, 5, .13), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f7f8fb 100%);
}
.eyebrow { display: inline-block; color: var(--primary); font-size: .78rem; letter-spacing: .13em; font-weight: 800; margin-bottom: 16px; }
.eyebrow.light { color: #c8dbff; }
h1,h2,h3 { font-family: Manrope, Inter, sans-serif; line-height: 1.12; margin: 0; }
h1 { font-size: clamp(3rem, 6vw, 5.7rem); letter-spacing: -.055em; max-width: 850px; }
h2 { font-size: clamp(2.25rem, 4vw, 4rem); letter-spacing: -.04em; }
h3 { font-size: 1.24rem; }
.hero-copy > p { font-size: 1.15rem; color: var(--muted); max-width: 690px; margin: 26px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 30px; color: #475467; font-size: .9rem; }
.hero-trust span > span { margin-left: 4px; }
.hero-visual { position: relative; min-height: 560px; display: grid; place-items: center; }
.glow { position: absolute; border-radius: 50%; filter: blur(8px); }
.glow-one { width: 380px; height: 380px; background: rgba(22,98,255,.14); }
.glow-two { width: 220px; height: 220px; right: 0; top: 60px; background: rgba(242,183,5,.18); }
.floating-card { position: relative; z-index: 2; }
.profile-card { width: min(100%, 470px); padding: 28px; border-radius: var(--radius-lg); background: rgba(255,255,255,.95); box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.8); }
.profile-top { display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center; }
.avatar { width: 60px; height: 60px; display: grid; place-items: center; border-radius: 18px; color: white; font-weight: 800; background: linear-gradient(135deg, #111a38, var(--primary)); }
.profile-top p { margin: 6px 0 0; color: var(--muted); font-size: .88rem; }
.verified { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: #eaf8f0; color: var(--success); font-weight: 800; }
.profile-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 28px 0; }
.profile-stats div { padding: 16px 10px; border-radius: 15px; background: #f8fafc; text-align: center; }
.profile-stats strong, .profile-stats span { display: block; }
.profile-stats span { color: var(--muted); font-size: .78rem; }
.profile-services { display: flex; flex-wrap: wrap; gap: 8px; }
.profile-services span { padding: 8px 12px; background: #eef4ff; border-radius: 999px; color: var(--primary-dark); font-size: .82rem; font-weight: 700; }
.mock-button { width: 100%; margin-top: 24px; min-height: 48px; border: none; border-radius: 14px; color: #fff; background: var(--text); font-weight: 700; }
.mini-card { position: absolute; z-index: 3; background: #fff; border-radius: 16px; padding: 14px 18px; box-shadow: 0 16px 36px rgba(17,24,39,.15); }
.mini-card span, .mini-card small { display: block; }
.mini-card span { font-weight: 800; color: var(--primary); }
.mini-card small { color: var(--muted); }
.mini-one { left: 0; top: 120px; }
.mini-two { right: 10px; bottom: 70px; }

.metrics-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.metrics-strip div { background: #fff; padding: 30px; text-align: center; }
.metrics-strip strong, .metrics-strip span { display: block; }
.metrics-strip strong { font-size: 1.7rem; color: var(--primary); }
.metrics-strip span { color: var(--muted); font-size: .88rem; }

.section-center { text-align: center; }
.section-heading { max-width: 780px; margin-bottom: 48px; }
.section-heading.section-center { margin-left: auto; margin-right: auto; }
.section-heading p { color: var(--muted); font-size: 1.05rem; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.info-card { background: #fff; border: 1px solid var(--border); padding: 28px; border-radius: var(--radius-md); text-align: left; }
.info-card p { color: var(--muted); margin-bottom: 0; }
.icon-box { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: #eef4ff; color: var(--primary); font-weight: 900; margin-bottom: 22px; }
.soft-section { background: #eef3fb; }
.billing-toggle { display: inline-flex; gap: 4px; padding: 5px; background: #fff; border: 1px solid var(--border); border-radius: 999px; }
.billing-option { border: none; background: transparent; border-radius: 999px; padding: 11px 18px; font-weight: 700; color: var(--muted); }
.billing-option.active { background: var(--text); color: #fff; }
.billing-option em { font-style: normal; font-size: .68rem; color: var(--success); margin-left: 4px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.price-card { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border); border-radius: 24px; padding: 28px; min-height: 560px; }
.price-card.featured { border: 2px solid var(--primary); transform: translateY(-10px); box-shadow: 0 24px 60px rgba(22,98,255,.18); }
.plan-badge { position: absolute; top: 18px; right: 18px; background: #eaf0ff; color: var(--primary); font-size: .72rem; font-weight: 800; padding: 7px 10px; border-radius: 999px; }
.plan-kicker { color: var(--primary); font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.plan-price { margin: 22px 0 4px; }
.plan-price strong { font-size: 2.7rem; letter-spacing: -.05em; }
.plan-price span { color: var(--muted); font-size: .9rem; }
.plan-audience { color: var(--muted); min-height: 52px; }
.plan-reason { padding: 14px; border-radius: 14px; background: #f8fafc; font-size: .86rem; color: #475467; margin: 10px 0 18px; }
.feature-list { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 10px; }
.feature-list li { display: flex; gap: 10px; color: #344054; font-size: .91rem; }
.feature-list li::before { content: "✓"; color: var(--success); font-weight: 900; }
.price-card .button { margin-top: auto; }
.comparison-wrap { max-width: 1200px; margin: 60px auto 0; padding: 28px; border-radius: 24px; background: #fff; border: 1px solid var(--border); }
.comparison-header { display: flex; justify-content: space-between; align-items: end; gap: 24px; }
.comparison-table-wrap { overflow-x: auto; margin-top: 24px; }
.comparison-table { width: 100%; min-width: 900px; border-collapse: collapse; }
.comparison-table th, .comparison-table td { padding: 14px 12px; border-bottom: 1px solid var(--border); text-align: center; font-size: .88rem; }
.comparison-table th:first-child, .comparison-table td:first-child { text-align: left; font-weight: 700; position: sticky; left: 0; background: #fff; }
.is-hidden { display: none; }

.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.category-card { padding: 24px; border-radius: 20px; background: #fff; border: 1px solid var(--border); }
.category-card .category-icon { font-size: 1.7rem; }
.category-card p { color: var(--muted); font-size: .9rem; }
.category-card strong { color: var(--primary); font-size: .82rem; }
.split-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; background: #11182e; color: #fff; }
.split-section p { color: #b9c1d2; }
.steps-list { display: grid; gap: 16px; }
.steps-list article { display: grid; grid-template-columns: auto 1fr; gap: 16px; padding: 22px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; }
.steps-list article > span { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; background: var(--primary); font-weight: 800; }
.steps-list p { margin: 8px 0 0; }
.faq-list { max-width: 880px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; }
.faq-question { width: 100%; border: none; background: transparent; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px; font-weight: 800; text-align: left; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-answer p { color: var(--muted); padding: 0 22px 22px; margin: 0; }
.faq-item.open .faq-answer { max-height: 220px; }
.cta-section { margin: 0 clamp(20px, 6vw, 88px) 80px; padding: 54px; border-radius: 30px; background: linear-gradient(135deg, #0c3a9f, #1767ff 62%, #397cff); color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-section p { color: #d9e6ff; max-width: 720px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.site-footer { padding: 34px clamp(20px, 6vw, 88px); border-top: 1px solid var(--border); display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 24px; align-items: center; background: #fff; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 18px; color: var(--muted); font-size: .9rem; }
.site-footer > p { color: var(--muted); font-size: .82rem; text-align: right; }

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-copy { text-align: center; }
  .hero-copy > p { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { min-height: 520px; }
  .benefit-grid, .category-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .split-section { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
  .site-footer > p { text-align: center; }
}

@media (max-width: 720px) {
  .site-header { padding: 12px 16px; }
  .brand-copy small, .header-actions .button { display: none; }
  .section-pad { padding: 72px 20px; }
  h1 { font-size: clamp(2.7rem, 14vw, 4.2rem); }
  .hero { min-height: auto; gap: 20px; }
  .hero-visual { min-height: 460px; }
  .profile-card { padding: 20px; }
  .mini-one { left: 0; top: 30px; }
  .mini-two { right: 0; bottom: 24px; }
  .metrics-strip { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid, .pricing-grid, .category-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .comparison-header { align-items: stretch; flex-direction: column; }
  .cta-section { margin: 0 16px 50px; padding: 34px 24px; flex-direction: column; align-items: flex-start; }
  .cta-actions, .cta-actions .button { width: 100%; }
}
