:root {
  --ink: #2A2E33;
  --ink-deep: #1E2124;
  --ground: #F4F5F6;
  --white: #FFFFFF;
  --line: #E1E4E8;
  --field: #C5C9CE;
  --muted: #555B62;
  --on-dark: #C9CDD2;
  --on-dark-muted: #9CA2A9;
  --brand-blue: #1FA9E1;
  --brand-gray: #979897;
  --accent: #1FA9E1;
  --accent-hover: #1893C5;
  --accent-text: #0E86BD;
  --accent-light: #1FA9E1;
  --display: 'Source Sans 3', system-ui, sans-serif;
  --body: 'Source Sans 3', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { margin: 0; background: var(--ground); color: var(--ink); font-family: var(--body); font-size: 17px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }
h1, h2, h3 { font-family: var(--display); margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }
img, svg { display: block; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 10; background: var(--white); border-bottom: 1px solid var(--line); }
.header-inner { height: 80px; gap: 40px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: inline-block; font-family: var(--display); font-weight: 400; font-size: 34px; letter-spacing: -0.01em; line-height: 1; white-space: pre; }
.lg-g { color: var(--brand-gray); }
.lg-b { color: var(--brand-blue); }
.logo-light .lg-g { color: var(--white); }
.logo img { display: block; height: 40px; width: auto; }
.logo-light img { height: 40px; }
@media (max-width: 760px) { .logo img { height: 32px; } .logo-light img { height: 34px; } }
.logo:hover { color: var(--ink); }
.logo-mark { width: 34px; height: 34px; border-radius: 8px; background: var(--accent); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 16px; }
.nav { flex: 1; display: flex; align-items: center; justify-content: space-between; font-size: 16px; }
.nav-links { display: flex; align-items: center; gap: 32px; margin-left: 24px; }
.nav-links a { font-weight: 500; color: var(--ink); padding: 8px 0; border-bottom: 2px solid transparent; }
.nav-links a:hover { color: var(--ink); border-bottom-color: var(--brand-blue); }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink); }
.nav-phone svg { color: var(--brand-blue); }
.nav-phone:hover { color: var(--accent-text); }
.nav-actions::before { content: ""; width: 1px; height: 28px; background: var(--line); order: -1; }
.nav-cta { height: 44px; padding: 0 20px; display: inline-flex; align-items: center; border-radius: 6px; background: var(--accent); color: var(--white); font-weight: 700; }
.nav-cta:hover { background: var(--accent-hover); color: var(--white); }
.btn-outline { padding: 12px 20px; border: 2px solid var(--brand-blue); border-radius: 8px; font-weight: 600; }
.btn-outline:hover { background: var(--brand-blue); color: var(--white); }
.mobile-actions { display: none; align-items: center; gap: 4px; }
.icon-btn { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; color: var(--ink); cursor: pointer; list-style: none; }
.icon-btn::-webkit-details-marker { display: none; }
.menu { position: relative; }
.menu-panel { position: absolute; right: 0; top: 52px; width: 240px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 8px; display: flex; flex-direction: column; box-shadow: 0 12px 32px rgba(42, 46, 51, .12); }
.menu-panel a { padding: 12px 14px; border-radius: 8px; font-weight: 500; }
.menu-panel a:hover { background: var(--ground); }

/* Buttons */
.btn { height: 56px; padding: 0 28px; display: inline-flex; align-items: center; justify-content: center; border-radius: 6px; letter-spacing: 0.01em; font: inherit; font-size: 17px; font-weight: 600; border: 0; cursor: pointer; }
.btn-accent { background: var(--accent); color: var(--white); font-weight: 700; }
.btn-accent:hover { background: var(--accent-hover); color: var(--white); }
.btn-accent:disabled { opacity: .6; cursor: wait; }
.btn-ghost { border: 2px solid var(--brand-gray); color: var(--white); }
.btn-ghost:hover { border-color: var(--white); color: var(--white); }
.btn-dark { background: var(--accent); color: var(--white); height: 52px; font-size: 16px; font-weight: 700; }
.btn-dark:hover { background: var(--accent-hover); color: var(--white); }
.btn-block { width: 100%; }

/* Hero */
.hero { background: var(--ink); color: var(--white); padding: 96px 0; }
.hero-inner { display: flex; gap: 80px; align-items: center; }
.hero-copy { flex: 1; display: flex; flex-direction: column; gap: 28px; }
.hero h1 { font-size: 64px; line-height: 1.04; letter-spacing: -0.025em; font-weight: 800; }
.lede { font-size: 21px; color: var(--on-dark); max-width: 560px; }
.cta-row { display: flex; gap: 16px; flex-wrap: wrap; padding-top: 8px; }
.eyebrow { font-size: 15px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-text); margin-bottom: 14px; }
.hero .eyebrow { margin: 0; }
.eyebrow-light { color: var(--accent-light); }

.price-card { width: 440px; flex-shrink: 0; padding: 36px; border-radius: 16px; background: var(--white); color: var(--ink); display: flex; flex-direction: column; gap: 22px; }
.price-title { font-family: var(--display); font-size: 24px; font-weight: 700; letter-spacing: -0.01em; }
.price-label { font-size: 15px; font-weight: 600; color: var(--muted); margin-bottom: -16px; }
.price { display: flex; align-items: baseline; gap: 8px; }
.price-num { font-family: var(--display); font-size: 44px; font-weight: 800; letter-spacing: -0.02em; }
.price-unit { font-size: 16px; color: var(--muted); }
.price-card hr { border: 0; height: 1px; background: var(--line); margin: 0; }
.checks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.checks li { display: flex; gap: 12px; align-items: center; }
.checks li::before { content: ""; width: 22px; height: 22px; flex-shrink: 0; background: var(--accent); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l4 4 10-10'/%3E%3C/svg%3E") center / contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l4 4 10-10'/%3E%3C/svg%3E") center / contain no-repeat; }

/* Strip */
.strip { background: var(--white); border-bottom: 1px solid var(--line); color: var(--muted); font-size: 16px; }
.strip-inner { min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-top: 16px; padding-bottom: 16px; }
.stats { display: flex; gap: 48px; }
.stats strong { font-family: var(--display); font-weight: 800; font-size: 22px; color: var(--ink); }
.platforms { display: flex; gap: 28px; font-weight: 600; flex-wrap: wrap; }
.strip-label { margin: 0; }
.strip-label strong { color: var(--ink); font-weight: 700; }

/* Sections */
.section { padding: 112px 0; }
.section-white { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { margin-bottom: 56px; }
.section-head.split { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.section h2, .contact h2 { font-size: 46px; line-height: 1.1; font-weight: 800; }
.section-sub { max-width: 420px; font-size: 18px; color: var(--muted); }

.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.card { padding: 32px; background: var(--white); border: 1px solid var(--line); border-radius: 14px; display: flex; flex-direction: column; gap: 16px; }
.card-icon { width: 48px; height: 48px; flex-shrink: 0; border-radius: 10px; background: var(--ground); display: flex; align-items: center; justify-content: center; }
.card-icon svg, .quote-mark { width: 26px; height: 26px; fill: none; stroke: var(--accent); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 12px; }
.card p { color: var(--muted); }

.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 48px; }
.steps li { border-top: 3px solid var(--brand-blue); padding-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.step-num { font-family: var(--display); font-weight: 800; font-size: 18px; color: var(--accent-text); }
.steps h3 { font-size: 24px; font-weight: 700; }
.steps p { color: var(--muted); line-height: 1.6; }

.about-inner { display: flex; gap: 80px; align-items: center; }
.quote { flex: 1; margin: 0; display: flex; flex-direction: column; gap: 28px; }
.quote-mark { width: 44px; height: 44px; }
.quote blockquote { margin: 0; font-family: var(--display); font-size: 32px; line-height: 1.35; font-weight: 600; letter-spacing: -0.01em; }
.quote figcaption { color: var(--muted); }
.quote figcaption strong { color: var(--ink); }
.local-card { width: 400px; flex-shrink: 0; padding: 36px; border-radius: 14px; background: var(--white); border: 1px solid var(--line); }
.local-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 16px; }
.local-card p { color: var(--muted); line-height: 1.6; }

/* Contact */
.contact { background: var(--ink); color: var(--white); padding: 112px 0; }
.contact-inner { display: flex; gap: 96px; }
.contact-copy { flex: 1; display: flex; flex-direction: column; gap: 28px; }
.contact .lede { font-size: 19px; max-width: 460px; }
.contact-list { margin: 12px 0 0; display: flex; flex-direction: column; gap: 22px; font-size: 18px; }
.contact-list dt { font-size: 14px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--on-dark-muted); margin-bottom: 4px; }
.contact-list dd { margin: 0; }
.contact-list a { font-weight: 600; }
.contact-list a:hover { color: var(--accent-light); }

.form { width: 560px; flex-shrink: 0; padding: 40px; border-radius: 16px; background: var(--white); color: var(--ink); display: flex; flex-direction: column; gap: 20px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form label { display: flex; flex-direction: column; gap: 8px; font-size: 15px; font-weight: 600; }
.form input, .form select, .form textarea { height: 48px; padding: 0 14px; border: 1px solid var(--field); border-radius: 8px; font: inherit; font-weight: 400; background: var(--white); color: var(--ink); }
.form textarea { height: auto; padding: 12px 14px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { min-height: 1.5em; font-size: 15px; color: var(--muted); }

/* Footer */
.footer { background: var(--ink-deep); color: var(--on-dark-muted); padding: 56px 0; font-size: 15px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid #33373C; }
.footer-top p { margin-top: 12px; }
.logo-light, .logo-light:hover { font-size: 28px; }
.logo-light .logo-mark { width: 30px; height: 30px; font-size: 14px; }
.footer-nav { display: flex; gap: 32px; font-weight: 500; }
.footer-nav a { color: var(--on-dark); }
.footer-nav a:hover, .footer-bottom a:hover { color: var(--white); }
.footer-bottom { padding-top: 32px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

a:focus-visible, button:focus-visible, summary:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

/* Tablet */
@media (max-width: 1080px) {
  .nav-links { gap: 22px; margin-left: 8px; }
  .nav-phone { display: none; }
  .nav-actions::before { display: none; }
  .hero-inner, .about-inner, .contact-inner { flex-direction: column; align-items: stretch; gap: 48px; }
  .price-card, .local-card, .form { width: 100%; }
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero h1 { font-size: 52px; }
}

/* Mobile */
@media (max-width: 760px) {
  body { font-size: 16px; }
  html { scroll-padding-top: 64px; }
  .wrap { padding: 0 20px; }
  .header-inner { height: 64px; }
  .logo { font-size: 28px; }
  .logo-mark { width: 28px; height: 28px; font-size: 14px; border-radius: 7px; }
  .nav { display: none; }
  .mobile-actions { display: flex; }

  .hero { padding: 48px 0 40px; }
  .hero-inner { gap: 32px; }
  .hero-copy { gap: 22px; }
  .hero h1 { font-size: 40px; line-height: 1.06; }
  .lede { font-size: 18px; }
  .cta-row { flex-direction: column; gap: 12px; }
  .cta-row .btn { width: 100%; height: 54px; }
  .eyebrow { font-size: 13px; margin-bottom: 10px; }
  .price-card { padding: 24px; gap: 16px; }
  .price-num { font-size: 36px; }

  .strip-inner { padding-top: 28px; padding-bottom: 28px; }
  .stats { width: 100%; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; text-align: center; font-size: 13px; }
  .stats div { display: flex; flex-direction: column; }
  .stats strong { font-size: 20px; }
  .strip-label { font-size: 15px; text-align: center; width: 100%; }
  .platforms { justify-content: center; gap: 10px 20px; font-size: 14px; width: 100%; }

  .section, .contact { padding: 56px 0; }
  .section-head { margin-bottom: 28px; }
  .section-head.split { flex-direction: column; align-items: flex-start; gap: 10px; }
  .section h2, .contact h2 { font-size: 32px; line-height: 1.12; }
  .section-sub { font-size: 17px; }

  .cards { grid-template-columns: 1fr; gap: 14px; }
  .card { flex-direction: row; align-items: flex-start; padding: 22px; gap: 16px; }
  .card-icon { width: 44px; height: 44px; }
  .card h3 { font-size: 19px; margin-bottom: 6px; }

  .steps { grid-template-columns: 1fr; gap: 28px; }
  .steps li { padding-top: 20px; gap: 10px; }
  .steps h3 { font-size: 21px; }

  .quote { gap: 20px; }
  .quote-mark { width: 36px; height: 36px; }
  .quote blockquote { font-size: 23px; line-height: 1.38; }
  .local-card { padding: 22px; }

  .contact-inner { gap: 32px; }
  .contact-copy { gap: 20px; }
  .form { padding: 22px; gap: 16px; }
  .form-grid { grid-template-columns: 1fr; }

  .footer { padding: 40px 0; font-size: 14px; }
  .footer-top { flex-direction: column; padding-bottom: 24px; }
  .footer-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 16px; font-size: 16px; }
  .footer-nav a { padding: 10px 0; }
  .footer-bottom { flex-direction: column; padding-top: 24px; }
}

/* SMS consent checkbox */
.form label.check { flex-direction: row; align-items: flex-start; gap: 12px; font-weight: 400; font-size: 14px; line-height: 1.5; color: var(--muted); }
.form label.check input { width: 20px; height: 20px; padding: 0; margin-top: 1px; flex-shrink: 0; accent-color: var(--accent); }
.form label.check a { color: var(--accent-text); text-decoration: underline; }

.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--on-dark); }

/* Legal pages */
.legal { padding: 80px 0 112px; }
.legal-inner { max-width: 760px; }
.legal h1 { font-size: 48px; line-height: 1.1; font-weight: 800; }
.legal-date { color: var(--muted); margin: 12px 0 40px; }
.legal h2 { font-size: 24px; font-weight: 700; margin: 40px 0 12px; }
.legal p, .legal li { line-height: 1.65; }
.legal p + p { margin-top: 12px; }
.legal ul { padding-left: 22px; margin: 12px 0; display: flex; flex-direction: column; gap: 8px; }
.legal a { color: var(--accent-text); text-decoration: underline; }
.legal .callout { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 20px 24px; margin-top: 16px; }
@media (max-width: 760px) {
  .legal { padding: 48px 0 64px; }
  .legal h1 { font-size: 36px; }
  .legal h2 { font-size: 21px; margin-top: 32px; }
  .footer-legal { flex-wrap: wrap; gap: 16px; }
}

/* Hero: banner style */
.hero { position: relative; background-color: #16181B; background-image: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,.10), rgba(0,0,0,0) 60%), var(--hero-photo, none); background-size: cover; background-position: center; padding: 120px 0 112px; }
.hero::before { content: ""; position: absolute; inset: 0; background: rgba(10,12,14,.55); pointer-events: none; }
.hero-center { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px; }
.hero-kicker { font-size: 26px; color: #DDE7EC; margin: 0; }
.hero-logo-wrap { margin: 0; line-height: 0; }
.hero-logo { display: block; width: min(620px, 86vw); height: auto; }
.hero-call { font-size: 34px; font-weight: 500; color: var(--white); letter-spacing: .01em; }
.hero-call:hover { color: var(--brand-blue); }
.hero .lede { max-width: 640px; font-size: 19px; margin-top: 8px; }
.hero .cta-row { justify-content: center; }
@media (max-width: 760px) {
  .hero { padding: 64px 0 56px; }
  .hero-center { gap: 16px; }
  .hero-kicker { font-size: 19px; }
  .hero-call { font-size: 22px; }
  .hero .lede { font-size: 17px; }
}

.hero .hero-h1 { font-size: 24px; font-weight: 600; line-height: 1.3; letter-spacing: 0; color: var(--white); margin-top: 8px; max-width: 680px; }
.hero .lede { margin-top: -4px; }
@media (max-width: 760px) { .hero .hero-h1 { font-size: 20px; } }

.footer-social { display: flex; gap: 18px; margin-top: 14px; }
.footer-social a { color: var(--on-dark); font-weight: 500; }
.footer-social a:hover { color: var(--brand-blue); }
