* { box-sizing: border-box; } html { scroll-behavior: smooth; } body { margin: 0; font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: #1e293b; background: #ffffff; line-height: 1.5; } a { color: inherit; text-decoration: none; } .container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; } .site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.94); backdrop-filter: blur(10px); border-bottom: 1px solid #e2e8f0; } .header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 0; } .brand { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.03em; color: #1e3a8a; } .brand-sub, .footer-text, .legal { color: #64748b; } .brand-sub { font-size: .85rem; margin-top: .15rem; } .hero { background: radial-gradient(circle at top left, #eff6ff 0%, #ffffff 45%, #dbeafe 100%); padding: 4rem 0 3rem; } .hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: start; } .eyebrow { display: inline-flex; align-items: center; padding: .5rem .9rem; border-radius: 999px; background: #ffffff; border: 1px solid #e2e8f0; box-shadow: 0 4px 18px rgba(15, 23, 42, .05); color: #475569; font-size: .92rem; margin-bottom: 1rem; } .eyebrow-dark { background: transparent; border: 0; box-shadow: none; padding: 0; text-transform: uppercase; letter-spacing: .18em; font-weight: 700; font-size: .78rem; } .hero h1 { margin: 0; font-size: clamp(2.5rem, 6vw, 4.35rem); line-height: .98; letter-spacing: -0.05em; } .lead { margin-top: 1.4rem; font-size: 1.1rem; color: #475569; max-width: 44rem; } .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; } .btn { display: inline-flex; align-items: center; justify-content: center; padding: .95rem 1.25rem; border-radius: 18px; font-weight: 700; transition: .2s ease; border: 1px solid transparent; } .btn-primary { background: #2563eb; color: #ffffff; box-shadow: 0 10px 26px rgba(37, 99, 235, .25); } .btn-secondary { background: #ffffff; color: #1e3a8a; border-color: #93c5fd; } .btn-light { background: #ffffff; color: #1e3a8a; } .btn-full { width: 100%; } .mini-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: .9rem; margin-top: 2.2rem; } .mini-card, .info-card, .feature-card, .form-card { border: 1px solid #e2e8f0; background: #ffffff; border-radius: 28px; box-shadow: 0 8px 28px rgba(15, 23, 42, .05); } .mini-card { padding: 1rem; } .mini-card strong { display: block; margin-bottom: .3rem; font-size: .95rem; } .mini-card span { color: #64748b; font-size: .92rem; } .form-card { padding: 1.6rem; } .form-card h2 { margin: 0 0 .5rem; font-size: 1.7rem; letter-spacing: -0.03em; } .form-card p { margin: 0 0 1.25rem; color: #64748b; } .lead-form { display: grid; gap: 1rem; } .field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; } .field label { display: block; margin-bottom: .4rem; font-weight: 600; font-size: .95rem; } .field input, .field select, .field textarea { width: 100%; padding: .95rem 1rem; border-radius: 16px; border: 1px solid #93c5fd; font: inherit; color: #1e293b; background: #ffffff; } .field textarea { resize: vertical; } .legal { font-size: .76rem; margin: .25rem 0 0; } .section { padding: 4.5rem 0; } .alt { background: #f8fafc; } .section-head h2, .two-col h2, .final-cta h2 { margin: .35rem 0 0; font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1.05; letter-spacing: -0.04em; } .card-grid { display: grid; gap: 1.2rem; margin-top: 2rem; } .card-grid.four { grid-template-columns: repeat(4, 1fr); } .card-grid.three { grid-template-columns: repeat(3, 1fr); } .info-card, .feature-card { padding: 1.4rem; } .info-card h3, .feature-card h3, .dark-cta h3 { margin: 0 0 .5rem; font-size: 1.15rem; letter-spacing: -0.02em; } .info-card p, .feature-card p, .dark-cta p, .section-text, .final-cta p { margin: 0; color: #64748b; } .two-col { display: grid; grid-template-columns: 1.05fr .95fr; gap: 1.5rem; align-items: start; } .check-list { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: .8rem; } .check-list li { padding-left: 1.6rem; position: relative; } .check-list li::before { content: "•"; position: absolute; left: .35rem; top: -.05rem; font-size: 1.2rem; } .dark-cta { background: #1e3a8a; color: #ffffff; border-radius: 28px; padding: 1.7rem; box-shadow: 0 12px 28px rgba(30, 58, 138, .28); } .dark-cta p, .dark-cta li { color: #bfdbfe; } .dark-cta ul { margin: 1rem 0 0; padding-left: 1rem; } .final-cta { background: #1e3a8a; color: #ffffff; border-radius: 32px; padding: 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; } .final-cta p { color: #bfdbfe; max-width: 44rem; } .site-footer { border-top: 1px solid #e2e8f0; background: #ffffff; } .footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.4rem 0 2rem; } .footer-brand { font-size: 1.8rem; } .footer-contact a { color: #2563eb; font-weight: 600; } @media (max-width: 980px) { .hero-grid, .two-col, .card-grid.four, .card-grid.three, .mini-cards { grid-template-columns: 1fr; } .final-cta, .footer-inner, .header-inner { flex-direction: column; align-items: flex-start; } } @media (max-width: 640px) { .field-grid { grid-template-columns: 1fr; } .hero { padding-top: 2rem; } }
.hp-field { display: none; }

/* Responsive refinements */
html { overflow-x: hidden; }
body { overflow-wrap: break-word; }
.hero-copy, .form-card, .field, .final-cta > div, .footer-inner > div { min-width: 0; }
.field input, .field select, .field textarea { max-width: 100%; }

@media (max-width: 980px) and (min-width: 641px) {
  .card-grid.four, .card-grid.three, .mini-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .header-inner { flex-direction: row; align-items: center; }
  .footer-inner { flex-direction: row; align-items: flex-start; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 1.25rem, 1120px); }
  .site-header { position: static; }
  .header-inner { gap: .75rem; padding: .75rem 0; }
  .brand { font-size: clamp(1.65rem, 8vw, 2.1rem); line-height: 1; }
  .brand-sub { font-size: .75rem; }
  .header-inner > .btn { width: 100%; }
  .hero { padding: 2rem 0 2.5rem; }
  .hero h1 { font-size: clamp(2.35rem, 13vw, 3.4rem); }
  .lead { font-size: 1rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; gap: .75rem; margin-top: 1.5rem; }
  .hero-actions .btn { width: 100%; }
  .mini-cards { gap: .7rem; margin-top: 1.5rem; }
  .form-card, .info-card, .feature-card, .dark-cta { border-radius: 22px; }
  .form-card { padding: 1.15rem; }
  .field input, .field select, .field textarea { font-size: 16px; }
  .section { padding: 3rem 0; }
  .card-grid { margin-top: 1.4rem; }
  .final-cta { width: calc(100% - 1.25rem); padding: 1.35rem; border-radius: 24px; }
  .final-cta .btn { width: 100%; }
  .footer-inner { padding-bottom: 1.4rem; }
  .footer-brand { font-size: 1.55rem; }
  .footer-contact { max-width: 100%; }
  .footer-contact a { overflow-wrap: anywhere; }
}

@media (max-width: 360px) {
  .container { width: min(100% - 1rem, 1120px); }
  .eyebrow { border-radius: 16px; font-size: .82rem; }
  .hero h1 { font-size: 2.25rem; }
  .btn { padding-inline: .9rem; }
  .final-cta { width: calc(100% - 1rem); }
}
