:root {
    --navy: #10273d;
    --navy-deep: #071827;
    --teal: #087f75;
    --teal-dark: #05645c;
    --sky: #e8f5f3;
    --sand: #f5f1e9;
    --white: #ffffff;
    --text: #183247;
    --muted: #5d7180;
    --line: #d9e2e8;
    --radius: 22px;
    --shadow: 0 20px 55px rgba(7, 24, 39, .12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: -80px;
    z-index: 1000;
    padding: 12px 16px;
    color: var(--white);
    background: var(--navy-deep);
}

.skip-link:focus { top: 16px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(217, 226, 232, .9);
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(16px);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    font-weight: 800;
    text-decoration: none;
}

.brand img { width: 54px; height: 54px; object-fit: contain; }
.main-nav, .header-actions { display: flex; align-items: center; gap: 20px; }
.main-nav a, .text-link, .language-link { text-decoration: none; font-size: .94rem; font-weight: 650; }
.main-nav a:hover, .text-link:hover, .language-link:hover { color: var(--teal); }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 19px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 750;
    text-decoration: none;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.button:hover { transform: translateY(-1px); }
.button-primary { color: var(--white); background: var(--teal); }
.button-primary:hover { background: var(--teal-dark); }
.button-secondary { color: var(--navy); border-color: var(--line); background: var(--white); }
.button-light { color: var(--navy-deep); background: var(--white); }
.button-large { min-height: 54px; padding: 14px 24px; }

.hero {
    padding: 86px 0 74px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fbfc 0%, var(--sky) 52%, #eef4fb 100%);
}

.hero-grid, .emergency-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr);
    align-items: center;
    gap: 68px;
}

.eyebrow {
    margin: 0 0 13px;
    color: var(--teal);
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

h1, h2, h3 { color: var(--navy-deep); line-height: 1.1; }
h1 { max-width: 760px; margin: 0; font-size: clamp(2.65rem, 5.5vw, 4.65rem); letter-spacing: -.045em; }
h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -.035em; }
h3 { margin: 0; font-size: 1.35rem; }

.hero-intro {
    max-width: 690px;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: 1.18rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.trust-note {
    max-width: 690px;
    margin-top: 32px;
    padding: 18px 20px;
    display: grid;
    gap: 4px;
    border-left: 4px solid var(--teal);
    border-radius: 0 14px 14px 0;
    background: rgba(255, 255, 255, .72);
}

.trust-note span { color: var(--muted); font-size: .94rem; }

.hero-visual { position: relative; }
.hero-visual > img, .emergency-grid > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }

.scan-card {
    position: absolute;
    left: -34px;
    bottom: 26px;
    max-width: 340px;
    padding: 17px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(217, 226, 232, .9);
    border-radius: 17px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow);
}

.scan-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: grid;
    place-items: center;
    padding: 4px;
    border: 1px solid rgba(9, 43, 66, .16);
    border-radius: 11px;
    background: var(--white);
}

.scan-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.scan-icon:focus-visible {
    outline: 3px solid var(--teal);
    outline-offset: 3px;
}

.scan-card div { display: grid; gap: 3px; }
.scan-card span:last-child { color: var(--muted); font-size: .82rem; }

.section { padding: 88px 0; }
.section .container > h2 { max-width: 760px; }

.steps-grid {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.step-card {
    min-height: 250px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.step-card > span {
    width: 42px;
    height: 42px;
    margin-bottom: 28px;
    display: grid;
    place-items: center;
    color: var(--white);
    border-radius: 50%;
    background: var(--teal);
    font-weight: 850;
}

.step-card p, .audience-grid p, .section-emergency p, .final-cta p { color: var(--muted); }

.section-emergency { color: var(--white); background: var(--navy-deep); }
.section-emergency h2, .section-emergency .eyebrow { color: var(--white); }
.section-emergency p { max-width: 650px; color: #c9d8e4; font-size: 1.08rem; }

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.audience-grid article {
    min-height: 300px;
    padding: 38px;
    border-radius: var(--radius);
    background: var(--sand);
}

.audience-grid article:last-child { background: var(--sky); }
.inline-link { color: var(--teal-dark); font-weight: 800; text-decoration: none; }

.final-cta { padding: 74px 0; background: #f8fbfc; }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.final-cta p { margin-bottom: 0; }

.site-footer { padding: 30px 0; color: #b7c8d5; background: var(--navy-deep); }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; font-size: .88rem; }

.simple-page { width: min(760px, calc(100% - 40px)); margin: 100px auto; }

@media (max-width: 1080px) {
    .main-nav { display: none; }
    .hero-grid, .emergency-grid { grid-template-columns: 1fr; }
    .hero-visual { max-width: 760px; }
    .scan-card { left: 20px; }
}

@media (max-width: 760px) {
    .container { width: min(100% - 28px, 1180px); }
    .site-header { position: static; }
    .header-inner { min-height: 74px; }
    .brand span, .text-link, .header-actions .button { display: none; }
    .header-actions { margin-left: auto; }
    .hero { padding: 58px 0; }
    .hero-grid { gap: 42px; }
    .hero-actions .button { width: 100%; }
    .scan-card { position: relative; left: auto; bottom: auto; max-width: none; margin-top: 14px; }
    .steps-grid, .audience-grid { grid-template-columns: 1fr; }
    .section { padding: 64px 0; }
    .final-cta-inner, .footer-inner { align-items: flex-start; flex-direction: column; }
}

.plans-hero {

    padding: 92px 0 72px;

    color: var(--white);

    background: linear-gradient(135deg, var(--navy-deep), var(--navy));

}



.plans-hero-inner {

    max-width: 880px;

    text-align: center;

}



.plans-hero h1 {

    margin-inline: auto;

    max-width: 900px;

}



.plans-hero p:last-child {

    margin: 22px auto 0;

    max-width: 760px;

    color: #d2e1ea;

    font-size: 1.1rem;

}



.plans-section h2,

.comparison-section h2 {

    max-width: 820px;

}



.plans-grid {

    margin-top: 42px;

    display: grid;

    gap: 24px;

}



.plans-grid-consumer,

.plans-grid-agency {

    grid-template-columns: repeat(3, minmax(0, 1fr));

}



.plan-card {

    position: relative;

    padding: 30px;

    display: flex;

    flex-direction: column;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    background: var(--white);

    box-shadow: 0 14px 40px rgba(12, 46, 68, .08);

}



.plan-card-emergency {

    border: 2px solid #b83b3b;

}



.plan-card-agency {

    border-top: 5px solid var(--navy);

}



.plan-badge {

    position: absolute;

    top: -14px;

    right: 22px;

    padding: 7px 13px;

    border-radius: 999px;

    color: var(--white);

    background: #b83b3b;

    font-size: .78rem;

    font-weight: 800;

    letter-spacing: .03em;

}



.plan-badge-family {

    background: var(--teal);

}



.plan-card-heading {

    min-height: 128px;

}



.plan-card-heading h3 {

    margin-bottom: 10px;

}



.plan-card-heading p {

    margin-bottom: 0;

    color: var(--muted);

}



.plan-price {

    margin: 24px 0 14px;

    display: flex;

    align-items: baseline;

    flex-wrap: wrap;

    gap: 7px;

}



.plan-price strong {

    color: var(--navy-deep);

    font-size: 2.15rem;

    line-height: 1;

}



.plan-price span,

.plan-price small {

    color: var(--muted);

}



.plan-price small {

    width: 100%;

}



.plan-term {

    min-height: 52px;

    padding: 12px 14px;

    border-radius: 12px;

    background: #f3f7f9;

    font-size: .91rem;

}



.plan-feature-list {

    margin: 10px 0 28px;

    padding: 0;

    display: grid;

    gap: 11px;

    list-style: none;

}



.plan-feature-list li {

    position: relative;

    padding-left: 25px;

    color: #344d5e;

}



.plan-feature-list li::before {

    content: "✓";

    position: absolute;

    left: 0;

    color: var(--teal);

    font-weight: 900;

}



.plan-button {

    margin-top: auto;

    width: 100%;

}



.button-emergency {

    color: var(--white);

    background: #b83b3b;

}



.button-emergency:hover {

    background: #932d2d;

}



.comparison-section {

    padding: 88px 0;

    background: #eef4f6;

}



.comparison-table-wrap {

    margin-top: 36px;

    overflow-x: auto;

    border-radius: var(--radius);

    box-shadow: var(--shadow);

}



.comparison-table {

    width: 100%;

    border-collapse: collapse;

    background: var(--white);

}



.comparison-table th,

.comparison-table td {

    width: 50%;

    padding: 20px 24px;

    border: 1px solid var(--border);

    text-align: left;

    vertical-align: top;

}



.comparison-table th {

    color: var(--white);

    background: var(--navy);

    font-size: 1.08rem;

}



.comparison-table th:last-child {

    background: #8f3333;

}



.comparison-note {

    margin: 28px 0 0;

    max-width: 900px;

}



.plans-agency-section {

    background: var(--white);

}



@media (max-width: 980px) {

    .plans-grid-consumer,

    .plans-grid-agency {

        grid-template-columns: 1fr;

    }



    .plan-card-heading,

    .plan-term {

        min-height: 0;

    }

}



@media (max-width: 620px) {

    .plans-hero {

        padding: 64px 0 54px;

    }



    .plan-card {

        padding: 24px;

    }



    .comparison-table th,

    .comparison-table td {

        min-width: 250px;

        padding: 16px;

    }

}

.emergency-entry-hero {

    padding: 88px 0;

    background: linear-gradient(135deg, #fff7f3, #f3f8fa);

}



.emergency-entry-grid {

    display: grid;

    grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);

    align-items: start;

    gap: 52px;

}



.emergency-entry-intro {

    max-width: 720px;

    font-size: 1.12rem;

}



.emergency-notice {

    margin-top: 30px;

    max-width: 720px;

    padding: 20px;

    display: grid;

    gap: 5px;

    border-left: 5px solid #b83b3b;

    border-radius: 0 14px 14px 0;

    background: var(--white);

}



.emergency-notice span {

    color: var(--muted);

}



.emergency-summary-card {

    padding: 30px;

    border: 2px solid #b83b3b;

    border-radius: var(--radius);

    background: var(--white);

    box-shadow: var(--shadow);

}



.emergency-summary-price {

    margin: 18px 0;

    display: flex;

    align-items: baseline;

    gap: 8px;

}



.emergency-summary-price strong {

    color: #8f3333;

    font-size: 2.3rem;

}



.emergency-summary-price span {

    color: var(--muted);

}



.emergency-account-intro {

    max-width: 760px;

}



.emergency-account-grid {

    margin-top: 38px;

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 24px;

}



.emergency-action-card {

    padding: 32px;

    display: flex;

    flex-direction: column;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    background: var(--white);

    box-shadow: 0 14px 40px rgba(12, 46, 68, .08);

}



.emergency-action-primary {

    border-top: 5px solid #b83b3b;

}



.emergency-action-card .button {

    margin-top: auto;

}



.emergency-difference-grid {

    margin-top: 36px;

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 24px;

}



.emergency-difference-grid article {

    padding: 30px;

    border-radius: var(--radius);

    background: var(--white);

}



@media (max-width: 880px) {

    .emergency-entry-grid,

    .emergency-account-grid,

    .emergency-difference-grid {

        grid-template-columns: 1fr;

    }

}

.start-hero {

    padding: 86px 0 68px;

    color: var(--white);

    background: linear-gradient(135deg, var(--navy-deep), var(--navy));

}



.start-hero-inner {

    max-width: 860px;

    text-align: center;

}



.start-hero-inner h1 {

    margin-inline: auto;

}



.start-hero-inner p:last-child {

    margin: 20px auto 0;

    max-width: 720px;

    color: #d2e1ea;

    font-size: 1.08rem;

}



.start-options-section {

    background: #f4f8fa;

}



.start-options-grid {

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 26px;

}



.start-option-card {

    padding: 34px;

    display: flex;

    flex-direction: column;

    border: 1px solid var(--border);

    border-top: 5px solid var(--teal);

    border-radius: var(--radius);

    background: var(--white);

    box-shadow: 0 14px 40px rgba(12, 46, 68, .08);

}



.start-option-emergency {

    border-top-color: #b83b3b;

}



.start-option-agency {

    border-top-color: var(--navy);

}



.start-option-label {

    margin-bottom: 10px;

    color: var(--teal-dark);

    font-size: .78rem;

    font-weight: 900;

    letter-spacing: .08em;

    text-transform: uppercase;

}



.start-option-emergency .start-option-label {

    color: #9b3030;

}



.start-option-card .button {

    margin-top: auto;

}



@media (max-width: 820px) {

    .start-options-grid {

        grid-template-columns: 1fr;

    }

}

/* Guardian Locator launch banner */
.availability-banner {
    position: relative;
    z-index: 100;
    min-height: 38px;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #ffffff;
    background:
        linear-gradient(
            90deg,
            #071f33 0%,
            #0a3951 45%,
            #087f75 100%
        );
    font-size: .82rem;
    letter-spacing: .015em;
    text-align: center;
}

.availability-banner strong {
    font-weight: 900;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.availability-banner span:last-child {
    color: rgba(255, 255, 255, .82);
}

.availability-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 999px;
    background: #53e3c1;
    box-shadow: 0 0 0 5px rgba(83, 227, 193, .14);
}

/* Strong SaaS pricing presentation */
.plans-section {
    position: relative;
    overflow: hidden;
}

.plans-section::before {
    content: "";
    position: absolute;
    top: 80px;
    left: 50%;
    width: 880px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(20, 154, 139, .10),
        rgba(20, 154, 139, 0) 68%
    );
    transform: translateX(-50%);
    pointer-events: none;
}

.plans-section > .container {
    position: relative;
    z-index: 1;
}

.plans-grid {
    align-items: stretch;
}

.plan-card {
    overflow: hidden;
    min-width: 0;
    border: 1px solid rgba(16, 54, 76, .12);
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(249, 252, 253, 1) 100%
        );
    box-shadow:
        0 22px 55px rgba(7, 31, 51, .10),
        0 3px 10px rgba(7, 31, 51, .04);
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.plan-card:hover {
    transform: translateY(-7px);
    border-color: rgba(8, 127, 117, .34);
    box-shadow:
        0 30px 70px rgba(7, 31, 51, .16),
        0 5px 14px rgba(7, 31, 51, .06);
}

.plan-card::after {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--teal), #4ccfb8);
}

.plan-card-emergency::after {
    background: linear-gradient(90deg, #a92828, #e45d4f);
}

.plan-card-agency::after {
    background: linear-gradient(90deg, var(--navy), #176b88);
}

.plan-card-heading h3 {
    color: var(--navy-deep);
    font-size: 1.55rem;
}

.plan-price {
    padding: 18px 0;
    border-top: 1px solid rgba(16, 54, 76, .08);
    border-bottom: 1px solid rgba(16, 54, 76, .08);
}

.plan-price strong {
    font-size: clamp(2rem, 3vw, 2.65rem);
    letter-spacing: -.045em;
}

.plan-term {
    border: 1px solid rgba(8, 127, 117, .10);
    background:
        linear-gradient(
            135deg,
            rgba(8, 127, 117, .07),
            rgba(23, 107, 136, .04)
        );
}

.plan-card-emergency .plan-term {
    border-color: rgba(184, 59, 59, .13);
    background:
        linear-gradient(
            135deg,
            rgba(184, 59, 59, .08),
            rgba(228, 93, 79, .04)
        );
}

.plan-feature-list li {
    line-height: 1.45;
}

.plan-button {
    min-height: 50px;
    justify-content: center;
}

.comparison-table-wrap {
    border: 1px solid rgba(16, 54, 76, .10);
    background: var(--white);
}

.comparison-table tbody tr:nth-child(even) {
    background: #f6fafb;
}

.comparison-table td {
    line-height: 1.5;
}

@media (max-width: 620px) {
    .availability-banner {
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 5px 8px;
        padding-inline: 14px;
    }

    .availability-banner span:last-child {
        width: 100%;
    }
}
