:root {
  --bg: #ffffff;
  --bg-soft: #f5f7fa;
  --bg-dark: #0a2540;
  --text: #0a2540;
  --text-2: #4a5568;
  --muted: #8a94a6;
  --border: #e3e8ef;
  --primary: #0a2540;
  --accent: #ff8a00;
  --accent-2: #ff6a00;
  --success: #1e8e4e;
  --danger: #d23838;
  --shadow-sm: 0 1px 2px rgba(10,37,64,0.06), 0 0 0 1px rgba(10,37,64,0.04);
  --shadow: 0 10px 40px rgba(10,37,64,0.10);
  --shadow-lg: 0 30px 80px rgba(10,37,64,0.18);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px; color: var(--text); background: var(--bg); line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { line-height: 1.2; letter-spacing: -0.02em; margin: 0 0 14px; }
h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 12px; color: var(--text-2); }

.btn-primary, .btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 22px; border-radius: 8px; font-weight: 600; font-size: 15px;
  text-decoration: none; border: 1px solid transparent; transition: all .15s;
  cursor: pointer; font-family: inherit;
}
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-2); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,138,0,.35); }
.btn-secondary { background: white; color: var(--primary); border-color: var(--border); }
.btn-secondary:hover { border-color: var(--primary); }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-sm { padding: 7px 14px; font-size: 14px; }
.btn-block { width: 100%; }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--border);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; text-decoration: none; color: var(--text); }
.brand-mark {
  width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--primary); color: white; border-radius: 9px; font-weight: 800;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--text-2); text-decoration: none; font-weight: 500; font-size: 15px; }
.nav-links a:hover { color: var(--text); }
.nav-links .btn-primary { color: white; }
.nav-burger { display: none; background: none; border: none; font-size: 24px; cursor: pointer; }

/* HERO */
.hero { position: relative; padding: 80px 0 100px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(255,138,0,0.10), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(10,37,64,0.06), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  z-index: -1;
}
.hero-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.badge-row { margin-bottom: 20px; }
.hero-badge {
  display: inline-block; padding: 6px 14px; background: white; border: 1px solid var(--border);
  border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--text-2);
  box-shadow: var(--shadow-sm);
}
.hero h1 em { color: var(--accent); font-style: normal; }
.hero-sub { font-size: 18px; color: var(--text-2); margin: 16px 0 28px; max-width: 540px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 560px; }
.hero-trust > div { display: flex; flex-direction: column; }
.hero-trust strong { font-size: 22px; font-weight: 800; color: var(--text); }
.hero-trust span { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; margin-top: 2px; }

/* HERO MOCKUP */
.hero-mock { transform: perspective(1500px) rotateY(-7deg) rotateX(3deg); }
.mock-frame {
  background: white; border-radius: 14px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border); overflow: hidden;
}
.mock-bar { display: flex; gap: 6px; padding: 12px 16px; background: #f1f4f8; border-bottom: 1px solid var(--border); }
.mock-bar span { width: 11px; height: 11px; border-radius: 50%; background: #e5e7eb; }
.mock-bar span:first-child { background: #ff5f57; }
.mock-bar span:nth-child(2) { background: #ffbd2e; }
.mock-bar span:nth-child(3) { background: #28c940; }
.mock-body { padding: 8px 14px 14px; }
.mock-row { display: grid; grid-template-columns: 1.1fr 1.1fr 1.2fr 0.9fr 0.9fr; gap: 10px; padding: 10px 6px; border-bottom: 1px solid #f1f4f8; font-size: 13px; align-items: center; }
.mock-row:last-child { border-bottom: none; }
.mock-row.mock-head { font-weight: 600; text-transform: uppercase; font-size: 10.5px; color: var(--muted); letter-spacing: 0.05em; }
.mock-row .dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; margin-right: 5px; vertical-align: middle; }
.mock-row .dot.ok { background: var(--accent); }
.mock-row .dot.done { background: var(--success); }

/* PAIN */
.pain { padding: 90px 0; background: var(--bg-soft); }
.pain h2 { text-align: center; margin-bottom: 50px; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.pain-grid h3 { margin-bottom: 8px; }
.pain-grid p { font-size: 15px; }

/* FEATURES */
.features { padding: 100px 0; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-head.light { color: white; }
.section-head.light .eyebrow { color: rgba(255,255,255,0.7); }
.section-head.light p { color: rgba(255,255,255,0.85); }
.eyebrow { display: inline-block; color: var(--accent); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.section-head p { max-width: 600px; margin: 12px auto 0; font-size: 17px; }

.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feat {
  background: white; border: 1px solid var(--border); border-radius: 14px;
  padding: 26px; transition: all .2s;
}
.feat:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.feat-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 16px; }
.feat h3 { font-size: 17px; margin-bottom: 8px; }
.feat p { font-size: 14px; margin: 0; }

/* DIFFER */
.differ { padding: 100px 0; background: var(--bg-dark); color: white; }
.comp-table-wrap { background: rgba(255,255,255,0.04); border-radius: 16px; padding: 8px; }
.comp-table { width: 100%; border-collapse: collapse; }
.comp-table th, .comp-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.08); }
.comp-table th { font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; color: rgba(255,255,255,0.6); font-weight: 600; }
.comp-table th.us, .comp-table td.us { color: var(--accent); font-weight: 700; }
.comp-table tr:last-child th, .comp-table tr:last-child td { border-bottom: none; }
.comp-table td:first-child { color: rgba(255,255,255,0.85); font-weight: 600; }

/* PRICING */
.pricing { padding: 100px 0; background: var(--bg-soft); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; max-width: 1080px; margin: 0 auto; }
.price-card {
  background: white; border: 1px solid var(--border); border-radius: 14px;
  padding: 32px; position: relative; transition: all .2s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price-card.featured { border-color: var(--accent); border-width: 2px; transform: scale(1.04); box-shadow: var(--shadow-lg); }
.price-card.featured:hover { transform: scale(1.05) translateY(-2px); }
.price-flag {
  position: absolute; top: -12px; right: 22px;
  background: var(--accent); color: white; padding: 4px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
}
.price-name { font-size: 14px; font-weight: 700; color: var(--text-2); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.price-amount { font-size: 44px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.price-amount span { font-size: 16px; font-weight: 500; color: var(--muted); }
.price-sub { font-size: 14px; margin: 0 0 22px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 26px; }
.price-card li { padding: 7px 0 7px 24px; position: relative; font-size: 14.5px; color: var(--text-2); }
.price-card li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.price-note { text-align: center; margin-top: 30px; font-size: 14px; color: var(--muted); }

/* FAQ */
.faq { padding: 100px 0; }
.faq-grid { max-width: 760px; margin: 0 auto; }
.faq details {
  background: white; border: 1px solid var(--border); border-radius: 10px;
  padding: 18px 22px; margin-bottom: 12px; cursor: pointer;
}
.faq details[open] { border-color: var(--accent); }
.faq summary { font-weight: 600; font-size: 16px; list-style: none; padding-right: 26px; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 0; top: -2px; font-size: 22px; color: var(--accent); font-weight: 400; }
.faq details[open] summary::after { content: '−'; }
.faq details p { margin-top: 12px; font-size: 15px; }

/* CONTACT */
.contact { padding: 100px 0; background: linear-gradient(180deg, var(--bg-soft) 0%, white 100%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: flex-start; }
.contact h2 { margin-bottom: 16px; }
.contact-list { list-style: none; padding: 0; margin: 24px 0 0; }
.contact-list li { padding: 8px 0; font-size: 15px; color: var(--text-2); }
.contact-list a { color: var(--text); text-decoration: none; font-weight: 600; }

.contact-form {
  background: white; border: 1px solid var(--border); border-radius: 14px;
  padding: 32px; box-shadow: var(--shadow);
}
.contact-form label { display: block; margin-bottom: 14px; }
.contact-form label > span { display: block; font-size: 13px; font-weight: 600; color: var(--text-2); margin-bottom: 5px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 11px 14px; border: 1px solid var(--border);
  border-radius: 8px; font-family: inherit; font-size: 15px; background: white;
  color: var(--text);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: 2px solid rgba(255,138,0,0.4); border-color: var(--accent);
}
.lead-result { margin-top: 12px; padding: 11px 14px; border-radius: 8px; font-size: 14px; }
.lead-result.ok { background: #e8f8ed; color: var(--success); }
.lead-result.err { background: #fff0f0; color: var(--danger); }
.lead-foot { font-size: 12px; color: var(--muted); margin-top: 14px; }
.lead-foot a { color: var(--text-2); }

/* FOOTER */
.footer { background: var(--bg-dark); color: rgba(255,255,255,0.7); padding: 60px 0 20px; }
.footer .brand { color: white; }
.footer-row { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 30px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 20px; }
.footer-tag { margin-top: 10px; color: rgba(255,255,255,0.6); font-size: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; }
.footer-links a:hover { color: white; }
.footer-foot { font-size: 13px; color: rgba(255,255,255,0.5); }

/* LEGAL PAGES */
.legal-page { padding: 60px 0 100px; max-width: 800px; margin: 0 auto; }
.legal-page h1 { font-size: 32px; margin-bottom: 30px; }
.legal-page h2 { font-size: 22px; margin: 30px 0 12px; }
.legal-page p { font-size: 15px; }
.legal-page address { font-style: normal; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; gap: 14px; position: absolute; top: 100%; left: 0; right: 0; background: white; padding: 20px 24px; border-bottom: 1px solid var(--border); }
  .nav-burger { display: block; }
  .hero { padding: 50px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-mock { transform: none; }
  .hero-trust { grid-template-columns: repeat(2, 1fr); }
  .pain-grid, .feat-grid, .price-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-row { flex-direction: column; }
}
