:root {
  --ink: #00306e;
  --muted: #5c6b85;
  --bg: #ffffff;
  --bg-alt: #f3f7fd;
  --primary: #00306e;
  --accent: #5aaefc;
  --border: #e3eaf5;
  --radius: 16px;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: "Montserrat", "Segoe UI", system-ui, sans-serif; color: var(--ink); background: var(--bg); line-height: 1.6; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

header.site { position: sticky; top: 0; background: rgba(255,255,255,.95); backdrop-filter: blur(6px); border-bottom: 1px solid var(--border); z-index: 10; }
header.site .wrap { display: flex; align-items: center; justify-content: space-between; padding-block: 14px; gap: 16px; }
.logo { display: flex; align-items: center; gap: 5px; text-decoration: none; }
.logo img { height: 34px; }
.logo sup { align-self: flex-start; margin-top: 2px; font-weight: 800; font-size: .72rem; color: var(--accent); letter-spacing: .03em; text-transform: uppercase; }
nav.main { display: none; gap: 26px; }
nav.main a { text-decoration: none; color: var(--muted); font-weight: 600; font-size: .93rem; }
nav.main a:hover, nav.main a.active { color: var(--accent); }
@media (min-width: 780px) { nav.main { display: flex; } }
.btn { display: inline-block; padding: 12px 24px; border-radius: 999px; font-weight: 700; text-decoration: none; font-size: .92rem; border: none; cursor: pointer; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #3f9bf5; }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--border); }

section { padding-block: 72px; }
section.alt { background: var(--bg-alt); }
section.page-hero { padding-top: 56px; padding-bottom: 48px; text-align: center; }
section.page-hero h1 { font-size: clamp(1.9rem, 4.5vw, 2.8rem); line-height: 1.15; letter-spacing: -.01em; margin: 0 0 16px; }
section.page-hero p.lead { font-size: 1.08rem; color: var(--muted); max-width: 620px; margin: 0 auto; }

.hero { text-align: center; padding-top: 60px; }
.eyebrow { display: inline-block; background: #eaf3ff; color: var(--accent); font-weight: 700; font-size: .8rem; padding: 6px 16px; border-radius: 999px; margin-bottom: 22px; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.1rem); line-height: 1.15; letter-spacing: -.01em; margin: 0 0 18px; }
.hero p.lead { font-size: 1.1rem; color: var(--muted); max-width: 560px; margin: 0 auto 40px; }

.grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.feat-card { text-align: left; background: #fff; }
.feat-card.bordered { border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.feat-card .icon { width: 46px; height: 46px; border-radius: 12px; background: #eaf3ff; color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 1.35rem; margin-bottom: 16px; font-weight: 800; }
.feat-card h3 { margin: 0 0 8px; font-size: 1.02rem; }
.feat-card p { margin: 0; color: var(--muted); font-size: .9rem; }

.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }

.split { display: grid; gap: 48px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split img { border-radius: var(--radius); box-shadow: 0 20px 50px -20px rgba(0,48,110,.35); }
.split .eyebrow { margin-bottom: 16px; }
.split h2, .split h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); letter-spacing: -.01em; margin: 0 0 16px; }
.split ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.split ul li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); font-size: .95rem; }
.split ul li::before { content: "✓"; color: var(--accent); font-weight: 800; flex-shrink: 0; }
.split p.body { color: var(--muted); margin: 0 0 16px; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); letter-spacing: -.01em; margin: 0; }
.section-head p { color: var(--muted); margin: 14px 0 0; }

.testimonials .grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.testimonial { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.testimonial .who-row { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.testimonial .who-row img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.testimonial .who-row .avatar-fallback { width: 52px; height: 52px; border-radius: 50%; background: #eaf3ff; color: var(--accent); display: flex; align-items: center; justify-content: center; font-weight: 800; }
.testimonial .who { font-weight: 700; font-size: .95rem; }
.testimonial .role { color: var(--muted); font-size: .82rem; }
.testimonial p.quote { margin: 0; color: var(--ink); font-size: .95rem; }

.apps { text-align: center; }
.apps .phone { max-width: 260px; margin: 0 auto 32px; }
.apps .cta-row img { height: 52px; width: auto; }
.apps .cta-row a { display: inline-block; }

.cta-banner { background: linear-gradient(135deg, var(--primary), #0a58c2); color: #fff; border-radius: 24px; padding: 56px 32px; text-align: center; }
.cta-banner h2 { margin: 0 0 14px; font-size: clamp(1.5rem, 3.5vw, 2rem); }
.cta-banner p { margin: 0 0 28px; opacity: .9; }
.cta-banner .btn-primary { background: #fff; color: var(--primary); }
.cta-banner .btn-primary:hover { background: #eaf3ff; }

.partners .grid { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); align-items: center; }
.partners img { max-height: 60px; width: auto; margin: 0 auto; filter: grayscale(1); opacity: .75; }

/* Pricing */
.pricing-grid { display: grid; gap: 28px; grid-template-columns: 1fr; max-width: 860px; margin: 0 auto; }
@media (min-width: 760px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
.price-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; }
.price-card.featured { border-color: var(--accent); box-shadow: 0 20px 50px -25px rgba(90,174,252,.6); }
.price-card h3 { margin: 0 0 8px; font-size: 1.1rem; }
.price-card p.desc { color: var(--muted); font-size: .9rem; margin: 0 0 20px; }
.price-card .amount { font-size: 2.4rem; font-weight: 800; margin: 0; }
.price-card .amount span { font-size: 1rem; font-weight: 600; color: var(--muted); }
.price-card .fine { color: var(--muted); font-size: .82rem; margin: 6px 0 24px; }
.price-card .btn { margin-top: auto; text-align: center; }
.included { max-width: 760px; margin: 40px auto 0; }
.included ul { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px 24px; }
.included ul li { display: flex; gap: 10px; color: var(--muted); font-size: .9rem; }
.included ul li::before { content: "✓"; color: var(--accent); font-weight: 800; }

.faq { max-width: 720px; margin: 0 auto; display: grid; gap: 20px; }
.faq-item { border-bottom: 1px solid var(--border); padding-bottom: 20px; }
.faq-item h3 { margin: 0 0 8px; font-size: 1rem; }
.faq-item p { margin: 0; color: var(--muted); font-size: .92rem; }

footer.site { border-top: 1px solid var(--border); padding-block: 40px; }
footer.site .wrap { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; color: var(--muted); font-size: .88rem; }
footer.site img { height: 28px; }
