* { box-sizing: border-box; }
html { min-width: 320px; scroll-behavior: smooth; overflow-x: hidden; }
body {
    margin: 0;
    max-width: 100%;
    overflow-x: hidden;
    font-family: "Montserrat", Arial, sans-serif;
    color: var(--color-navy);
    background: #fff;
    line-height: 1.45;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { display: block; max-width: 100%; }
main { min-height: calc(100vh - var(--header-height)); }
.page-shell {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - var(--header-height));
    background:
        radial-gradient(circle at 0 25%, rgba(0,82,255,.18) 0 2px, transparent 3px) 0 0 / 18px 18px,
        radial-gradient(circle at 100% 50%, rgba(0,82,255,.16) 0 2px, transparent 3px) 0 0 / 18px 18px,
        linear-gradient(120deg, #fff 0%, #f8fbff 48%, #eef5ff 100%);
}
.page-shell::before {
    content: "";
    position: absolute;
    inset: 0 auto auto -16%;
    width: 56%;
    height: 80%;
    background: radial-gradient(ellipse at bottom left, #0052ff 0 35%, transparent 36%);
    opacity: .95;
    pointer-events: none;
}
.page-shell::after {
    content: "";
    position: absolute;
    right: -18%;
    top: 4%;
    width: 55%;
    height: 80%;
    border-radius: 50%;
    background: rgba(225, 235, 251, .6);
    pointer-events: none;
}
.container { width: min(var(--container), calc(100% - 72px)); margin: 0 auto; position: relative; z-index: 1; }
.section-title {
    margin: 0;
    font-size: clamp(44px, 5vw, 76px);
    line-height: .92;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 0;
    color: var(--color-navy);
    text-transform: uppercase;
}
.section-title span, .blue { color: var(--color-blue); }
.title-swoosh {
    width: 520px;
    max-width: 92%;
    height: 28px;
    margin: 12px 0 22px;
    border-top: 6px solid var(--color-blue);
    border-radius: 50%;
    transform: skewX(-12deg);
}
.kicker {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 18px;
    color: var(--color-blue);
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.kicker::before {
    content: "";
    width: 14px;
    height: 22px;
    background: var(--color-blue);
    transform: skewX(-25deg);
}
.lead { color: #2b3b63; font-size: 20px; line-height: 1.55; }
.icon {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: currentColor;
    flex: 0 0 auto;
}
.icon::before { font-size: 29px; line-height: 1; }
.icon-phone::before { content: "☎"; }
.icon-calendar::before { content: "▣"; }
.icon-shield::before { content: "♢"; }
.icon-star::before { content: "☆"; }
.icon-like::before { content: "♡"; transform: rotate(180deg); }
.icon-pulse::before { content: "⌁"; }
.icon-car::before { content: "▰"; }
.icon-user::before { content: "♙"; }
.icon-info::before { content: "i"; font-weight: 800; }
.icon-clock::before { content: "◴"; }
.icon-pig::before { content: "♙"; }
.icon-truck::before { content: "▭"; }

/* CTA mobile stack — see cta-strip.css */

/* Lucide icons */
.ui-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-blue);
    flex-shrink: 0;
    vertical-align: middle;
}
.ui-icon svg {
    width: 100% !important;
    height: 100% !important;
    stroke: currentColor;
}
.ui-icon--light,
.ui-icon--white {
    color: #fff;
}
.ui-icon--blue {
    color: #0047ff;
}
.ui-icon--nav {
    color: var(--color-blue);
}
.ui-icon--nav-white {
    color: #fff;
}
.hero__badge-icon .ui-icon {
    color: var(--blue-dark);
}
.simple-hero {
    min-height: 730px;
    padding: 72px 0 24px;
}
.simple-hero__intro { max-width: 620px; }
.simple-hero__intro .lead { max-width: 570px; }
.muted { color: var(--color-muted); }
.text-center { text-align: center; }
