:root {
    --black: #0b1018;
    --ink: #171827;
    --muted: #5f6470;
    --soft-grey: #f4f6fa;
    --mist: #eef3f8;
    --line: #dce2ea;
    --white: #ffffff;
    --gold: #7c3f98;
    --gold-dark: #2f5d9f;
    --brand-purple: #7c3f98;
    --brand-blue: #2f5d9f;
    --brand-green: #118b52;
    --glass: rgba(255, 255, 255, 0.68);
    --glass-strong: rgba(255, 255, 255, 0.82);
    --glass-dark: rgba(8, 13, 24, 0.46);
    --glass-line: rgba(255, 255, 255, 0.34);
    --shadow: 0 24px 70px rgba(18, 28, 48, 0.14);
    --shadow-strong: 0 34px 90px rgba(8, 13, 24, 0.32);
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(180deg, #ffffff 0%, #f9fbfd 38%, #ffffff 100%);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.modal-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

::selection {
    background: rgba(47, 93, 159, 0.18);
    color: var(--black);
}

:focus-visible {
    outline: 3px solid rgba(47, 93, 159, 0.48);
    outline-offset: 3px;
}

.skip-link,
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    z-index: 1000;
    width: auto;
    height: auto;
    margin: 1rem;
    padding: 0.75rem 1rem;
    clip: auto;
    background: var(--gold);
    color: var(--black);
}

.notice-bar {
    display: flex;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.55rem 1rem;
    background: var(--black);
    color: var(--white);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.notice-bar a {
    color: var(--gold);
    font-weight: 700;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.74));
    border-bottom: 1px solid rgba(255, 255, 255, 0.44);
    -webkit-backdrop-filter: blur(18px) saturate(1.15);
    backdrop-filter: blur(16px);
    transition: box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84));
    border-color: rgba(255, 255, 255, 0.62);
    box-shadow: 0 18px 45px rgba(18, 28, 48, 0.08);
}

.header-inner {
    width: min(100%, var(--max));
    margin: 0 auto;
    padding: 0.9rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: Georgia, 'Times New Roman', serif;
}

.brand img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.brand strong,
.brand em {
    display: block;
    font-style: normal;
    line-height: 1;
}

.brand strong {
    font-size: 1.02rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.brand em {
    margin-top: 0.18rem;
    color: var(--brand-green);
    font-size: 0.92rem;
}

.footer-brand img {
    width: min(220px, 100%);
    height: auto;
    object-fit: contain;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 6px;
    transition: border-color 180ms ease, transform 180ms ease;
}

.menu-toggle span:not(.sr-only) {
    width: 19px;
    height: 2px;
    background: var(--black);
}

.primary-nav {
    position: fixed;
    inset: 118px 1rem auto 1rem;
    display: none;
    padding: 0.7rem;
    background: var(--glass-strong);
    border: 1px solid rgba(255, 255, 255, 0.56);
    border-radius: 12px;
    box-shadow: var(--shadow);
    -webkit-backdrop-filter: blur(18px) saturate(1.15);
    backdrop-filter: blur(18px) saturate(1.15);
}

.primary-nav.is-open {
    display: grid;
}

.primary-nav a {
    padding: 0.85rem;
    border-bottom: 1px solid rgba(220, 226, 234, 0.72);
    border-radius: 8px;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 700;
    transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.primary-nav a:last-child {
    border-bottom: 0;
}

.primary-nav a.is-active,
.primary-nav a:hover {
    color: var(--black);
    background: rgba(47, 93, 159, 0.08);
}

.primary-nav a.is-featured {
    color: var(--brand-blue);
}

.primary-nav a.is-featured.is-active {
    background: linear-gradient(135deg, rgba(47, 93, 159, 0.12), rgba(124, 63, 152, 0.08));
}

.nav-mobile-action {
    margin-top: 0.45rem;
    border: 0;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
    color: var(--white) !important;
    text-align: center;
}

.nav-mobile-emergency {
    margin-top: 0.25rem;
    background: var(--black);
}

.header-actions {
    display: none;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 760px;
    padding: 4rem 1rem 2.5rem;
    background: var(--black);
    color: var(--white);
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 38%;
    z-index: 2;
    background: linear-gradient(180deg, transparent, rgba(11, 16, 24, 0.72));
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(11, 16, 24, 0.82) 0%, rgba(11, 16, 24, 0.66) 42%, rgba(11, 16, 24, 0.18) 100%),
        linear-gradient(140deg, rgba(47, 93, 159, 0.18), transparent 48%);
    z-index: 1;
}

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 52% 42%;
    filter: saturate(0.9) contrast(1.02);
}

.hero-content,
.hero-panel,
.hero-portrait {
    position: relative;
    z-index: 2;
    width: min(100%, var(--max));
    margin: 0 auto;
}

.hero-content {
    padding-top: 2rem;
}

.eyebrow {
    margin: 0 0 0.9rem;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 500;
    line-height: 1.12;
}

h1 {
    max-width: 760px;
    font-size: clamp(2.45rem, 6.6vw, 5.2rem);
}

.home-page .hero h1 {
    max-width: 650px;
    font-size: clamp(2.35rem, 4.7vw, 4.2rem);
    line-height: 1.08;
}

h2 {
    font-size: clamp(1.85rem, 4.8vw, 3.4rem);
}

h3 {
    font-size: 1.42rem;
}

.hero-copy {
    max-width: 640px;
    margin: 1.35rem 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
}

.hero-assurance {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.4rem;
}

.hero-assurance span {
    padding: 0.52rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
    font-weight: 700;
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.9rem 1.25rem;
    border: 1px solid transparent;
    border-radius: 6px;
    font-weight: 700;
    font: inherit;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(18, 28, 48, 0.16);
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
    color: var(--white);
}

.btn-outline {
    border-color: var(--line);
    background: var(--white);
    color: var(--black);
}

.btn-outline:hover {
    border-color: rgba(47, 93, 159, 0.42);
    color: var(--brand-blue);
}

.btn-secondary {
    border-color: rgba(255, 255, 255, 0.36);
    color: var(--white);
}

.btn-light {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.hero-panel {
    max-width: 360px;
    margin: 3rem 0 0;
    padding: 1.25rem;
    border: 1px solid var(--glass-line);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07));
    -webkit-backdrop-filter: blur(18px) saturate(1.18);
    backdrop-filter: blur(18px) saturate(1.18);
    border-radius: 10px;
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-panel span,
.hero-panel p {
    color: rgba(255, 255, 255, 0.74);
}

.hero-panel strong {
    display: block;
    margin: 0.35rem 0;
    color: var(--white);
    font-size: 1.45rem;
}

.hero-portrait {
    display: none;
}

.trust-strip {
    display: grid;
    gap: 1px;
    background: var(--line);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.trust-strip div {
    padding: 1.35rem 1rem;
    background:
        linear-gradient(135deg, rgba(47, 93, 159, 0.08), transparent 48%),
        var(--soft-grey);
}

.trust-strip strong,
.trust-strip span {
    display: block;
}

.trust-strip strong {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.22rem;
}

.trust-strip span {
    margin-top: 0.2rem;
    color: var(--muted);
}

.section,
.cta-band,
.page-hero {
    width: min(100%, var(--max));
    margin: 0 auto;
    padding: 4.5rem 1rem;
}

.page-hero {
    padding-top: 4.75rem;
    padding-bottom: 3rem;
}

.page-hero-visual {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.page-hero-visual figure {
    margin: 0;
    position: relative;
}

.page-hero-visual figure::before {
    content: "";
    position: absolute;
    inset: -1rem 1rem 1rem -1rem;
    z-index: -1;
    background: var(--soft-grey);
    border: 1px solid var(--line);
}

.page-hero-visual img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.page-hero h1 {
    max-width: 780px;
    color: var(--black);
    font-size: clamp(2.25rem, 5.2vw, 4rem);
}

.page-hero p {
    max-width: 760px;
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.plans-hero {
    position: relative;
    isolation: isolate;
    width: 100%;
    max-width: none;
    min-height: 620px;
    display: grid;
    align-items: end;
    gap: 1.25rem;
    padding: 5.5rem max(1rem, calc((100vw - var(--max)) / 2)) 3rem;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(11, 16, 24, 0.86) 0%, rgba(11, 16, 24, 0.58) 48%, rgba(11, 16, 24, 0.18) 100%),
        linear-gradient(180deg, rgba(11, 16, 24, 0.1), rgba(11, 16, 24, 0.76)),
        url('../images/family-policy.jpg');
    background-size: cover;
    background-position: center 38%;
    color: var(--white);
}

.plans-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 18% 24%, rgba(47, 93, 159, 0.28), transparent 34%),
        radial-gradient(circle at 70% 78%, rgba(124, 63, 152, 0.22), transparent 32%);
}

.plans-hero-panel {
    width: min(100%, 760px);
    padding: clamp(1.35rem, 3vw, 2rem);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 14px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
    -webkit-backdrop-filter: blur(18px) saturate(1.12);
    backdrop-filter: blur(18px) saturate(1.12);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.plans-hero h1 {
    max-width: 700px;
    color: var(--white);
    font-size: clamp(2.25rem, 5vw, 4.1rem);
}

.plans-hero p {
    max-width: 660px;
    color: rgba(255, 255, 255, 0.82);
}

.plans-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.6rem;
}

.plans-hero-metrics {
    display: grid;
    gap: 1px;
    width: min(100%, 820px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(16px) saturate(1.12);
    backdrop-filter: blur(16px) saturate(1.12);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.18);
}

.plans-hero-metrics div {
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, 0.1);
}

.plans-hero-metrics span,
.plans-hero-metrics strong,
.plans-hero-metrics p {
    display: block;
}

.plans-hero-metrics span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.plans-hero-metrics strong {
    margin-top: 0.15rem;
    color: var(--white);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 500;
    line-height: 1;
}

.plans-hero-metrics p {
    margin: 0.35rem 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.94rem;
}

.emergency-hero {
    width: 100%;
    max-width: none;
    padding-left: max(1rem, calc((100vw - var(--max)) / 2));
    padding-right: max(1rem, calc((100vw - var(--max)) / 2));
    background: var(--black);
    color: var(--white);
}

.emergency-hero h1 {
    color: var(--white);
}

.emergency-hero p {
    color: rgba(255, 255, 255, 0.76);
}

.section-heading {
    max-width: 820px;
    margin-bottom: 2rem;
}

.section-heading p:not(.eyebrow) {
    max-width: 720px;
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: 1.06rem;
}

.service-grid {
    display: grid;
    gap: 1rem;
}

.service-card,
.plan-card,
.process-grid article,
.values-grid article,
.form-card,
.contact-panel {
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.58);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.62));
    -webkit-backdrop-filter: blur(16px) saturate(1.08);
    backdrop-filter: blur(16px) saturate(1.08);
    border-radius: 8px;
}

.service-card {
    overflow: hidden;
    padding: 0 0 1.35rem;
    box-shadow: 0 12px 35px rgba(18, 28, 48, 0.04);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(47, 93, 159, 0.3);
}

.service-card .card-number,
.service-card h3,
.service-card p,
.service-card a {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
}

.service-card p {
    color: var(--muted);
}

.service-image {
    width: 100%;
    height: 210px;
    margin-bottom: 1.25rem;
    object-fit: cover;
    filter: saturate(0.92);
}

.service-card a,
.text-link {
    color: var(--gold-dark);
    font-weight: 700;
    transition: color 180ms ease;
}

.service-card a:hover,
.text-link:hover {
    color: var(--brand-purple);
}

.card-number {
    display: block;
    margin-bottom: 1.35rem;
    color: var(--gold-dark);
    font-weight: 700;
}

.care-pathway {
    width: 100%;
    max-width: none;
    padding-left: max(1rem, calc((100vw - var(--max)) / 2));
    padding-right: max(1rem, calc((100vw - var(--max)) / 2));
    background:
        linear-gradient(180deg, var(--white), var(--mist));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.pathway-grid {
    display: grid;
    gap: 1rem;
}

.pathway-grid article {
    position: relative;
    min-height: 260px;
    padding: 1.35rem;
    border: 1px solid rgba(220, 226, 234, 0.95);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 16px 42px rgba(18, 28, 48, 0.06);
}

.pathway-grid article::after {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    border-radius: 8px 8px 0 0;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-purple), var(--brand-green));
}

.pathway-grid span,
.detail-panel span,
.preview-grid span {
    display: inline-flex;
    margin-bottom: 1.35rem;
    color: var(--brand-blue);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.pathway-grid p,
.premium-detail p,
.preview-grid p {
    color: var(--muted);
}

.premium-detail {
    display: grid;
    gap: 2rem;
    border-top: 1px solid var(--line);
}

.premium-detail-intro {
    max-width: 760px;
}

.detail-panel {
    display: grid;
    gap: 1px;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: var(--line);
    box-shadow: var(--shadow);
}

.detail-panel div {
    padding: 1.4rem;
    background:
        linear-gradient(145deg, rgba(47, 93, 159, 0.08), transparent 46%),
        var(--white);
}

.plan-preview {
    width: 100%;
    max-width: none;
    padding-left: max(1rem, calc((100vw - var(--max)) / 2));
    padding-right: max(1rem, calc((100vw - var(--max)) / 2));
    background: var(--soft-grey);
}

.corporate-guide {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(238, 243, 248, 0.72), rgba(255, 255, 255, 0.96));
}

.insight-grid {
    display: grid;
    gap: 1rem;
}

.insight-grid article {
    position: relative;
    min-height: 230px;
    padding: 1.35rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(47, 93, 159, 0.1), transparent 48%),
        var(--white);
    box-shadow: 0 16px 42px rgba(18, 28, 48, 0.055);
}

.insight-grid article::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    border-radius: 8px 8px 0 0;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-purple), var(--brand-green));
}

.insight-grid span {
    display: inline-flex;
    margin-bottom: 1.25rem;
    color: var(--brand-blue);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.insight-grid p {
    color: var(--muted);
}

.preview-grid {
    display: grid;
    gap: 1rem;
}

.preview-grid article {
    padding: 1.35rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 16px 40px rgba(18, 28, 48, 0.05);
}

.preview-grid strong {
    display: block;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2.2rem, 7vw, 4rem);
    font-weight: 500;
    line-height: 1;
}

.center-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.comparison-section {
    border-top: 1px solid var(--line);
}

.comparison-table {
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: var(--line);
    box-shadow: var(--shadow);
}

.comparison-row {
    display: grid;
    gap: 0.65rem;
    padding: 1rem;
    background: var(--white);
}

.comparison-row + .comparison-row {
    border-top: 1px solid var(--line);
}

.comparison-row span,
.comparison-row strong {
    display: block;
}

.comparison-row span:first-child {
    color: var(--ink);
    font-weight: 800;
}

.comparison-row strong {
    color: var(--brand-blue);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.45rem;
    font-weight: 500;
}

.comparison-head {
    display: none;
}

.faq-section {
    border-top: 1px solid var(--line);
}

.faq-list {
    display: grid;
    gap: 0.75rem;
}

.faq-list details {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 14px 36px rgba(18, 28, 48, 0.045);
}

.faq-list summary {
    cursor: pointer;
    padding: 1rem 1.1rem;
    color: var(--ink);
    font-weight: 800;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    float: right;
    color: var(--brand-blue);
    font-size: 1.25rem;
    line-height: 1;
}

.faq-list details[open] summary::after {
    content: "-";
}

.faq-list p {
    margin: 0;
    padding: 0 1.1rem 1rem;
    color: var(--muted);
}

.plan-grid,
.process-grid,
.values-grid,
.contact-layout {
    display: grid;
    gap: 1rem;
}

.plan-summary {
    display: grid;
    gap: 1px;
    margin: -0.5rem 0 1.4rem;
    background: rgba(220, 226, 234, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 16px 42px rgba(18, 28, 48, 0.055);
}

.plan-summary div {
    padding: 1.15rem;
    background:
        linear-gradient(135deg, rgba(47, 93, 159, 0.12), rgba(255, 255, 255, 0.68) 58%),
        rgba(255, 255, 255, 0.74);
    -webkit-backdrop-filter: blur(14px) saturate(1.1);
    backdrop-filter: blur(14px) saturate(1.1);
}

.plan-summary span,
.plan-summary p {
    color: var(--muted);
}

.plan-summary span {
    display: block;
    margin-bottom: 0.1rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.plan-summary strong {
    display: block;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.8rem, 5vw, 2.7rem);
    font-weight: 500;
    line-height: 1.05;
}

.plan-summary p {
    margin: 0.35rem 0 0;
}

.plan-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    min-height: 100%;
    padding: 1.45rem;
    background:
        radial-gradient(circle at 92% 8%, rgba(17, 139, 82, 0.1), transparent 28%),
        linear-gradient(150deg, rgba(47, 93, 159, 0.14) 0%, rgba(124, 63, 152, 0.08) 34%, rgba(255, 255, 255, 0) 68%),
        rgba(255, 255, 255, 0.72);
    box-shadow: 0 16px 44px rgba(18, 28, 48, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.52);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.plan-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-purple), var(--brand-green));
    opacity: 0;
}

.plan-card::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -90px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47, 93, 159, 0.12), transparent 68%);
    pointer-events: none;
}

.plan-card:hover,
.plan-card.is-featured {
    border-color: rgba(47, 93, 159, 0.46);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.plan-card:hover::before,
.plan-card.is-featured::before {
    opacity: 1;
}

.plan-card.is-featured {
    background:
        radial-gradient(circle at 92% 8%, rgba(17, 139, 82, 0.14), transparent 30%),
        linear-gradient(150deg, rgba(47, 93, 159, 0.2) 0%, rgba(124, 63, 152, 0.14) 38%, rgba(255, 255, 255, 0) 72%),
        var(--white);
}

.plan-card h3,
.plan-card p {
    margin: 0;
}

.plan-card h3 {
    font-size: 1.75rem;
}

.plan-card p,
.plan-card li,
.process-grid p,
.values-grid p,
.contact-panel p {
    color: var(--muted);
}

.plan-card ul {
    margin: 0;
    padding-left: 0;
}

.check-list {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 1.55rem;
}

.check-list li + li {
    margin-top: 0.45rem;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(124, 63, 152, 0.16);
}

.plan-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 28px;
}

.plan-topline span {
    color: var(--gold-dark);
    font-weight: 800;
    letter-spacing: 0.12em;
}

.plan-topline em {
    color: var(--muted);
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.plan-ribbon {
    position: absolute;
    top: 1rem;
    right: -3.25rem;
    width: 12rem;
    padding: 0.32rem 1rem;
    transform: rotate(35deg);
    background: var(--black);
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

.plan-price {
    display: flex;
    align-items: end;
    gap: 0.45rem;
    color: var(--brand-blue);
}

.plan-price strong {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 3rem;
    font-weight: 500;
    line-height: 1;
}

.plan-price span {
    padding-bottom: 0.25rem;
    color: var(--muted);
    font-size: 0.82rem;
}

.plan-subtitle {
    min-height: 1.7rem;
    font-weight: 700;
}

.claim-pill {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.48rem 0.7rem;
    border: 1px solid rgba(47, 93, 159, 0.16);
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(47, 93, 159, 0.18);
}

.plan-coffin-preview {
    margin: 1rem 0 0;
    overflow: hidden;
    border: 1px solid rgba(47, 93, 159, 0.12);
    border-radius: 14px;
    background:
        radial-gradient(circle at 15% 10%, rgba(47, 93, 159, 0.1), transparent 36%),
        rgba(255, 255, 255, 0.72);
    box-shadow: 0 16px 38px rgba(9, 18, 32, 0.08);
}

.plan-coffin-preview img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.plan-benefits {
    flex: 1;
}

.plan-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    margin-top: 0.35rem;
}

.plan-actions .btn {
    min-height: 44px;
    padding: 0.72rem 0.85rem;
}

.plan-detail-panel {
    width: min(100%, 1040px);
}

.plan-detail-layout {
    display: grid;
    gap: 0;
}

.plan-detail-visual {
    min-height: 300px;
    display: grid;
    align-content: center;
    gap: 1rem;
    padding: 1.25rem;
    background:
        radial-gradient(circle at 10% 0%, rgba(0, 151, 91, 0.2), transparent 34%),
        linear-gradient(150deg, rgba(47, 93, 159, 0.2), rgba(124, 63, 152, 0.1) 48%, rgba(255, 255, 255, 0.05)),
        var(--black);
    color: var(--white);
    overflow: hidden;
}

.coffin-photo-shell {
    display: block;
    position: relative;
    z-index: 1;
    width: min(100%, 560px);
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(238, 243, 248, 0.82));
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
    font: inherit;
    cursor: zoom-in;
    appearance: none;
    -webkit-appearance: none;
}

.coffin-photo-shell img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transform: scale(1.16);
    transition: transform 220ms ease;
}

.coffin-photo-shell span {
    position: absolute;
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.42rem 0.6rem;
    border-radius: 999px;
    background: rgba(11, 16, 24, 0.78);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.coffin-photo-shell:hover img,
.coffin-photo-shell:focus-visible img {
    transform: scale(1.22);
}

.coffin-photo-shell:hover span,
.coffin-photo-shell:focus-visible span {
    opacity: 1;
    transform: translateY(0);
}

.image-preview {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: none;
    place-items: center;
    padding: 1.25rem;
}

.image-preview.is-open {
    display: grid;
}

.image-preview-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(11, 16, 24, 0.78);
    cursor: zoom-out;
}

.image-preview-panel {
    position: relative;
    z-index: 1;
    width: min(100%, 900px);
    max-height: calc(100vh - 4rem);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 10px;
    background: var(--white);
    box-shadow: var(--shadow-strong);
}

.image-preview-panel img {
    display: block;
    width: 100%;
    max-height: calc(100vh - 4rem);
    object-fit: contain;
}

.image-preview-close {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(220, 226, 234, 0.9);
    background: rgba(255, 255, 255, 0.94);
    color: var(--black);
    font-size: 1.65rem;
    line-height: 1;
    cursor: pointer;
}

.plan-detail-visual p {
    position: relative;
    z-index: 2;
    max-width: 420px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
}

.coffin-visual {
    position: relative;
    z-index: 1;
    width: min(100%, 390px);
    height: 170px;
    margin: 1.75rem auto 0;
    border-radius: 8px;
    transform: perspective(760px) rotateX(8deg) rotateZ(-2deg);
    background:
        linear-gradient(140deg, rgba(255, 255, 255, 0.34), transparent 18%),
        linear-gradient(160deg, #d8c7ab, #8a633e 48%, #4f3523);
    clip-path: polygon(13% 16%, 87% 16%, 98% 42%, 87% 84%, 13% 84%, 2% 42%);
    box-shadow:
        0 32px 70px rgba(0, 0, 0, 0.34),
        inset 0 0 0 2px rgba(255, 255, 255, 0.16),
        inset 0 -18px 36px rgba(0, 0, 0, 0.22);
}

.coffin-visual::before {
    content: "";
    position: absolute;
    inset: 16px 34px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    clip-path: polygon(10% 10%, 90% 10%, 98% 42%, 90% 90%, 10% 90%, 2% 42%);
}

.coffin-visual::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 34px;
    width: 14px;
    height: 72px;
    transform: translateX(-50%);
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.28);
    box-shadow: 0 0 0 1px rgba(85, 55, 34, 0.18);
}

.coffin-visual span {
    position: absolute;
    left: 36%;
    top: 50%;
    width: 28%;
    height: 2px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
}

.coffin-three-tier .coffin-visual,
.coffin-open-face .coffin-visual {
    background:
        linear-gradient(140deg, rgba(255, 255, 255, 0.38), transparent 18%),
        linear-gradient(160deg, #e0cba7, #9a6f3f 50%, #5b3d22);
}

.coffin-budget-casket .coffin-visual {
    background:
        linear-gradient(140deg, rgba(255, 255, 255, 0.24), transparent 20%),
        linear-gradient(160deg, #b89062, #7d5531 48%, #3e2818);
}

.coffin-elegance-dome .coffin-visual,
.coffin-royal-dome .coffin-visual {
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.42), transparent 24%),
        linear-gradient(160deg, #dfd1ba, #7a5838 45%, #302016);
}

.coffin-royal-dome .coffin-visual {
    box-shadow:
        0 32px 70px rgba(0, 0, 0, 0.34),
        inset 0 0 0 2px rgba(124, 63, 152, 0.28),
        inset 0 -18px 36px rgba(0, 0, 0, 0.22);
}

.plan-detail-copy {
    padding: 1.25rem;
}

.detail-price-line {
    display: flex;
    align-items: end;
    gap: 0.55rem;
    margin: 1rem 0 1.25rem;
}

.detail-price-line strong {
    color: var(--brand-blue);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2.7rem, 13vw, 4.6rem);
    font-weight: 500;
    line-height: 1;
}

.detail-price-line span {
    padding-bottom: 0.45rem;
    color: var(--muted);
    font-weight: 700;
}

.detail-facts {
    display: grid;
    gap: 1px;
    margin: 1rem 0 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(220, 226, 234, 0.68);
}

.detail-facts div {
    padding: 0.95rem;
    background:
        linear-gradient(135deg, rgba(47, 93, 159, 0.08), transparent 58%),
        rgba(255, 255, 255, 0.78);
}

.detail-facts span,
.detail-facts strong {
    display: block;
}

.detail-facts span {
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.detail-facts strong {
    margin-top: 0.18rem;
    font-size: 1rem;
}

.detail-benefits {
    margin-top: 0.75rem;
}

.plan-detail-actions {
    display: grid;
    gap: 0.65rem;
    margin-top: 1.4rem;
}

.muted-section {
    width: 100%;
    max-width: none;
    padding-left: max(1rem, calc((100vw - var(--max)) / 2));
    padding-right: max(1rem, calc((100vw - var(--max)) / 2));
    background: var(--soft-grey);
}

.benefit-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.benefit-list span,
.premium-table div {
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--muted);
}

.premium-table {
    display: grid;
    gap: 0.65rem;
}

.premium-table div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.premium-table strong {
    color: var(--gold-dark);
}

.service-detail {
    display: grid;
    gap: 2rem;
}

.claims-alert {
    width: 100%;
    display: grid;
    gap: 1.25rem;
    padding: 2.25rem max(1rem, calc((100vw - var(--max)) / 2));
    background:
        linear-gradient(110deg, rgba(11, 11, 11, 0.94), rgba(11, 11, 11, 0.82)),
        var(--black);
    color: var(--white);
}

.claims-alert h2 {
    max-width: 820px;
    font-size: clamp(1.65rem, 3.4vw, 2.65rem);
}

.claims-alert-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.claims-workflow {
    border-bottom: 1px solid var(--line);
}

.repatriation-overview {
    border-bottom: 1px solid var(--line);
}

.timeline-grid {
    display: grid;
    gap: 1rem;
    counter-reset: claims;
}

.feature-grid {
    display: grid;
    gap: 1rem;
}

.timeline-grid article {
    position: relative;
    padding: 1.4rem;
    border: 1px solid var(--line);
    background:
        linear-gradient(145deg, rgba(124, 63, 152, 0.08), transparent 48%),
        var(--white);
}

.feature-grid article {
    position: relative;
    min-height: 250px;
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, transparent, rgba(11, 11, 11, 0.78)),
        url('../images/family-care.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    overflow: hidden;
}

.feature-grid article:nth-child(2) {
    background-image:
        linear-gradient(180deg, transparent, rgba(11, 11, 11, 0.78)),
        url('../images/family-policy.jpg');
}

.feature-grid article:nth-child(3) {
    background-image:
        linear-gradient(180deg, transparent, rgba(11, 11, 11, 0.78)),
        url('../images/family-package.jpg');
}

.feature-grid article:nth-child(4) {
    background-image:
        linear-gradient(180deg, transparent, rgba(11, 11, 11, 0.78)),
        url('../images/hero-compassion.jpg');
}

.timeline-grid article span,
.feature-grid article span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(124, 63, 152, 0.62);
    background: var(--black);
    color: var(--gold);
    font-weight: 800;
}

.feature-grid article span {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.timeline-grid article p,
.feature-grid article p {
    margin-bottom: 0;
}

.timeline-grid article p {
    color: var(--muted);
}

.feature-grid article p {
    color: rgba(255, 255, 255, 0.8);
}

.repatriation-map {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.repatriation-map p {
    color: var(--muted);
    font-size: 1.06rem;
}

.route-card {
    padding: 1.5rem;
    border: 1px solid rgba(124, 63, 152, 0.56);
    background:
        radial-gradient(circle at 85% 12%, rgba(124, 63, 152, 0.22), transparent 30%),
        var(--black);
    color: var(--white);
    box-shadow: var(--shadow);
}

.route-card span {
    display: block;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.route-card strong {
    display: block;
    margin-top: 0.2rem;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.8rem, 4.8vw, 3.2rem);
    font-weight: 500;
    line-height: 1;
}

.route-line {
    position: relative;
    height: 74px;
    margin: 1.4rem 0;
    border-left: 1px solid rgba(124, 63, 152, 0.72);
}

.route-line::before,
.route-line::after {
    content: "";
    position: absolute;
    left: -5px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold);
}

.route-line::before {
    top: 0;
}

.route-line::after {
    bottom: 0;
}

.about-statement {
    width: 100%;
    padding: 4rem max(1rem, calc((100vw - var(--max)) / 2));
    background:
        linear-gradient(110deg, rgba(11, 11, 11, 0.94), rgba(11, 11, 11, 0.82)),
        url('../images/hero-compassion.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.about-statement blockquote {
    max-width: 1000px;
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 4.8vw, 3.8rem);
    line-height: 1.12;
}

.about-story {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.about-story figure {
    margin: 0;
    position: relative;
}

.about-story figure::after {
    content: "";
    position: absolute;
    inset: 1rem -1rem -1rem 1rem;
    z-index: -1;
    border: 1px solid var(--gold);
    background: var(--soft-grey);
}

.about-story img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.about-story p {
    color: var(--muted);
    font-size: 1.06rem;
}

.about-stats {
    display: grid;
    gap: 1px;
    margin-top: 1.75rem;
    border: 1px solid var(--line);
    background: var(--line);
}

.about-stats div {
    padding: 1rem;
    background: var(--white);
}

.about-stats strong,
.about-stats span {
    display: block;
}

.about-stats strong {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
}

.about-stats span {
    margin-top: 0.35rem;
    color: var(--muted);
}

.about-pillars {
    width: 100%;
    max-width: none;
    padding-left: max(1rem, calc((100vw - var(--max)) / 2));
    padding-right: max(1rem, calc((100vw - var(--max)) / 2));
    background: var(--soft-grey);
}

.pillar-grid {
    display: grid;
    gap: 1rem;
}

.pillar-grid article,
.about-values article {
    position: relative;
    padding: 1.5rem;
    border: 1px solid var(--line);
    background:
        linear-gradient(145deg, rgba(124, 63, 152, 0.1), transparent 44%),
        var(--white);
}

.pillar-grid article span {
    display: inline-flex;
    margin-bottom: 2rem;
    color: var(--gold-dark);
    font-weight: 800;
    letter-spacing: 0.12em;
}

.pillar-grid article p,
.about-values article p {
    color: var(--muted);
}

.about-services {
    display: grid;
    gap: 2rem;
    border-top: 1px solid var(--line);
}

.about-services p {
    color: var(--muted);
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.service-tags span {
    padding: 0.72rem 0.9rem;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--muted);
    font-weight: 700;
}

.contact-actions {
    display: grid;
    gap: 1px;
    background: rgba(220, 226, 234, 0.68);
    border-top: 1px solid rgba(255, 255, 255, 0.58);
    border-bottom: 1px solid rgba(255, 255, 255, 0.58);
}

.contact-actions a {
    padding: 1.35rem max(1rem, calc((100vw - var(--max)) / 2));
    background:
        linear-gradient(145deg, rgba(47, 93, 159, 0.12), rgba(255, 255, 255, 0.68) 52%),
        rgba(255, 255, 255, 0.78);
    -webkit-backdrop-filter: blur(14px) saturate(1.08);
    backdrop-filter: blur(14px) saturate(1.08);
}

.contact-actions span,
.contact-actions strong {
    display: block;
}

.contact-actions span {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-actions strong {
    margin-top: 0.2rem;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.35rem, 4vw, 2rem);
    font-weight: 500;
}

.contact-service-grid {
    border-bottom: 1px solid var(--line);
}

.support-grid {
    display: grid;
    gap: 1rem;
}

.support-grid article {
    padding: 1.4rem;
    border: 1px solid var(--line);
    background:
        linear-gradient(145deg, rgba(124, 63, 152, 0.08), transparent 45%),
        var(--white);
}

.support-grid article span {
    display: inline-flex;
    margin-bottom: 1.5rem;
    color: var(--gold-dark);
    font-weight: 800;
    letter-spacing: 0.12em;
}

.support-grid article p,
.location-panel > p {
    color: var(--muted);
}

.contact-main {
    align-items: start;
}

.location-panel {
    background:
        linear-gradient(145deg, rgba(124, 63, 152, 0.12), transparent 42%),
        var(--soft-grey);
}

.location-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.location-list div {
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.contact-mini {
    margin-top: 1.35rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.claims-layout {
    display: grid;
    gap: 1rem;
    align-items: start;
}

.document-panel {
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.58);
    background:
        linear-gradient(145deg, rgba(47, 93, 159, 0.14), rgba(255, 255, 255, 0.62) 48%),
        rgba(244, 246, 250, 0.72);
    -webkit-backdrop-filter: blur(16px) saturate(1.08);
    backdrop-filter: blur(16px) saturate(1.08);
    border-radius: 10px;
    box-shadow: 0 16px 42px rgba(18, 28, 48, 0.055);
}

.document-panel h2 {
    margin-bottom: 1.25rem;
    font-size: clamp(1.7rem, 3.4vw, 2.45rem);
}

.document-note {
    margin: 1.25rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.claim-form {
    box-shadow: var(--shadow);
}

.process-grid article span {
    display: inline-flex;
    margin-bottom: 1.4rem;
    color: var(--gold-dark);
    font-weight: 700;
}

.contact-panel h2,
.form-card h2 {
    margin: 0 0 1.25rem;
    font-size: 1.7rem;
}

.contact-panel h3 {
    margin-top: 1.4rem;
    font-size: 1.15rem;
}

.contact-panel a {
    display: block;
    margin: 0.55rem 0;
    color: var(--gold-dark);
    font-weight: 700;
}

.form-card {
    display: grid;
    gap: 1rem;
}

.form-grid {
    display: grid;
    gap: 1rem;
}

.form-card label {
    display: grid;
    gap: 0.35rem;
    color: var(--ink);
    font-weight: 700;
}

.form-card input,
.form-card select,
.form-card textarea {
    width: 100%;
    min-height: 48px;
    padding: 0.8rem 0.9rem;
    border: 1px solid var(--line);
    border-radius: 0;
    background: var(--white);
    color: var(--ink);
    font: inherit;
    font-weight: 400;
}

.form-card textarea {
    resize: vertical;
}

.file-upload {
    padding: 1rem;
    border: 1px dashed rgba(47, 93, 159, 0.62);
    background: rgba(124, 63, 152, 0.08);
}

.file-upload input {
    border: 0;
    min-height: auto;
    padding: 0.45rem 0 0;
    background: transparent;
}

.file-upload span {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 400;
}

.honeypot {
    position: absolute;
    left: -9999px;
}

.form-message {
    padding: 0.85rem 1rem;
    border: 1px solid;
    font-weight: 700;
}

.form-message.success {
    border-color: #b6d8c0;
    background: #eef8f1;
    color: #1f6a37;
}

.form-message.error {
    border-color: #e5b5ad;
    background: #fff0ee;
    color: #8b2619;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    padding: 1rem;
    overflow-y: auto;
}

.modal.is-open {
    display: grid;
    place-items: center;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 75% 20%, rgba(124, 63, 152, 0.2), transparent 32%),
        rgba(11, 16, 24, 0.58);
    -webkit-backdrop-filter: blur(12px) saturate(1.12);
    backdrop-filter: blur(12px) saturate(1.12);
}

.modal-panel {
    position: relative;
    z-index: 1;
    width: min(100%, 920px);
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    display: grid;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 12px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78));
    -webkit-backdrop-filter: blur(20px) saturate(1.12);
    backdrop-filter: blur(20px) saturate(1.12);
    box-shadow: var(--shadow-strong), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.modal-panel::before {
    content: "";
    height: 6px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
}

.modal-close {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--black);
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
}

.modal-intro {
    padding: 2rem 1.25rem 0.5rem;
}

.modal-intro h2 {
    max-width: 680px;
    font-size: clamp(1.75rem, 4vw, 2.8rem);
}

.modal-intro p:not(.eyebrow) {
    max-width: 650px;
    color: var(--muted);
}

.modal-form {
    border: 0;
    padding: 1.25rem;
}

.js [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 680ms ease, transform 680ms ease;
}

.js [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.service-grid [data-reveal]:nth-child(2),
.pathway-grid [data-reveal]:nth-child(2),
.preview-grid [data-reveal]:nth-child(2) {
    transition-delay: 80ms;
}

.service-grid [data-reveal]:nth-child(3),
.pathway-grid [data-reveal]:nth-child(3),
.preview-grid [data-reveal]:nth-child(3) {
    transition-delay: 150ms;
}

.service-grid [data-reveal]:nth-child(4),
.pathway-grid [data-reveal]:nth-child(4) {
    transition-delay: 220ms;
}

.split-section {
    display: grid;
    gap: 2rem;
    border-top: 1px solid var(--line);
}

.image-split {
    display: grid;
    gap: 2rem;
    align-items: center;
    border-top: 1px solid var(--line);
}

.split-image {
    margin: 0;
    position: relative;
}

.split-image::after {
    content: "";
    position: absolute;
    inset: 1rem -1rem -1rem 1rem;
    z-index: -1;
    border: 1px solid var(--gold);
    background: var(--soft-grey);
}

.split-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.split-copy-panel {
    padding: 1rem 0;
}

.split-copy-panel p {
    color: var(--muted);
    font-size: 1.06rem;
}

.split-copy {
    color: var(--muted);
    font-size: 1.06rem;
}

.cta-band {
    width: 100%;
    max-width: none;
    display: grid;
    gap: 1.5rem;
    padding-left: max(1rem, calc((100vw - var(--max)) / 2));
    padding-right: max(1rem, calc((100vw - var(--max)) / 2));
    background: var(--black);
    color: var(--white);
    overflow: hidden;
}

.cta-band h2 {
    max-width: 820px;
}

.site-footer {
    padding: 3rem 1rem 1.25rem;
    background: #111;
    color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
    width: min(100%, var(--max));
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.footer-brand {
    color: var(--white);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.25rem;
    width: fit-content;
}

.site-footer h2 {
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 1rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
}

.site-footer a,
.site-footer span {
    display: block;
    margin: 0.5rem 0;
}

.footer-bottom {
    width: min(100%, var(--max));
    margin: 2rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.88rem;
}

.floating-actions {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 60;
    display: grid;
    gap: 0.7rem;
}

.float-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    color: var(--white);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
    -webkit-backdrop-filter: blur(14px) saturate(1.1);
    backdrop-filter: blur(14px) saturate(1.1);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.float-btn svg {
    width: 23px;
    height: 23px;
    fill: currentColor;
}

.float-btn::before {
    content: attr(data-label);
    position: absolute;
    right: calc(100% + 0.7rem);
    top: 50%;
    transform: translate(8px, -50%);
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    padding: 0.48rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(8, 13, 20, 0.82);
    color: var(--white);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    -webkit-backdrop-filter: blur(14px) saturate(1.1);
    backdrop-filter: blur(14px) saturate(1.1);
    transition: opacity 180ms ease, transform 180ms ease;
}

.float-btn:hover,
.float-btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.3);
}

.float-btn:hover::before,
.float-btn:focus-visible::before {
    opacity: 1;
    transform: translate(0, -50%);
}

.float-whatsapp {
    background: linear-gradient(135deg, rgba(0, 151, 91, 0.96), rgba(15, 175, 111, 0.9));
}

.float-call {
    background: linear-gradient(135deg, rgba(47, 93, 159, 0.96), rgba(124, 63, 152, 0.92));
}

@media (max-width: 759px) {
    body {
        padding-bottom: 4.75rem;
    }

    .notice-bar {
        flex-wrap: wrap;
        gap: 0.25rem 0.55rem;
        padding: 0.45rem 0.75rem;
        font-size: 0.68rem;
        line-height: 1.25;
        text-align: center;
    }

    .header-inner {
        padding: 0.65rem 0.85rem;
        gap: 0.7rem;
    }

    .brand {
        min-width: 0;
        gap: 0.55rem;
    }

    .brand img {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
    }

    .brand strong {
        font-size: 0.9rem;
        letter-spacing: 0.06em;
    }

    .brand em {
        max-width: 135px;
        font-size: 0.78rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
    }

    .primary-nav {
        inset: 92px 0.75rem auto 0.75rem;
        max-height: calc(100vh - 108px);
        overflow-y: auto;
        padding: 0.5rem;
    }

    .primary-nav a {
        padding: 0.95rem 0.85rem;
        font-size: 1rem;
    }

    .hero {
        min-height: auto;
        padding: 3.4rem 1rem 2rem;
    }

    .hero::after {
        background:
            linear-gradient(180deg, rgba(11, 11, 11, 0.88) 0%, rgba(11, 11, 11, 0.88) 56%, rgba(11, 11, 11, 0.96) 100%);
    }

    .hero-background img {
        object-position: 58% 38%;
    }

    .hero-content {
        padding-top: 0.75rem;
    }

    h1 {
        font-size: clamp(2.1rem, 10.5vw, 3rem);
        line-height: 1.08;
    }

    .home-page .hero h1 {
        font-size: clamp(2rem, 9.5vw, 2.65rem);
        line-height: 1.08;
    }

    h2 {
        font-size: clamp(1.75rem, 8vw, 2.35rem);
    }

    h3 {
        font-size: 1.24rem;
    }

    .hero-copy,
    .page-hero p,
    .split-copy,
    .split-copy-panel p,
    .about-story p,
    .repatriation-map p {
        font-size: 1rem;
    }

    .hero-actions,
    .cta-actions,
    .claims-alert-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.65rem;
        margin-top: 1.35rem;
    }

    .btn {
        width: 100%;
        min-height: 48px;
        padding: 0.82rem 1rem;
        text-align: center;
    }

    .hero-panel {
        max-width: none;
        margin-top: 2rem;
        padding: 1rem;
    }

    .section,
    .cta-band,
    .page-hero {
        padding: 3rem 1rem;
    }

    .page-hero {
        padding-top: 2.75rem;
        padding-bottom: 2.25rem;
    }

    .page-hero h1 {
        font-size: clamp(1.95rem, 9.8vw, 2.8rem);
        line-height: 1.08;
    }

    .plans-hero {
        min-height: auto;
        padding: 3.25rem 1rem 2rem;
        background-position: 58% center;
    }

    .plans-hero-panel {
        padding: 1.15rem;
    }

    .plans-hero h1 {
        font-size: clamp(2rem, 9.6vw, 2.8rem);
    }

    .plans-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }

    .plans-hero-metrics {
        grid-template-columns: 1fr;
    }

    .page-hero-visual {
        gap: 1.25rem;
    }

    .page-hero-visual figure::before,
    .about-story figure::after,
    .split-image::after {
        inset: 0.65rem -0.65rem -0.65rem 0.65rem;
    }

    .page-hero-visual img {
        aspect-ratio: 4 / 3;
    }

    .section-heading {
        margin-bottom: 1.4rem;
    }

    .service-grid,
    .plan-grid,
    .process-grid,
    .timeline-grid,
    .feature-grid,
    .support-grid,
    .pillar-grid,
    .pathway-grid,
    .preview-grid,
    .insight-grid,
    .faq-list {
        gap: 0.85rem;
    }

    .service-image {
        height: 180px;
    }

    .service-card,
    .plan-card,
    .process-grid article,
    .values-grid article,
    .form-card,
    .contact-panel,
    .document-panel,
    .timeline-grid article,
    .support-grid article,
    .pillar-grid article,
    .pathway-grid article,
    .preview-grid article,
    .insight-grid article,
    .detail-panel div {
        padding: 1.15rem;
    }

    .service-card {
        padding: 0 0 1.2rem;
    }

    .service-card .card-number,
    .service-card h3,
    .service-card p,
    .service-card a {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .plan-card h3 {
        font-size: 1.55rem;
    }

    .plan-price strong {
        font-size: 2.45rem;
    }

    .plan-topline {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.35rem;
    }

    .plan-actions {
        grid-template-columns: 1fr;
    }

    .plan-ribbon {
        top: 0.9rem;
        right: -3.7rem;
    }

    .comparison-row {
        gap: 0.25rem;
    }

    .comparison-row span:not(:first-child)::before,
    .comparison-row strong::before {
        display: block;
        margin-bottom: 0.1rem;
        color: var(--muted);
        font-family: Arial, Helvetica, sans-serif;
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    .comparison-row strong::before {
        content: "Monthly premium";
    }

    .comparison-row span:nth-child(3)::before {
        content: "Family cover";
    }

    .comparison-row span:nth-child(4)::before {
        content: "Cash claim";
    }

    .comparison-row span:nth-child(5)::before {
        content: "Coffin or casket";
    }

    .feature-grid article {
        min-height: 220px;
    }

    .route-card {
        padding: 1.15rem;
    }

    .route-card strong {
        font-size: clamp(1.7rem, 8vw, 2.25rem);
    }

    .about-statement {
        padding: 3rem 1rem;
    }

    .about-statement blockquote {
        font-size: clamp(1.85rem, 8.8vw, 2.75rem);
    }

    .contact-actions a {
        padding: 1.1rem 1rem;
    }

    .contact-actions strong {
        overflow-wrap: anywhere;
    }

    .modal {
        padding: 0.65rem;
        align-items: start;
    }

    .modal.is-open {
        place-items: start center;
    }

    .modal-panel {
        max-height: calc(100vh - 1.3rem);
        margin-top: 0;
    }

    .plan-detail-visual {
        min-height: 260px;
    }

    .coffin-visual {
        height: 136px;
    }

    .modal-intro {
        padding: 1.5rem 1rem 0.3rem;
    }

    .modal-form {
        padding: 1rem;
    }

    .modal-close {
        top: 0.55rem;
        right: 0.55rem;
        width: 38px;
        height: 38px;
    }

    .site-footer {
        padding: 2.35rem 1rem 1rem;
    }

    .footer-brand img {
        width: min(190px, 78vw);
    }

    .floating-actions {
        left: auto;
        right: 0.85rem;
        bottom: 0.75rem;
        gap: 0.55rem;
    }

    .float-btn {
        width: 50px;
        height: 50px;
    }

    .float-btn svg {
        width: 22px;
        height: 22px;
    }

    .float-btn::before {
        display: none;
    }
}

@media (max-width: 390px) {
    .brand em {
        display: none;
    }

    .brand strong {
        font-size: 0.86rem;
    }

    .notice-bar span {
        display: none;
    }

    .page-hero h1,
    h1 {
        font-size: clamp(1.85rem, 10vw, 2.45rem);
    }

    .home-page .hero h1 {
        font-size: clamp(1.85rem, 9vw, 2.25rem);
    }

    .plan-summary div,
    .about-stats div {
        padding: 0.9rem;
    }
}

@media (min-width: 760px) {
    .trust-strip,
    .service-grid,
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .split-section,
    .image-split,
    .page-hero-visual,
    .cta-band,
    .service-detail,
    .claims-alert,
    .claims-layout,
    .repatriation-map,
    .about-story,
    .about-services,
    .contact-layout,
    .values-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .premium-detail {
        grid-template-columns: 0.88fr 1.12fr;
        align-items: start;
    }

    .plan-grid,
    .process-grid,
    .timeline-grid,
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .timeline-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .feature-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .pathway-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .preview-grid,
    .detail-panel {
        grid-template-columns: repeat(3, 1fr);
    }

    .plans-hero-metrics {
        grid-template-columns: repeat(3, 1fr);
    }

    .insight-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .comparison-row {
        grid-template-columns: 1.15fr 0.8fr 0.9fr 0.95fr 1.2fr;
        align-items: center;
    }

    .comparison-head {
        display: grid;
        background:
            linear-gradient(135deg, rgba(47, 93, 159, 0.12), transparent 54%),
            var(--soft-grey);
    }

    .comparison-head span {
        color: var(--muted);
        font-size: 0.74rem;
        font-weight: 800;
        letter-spacing: 0.11em;
        text-transform: uppercase;
    }

    .plan-summary {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-stats,
    .pillar-grid,
    .contact-actions,
    .support-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .support-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .plan-actions {
        grid-template-columns: 1fr 1fr;
    }

    .plan-actions .btn:first-child {
        grid-column: 1 / -1;
    }

    .plan-detail-layout {
        grid-template-columns: 0.95fr 1.05fr;
    }

    .plan-detail-visual {
        min-height: 100%;
        padding: 2rem;
    }

    .plan-detail-copy {
        padding: 2rem;
    }

    .detail-facts {
        grid-template-columns: repeat(3, 1fr);
    }

    .plan-detail-actions {
        grid-template-columns: 1fr 1fr;
    }

    .contact-actions a {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .claims-alert-actions {
        justify-content: flex-end;
    }

    .cta-actions {
        justify-content: flex-end;
    }

    .form-grid {
        grid-template-columns: 1fr 1fr;
    }

    .modal-intro {
        padding: 2.5rem 2rem 0.5rem;
    }

    .modal-form {
        padding: 1.5rem 2rem 2rem;
    }
}

@media (min-width: 980px) {
    .menu-toggle {
        display: none;
    }

    .primary-nav {
        position: static;
        display: flex;
        align-items: center;
        gap: 0.25rem;
        padding: 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .primary-nav a {
        position: relative;
        padding: 0.55rem 0.7rem;
        border-bottom: 0;
        border-radius: 999px;
        font-size: 0.88rem;
        font-weight: 700;
    }

    .primary-nav a.is-active {
        color: var(--black);
        background: rgba(47, 93, 159, 0.1);
    }

    .primary-nav a.is-featured {
        background: rgba(47, 93, 159, 0.08);
        color: var(--brand-blue);
    }

    .primary-nav a.is-featured::before {
        content: "";
        width: 6px;
        height: 6px;
        margin-right: 0.45rem;
        border-radius: 50%;
        background: var(--brand-green);
        display: inline-block;
        vertical-align: middle;
    }

    .nav-mobile-action {
        display: none;
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 0.55rem;
    }

    .header-action {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 42px;
        padding: 0.72rem 1rem;
        border-radius: 6px;
        background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
        color: var(--white);
        font-size: 0.88rem;
        font-weight: 700;
        transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .header-emergency {
        border: 1px solid rgba(47, 93, 159, 0.22);
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.58));
        color: var(--brand-blue);
        -webkit-backdrop-filter: blur(14px) saturate(1.1);
        backdrop-filter: blur(14px) saturate(1.1);
    }

    .header-action:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 30px rgba(47, 93, 159, 0.22);
    }

    .hero {
        min-height: 800px;
        padding-top: 6rem;
    }

    .hero-content {
        width: min(620px, calc(100% - 2rem));
        margin-left: max(1rem, calc((100vw - var(--max)) / 2));
    }

    .hero-portrait {
        display: block;
        position: absolute;
        right: max(1rem, calc((100vw - var(--max)) / 2));
        bottom: 5rem;
        width: min(31vw, 360px);
        margin: 0;
        border: 1px solid rgba(255, 255, 255, 0.34);
        border-radius: 10px;
        background:
            linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
        -webkit-backdrop-filter: blur(14px) saturate(1.1);
        backdrop-filter: blur(14px) saturate(1.1);
        box-shadow: var(--shadow-strong), inset 0 1px 0 rgba(255, 255, 255, 0.18);
        overflow: hidden;
    }

    .hero-portrait img {
        width: 100%;
        aspect-ratio: 4 / 5;
        object-fit: cover;
    }

    .hero-portrait figcaption {
        padding: 0.85rem 1rem 1rem;
        background:
            linear-gradient(135deg, rgba(11, 16, 24, 0.5), rgba(11, 16, 24, 0.28));
        -webkit-backdrop-filter: blur(14px) saturate(1.1);
        backdrop-filter: blur(14px) saturate(1.1);
        color: rgba(255, 255, 255, 0.84);
        font-size: 0.9rem;
    }

    .hero-panel {
        margin-left: max(1rem, calc((100vw - var(--max)) / 2));
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .js [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
