/* =========================
   BASE
   ========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: #171717;
    background: #fbfaf8;
    overflow-x: hidden;
}

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

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

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


/* =========================
   NAVIGATION
   ========================= */

.site-header {
    position: relative;
    z-index: 100;
    background: rgba(251, 250, 248, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(30, 30, 30, 0.06);
}

.nav-wrap {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;

    border-radius: 12px;

    background: linear-gradient(
        135deg,
        #e31837,
        #a70c27
    );

    color: white;

    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 700;

    box-shadow:
        0 10px 28px rgba(197, 21, 43, 0.22);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-copy strong {
    font-size: 14px;
    font-weight: 700;
}

.brand-copy small {
    margin-top: 3px;

    color: #77716d;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: #4d4946;

    font-size: 13px;
    font-weight: 600;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.nav-links a:hover {
    color: #c9152b;
    transform: translateY(-1px);
}

.nav-cta {
    padding: 12px 20px;

    border-radius: 10px;

    background: #171717;
    color: white;

    font-size: 12px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.16);
}


/* =========================
   HERO
   ========================= */

.hero {
    position: relative;
    overflow: hidden;

    padding: 86px 0 46px;

    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(224, 24, 55, 0.07),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            #fbfaf8 0%,
            #ffffff 100%
        );
}

.hero-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(420px, 0.95fr);

    align-items: center;

    gap: 80px;

    min-height: 620px;
}


/* =========================
   HERO COPY
   ========================= */

.eyebrow {
    display: inline-flex;

    margin-bottom: 26px;
    padding: 8px 13px;

    border: 1px solid rgba(201, 21, 43, 0.14);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.7);

    color: #a9162d;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.17em;
}

.hero-copy h1 {
    max-width: 700px;

    color: #171717;

    font-family: "Playfair Display", serif;

    font-size:
        clamp(56px, 6.2vw, 86px);

    line-height: 0.98;
    letter-spacing: -0.045em;

    font-weight: 700;
}

.hero-copy h1 span {
    display: block;

    color: #c9152b;
}

.hero-description {
    max-width: 590px;

    margin-top: 30px;

    color: #34302d;

    font-size: 19px;
    line-height: 1.65;

    font-weight: 500;
}

.hero-supporting {
    max-width: 600px;

    margin-top: 15px;

    color: #706b67;

    font-size: 14px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 34px;
}

.btn {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 22px;

    border-radius: 11px;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.01em;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.btn-primary {
    background:
        linear-gradient(
            135deg,
            #e31837,
            #bc1029
        );

    color: white;

    box-shadow:
        0 14px 32px rgba(201, 21, 43, 0.22);
}

.btn-primary:hover {
    transform: translateY(-2px);

    box-shadow:
        0 18px 38px rgba(201, 21, 43, 0.3);
}

.btn-secondary {
    border: 1px solid rgba(23, 23, 23, 0.13);

    background: rgba(255, 255, 255, 0.75);

    color: #171717;
}

.btn-secondary:hover {
    transform: translateY(-2px);

    border-color: rgba(201, 21, 43, 0.3);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;

    gap: 18px;

    margin-top: 25px;

    color: #746e69;

    font-size: 11px;
}

.trust-item {
    display: flex;
    align-items: center;

    gap: 6px;
}

.trust-icon {
    width: 17px;
    height: 17px;

    display: inline-grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(201, 21, 43, 0.09);

    color: #c9152b;

    font-size: 10px;
    font-weight: 800;
}


/* =========================
   HERO IMAGE
   ========================= */

.hero-visual {
    position: relative;

    min-height: 590px;

    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.portrait-backdrop {
    position: absolute;

    width: 430px;
    height: 500px;

    bottom: 22px;

    border-radius:
        220px 220px 36px 36px;

    background:
        linear-gradient(
            145deg,
            #f7e9e9,
            #fdf9f7
        );

    box-shadow:
        inset 0 0 0 1px
        rgba(255, 255, 255, 0.7);
}

.portrait-ring {
    position: absolute;

    width: 465px;
    height: 465px;

    top: 44px;

    border:
        1px solid rgba(201, 21, 43, 0.09);

    border-radius: 50%;
}

.hero-image {
    position: relative;
    z-index: 3;

    max-height: 575px;
    width: auto;

    object-fit: contain;

    filter:
        drop-shadow(
            0 26px 32px
            rgba(42, 25, 26, 0.13)
        );
}


/* =========================
   FLOATING CARDS
   ========================= */

.floating-card {
    position: absolute;
    z-index: 5;

    border:
        1px solid rgba(255, 255, 255, 0.9);

    background:
        rgba(255, 255, 255, 0.84);

    backdrop-filter:
        blur(20px);

    box-shadow:
        0 18px 45px
        rgba(38, 25, 24, 0.1);
}

.card-top {
    top: 100px;
    right: -15px;

    width: 190px;

    padding: 18px;

    border-radius: 16px;
}

.floating-label {
    display: block;

    margin-bottom: 8px;

    color: #a9162d;

    font-size: 9px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.card-top strong {
    color: #22201e;

    font-family:
        "Playfair Display",
        serif;

    font-size: 16px;
    line-height: 1.3;
}

.card-bottom {
    left: -25px;
    bottom: 80px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 14px 17px;

    border-radius: 15px;
}

.mini-icon {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            #e31837,
            #ad0d27
        );

    color: white;

    font-weight: 800;
}

.card-bottom div:last-child {
    display: flex;
    flex-direction: column;

    gap: 2px;
}

.card-bottom span {
    color: #807873;

    font-size: 9px;

    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.card-bottom strong {
    color: #25211f;

    font-size: 11px;
}


/* =========================
   DECORATIVE GLOWS
   ========================= */

.hero-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(80px);

    pointer-events: none;
}

.hero-glow-one {
    width: 320px;
    height: 320px;

    top: -160px;
    right: 8%;

    background:
        rgba(227, 24, 55, 0.08);
}

.hero-glow-two {
    width: 250px;
    height: 250px;

    bottom: -120px;
    left: 5%;

    background:
        rgba(121, 15, 34, 0.05);
}


/* =========================
   PROTECTION STRIP
   ========================= */

.protection-strip {
    position: relative;
    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;

    padding: 19px 22px;

    border:
        1px solid rgba(40, 30, 30, 0.07);

    border-radius: 15px;

    background:
        rgba(255, 255, 255, 0.8);

    box-shadow:
        0 16px 44px
        rgba(40, 25, 25, 0.06);
}

.strip-label {
    color: #79716d;

    font-size: 9px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.14em;

    white-space: nowrap;
}

.protection-options {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;
}

.protection-options a {
    padding: 8px 12px;

    border-radius: 999px;

    background: #f8f3f2;

    color: #4e4744;

    font-size: 10px;
    font-weight: 700;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.protection-options a:hover {
    background: #c9152b;
    color: white;

    transform: translateY(-1px);
}


/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 980px) {

    .nav-links {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-copy h1,
    .hero-description,
    .hero-supporting {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        min-height: 550px;
    }

    .protection-strip {
        flex-direction: column;

        text-align: center;
    }

    .protection-options {
        justify-content: center;
    }
}

@media (max-width: 620px) {

    .container {
        width:
            min(
                100% - 30px,
                1180px
            );
    }

    .nav-wrap {
        min-height: 72px;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        padding-top: 60px;
    }

    .hero-copy h1 {
        font-size: 52px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 470px;
    }

    .portrait-backdrop {
        width: 330px;
        height: 400px;
    }

    .portrait-ring {
        width: 360px;
        height: 360px;
    }

    .hero-image {
        max-height: 460px;
    }

    .card-top {
        top: 70px;
        right: 0;

        width: 160px;
    }

    .card-bottom {
        left: 0;
        bottom: 45px;
    }
}/* =========================
   GOALS SECTION
   ========================= */

.goals-section {
    padding: 125px 0 135px;
    background: #ffffff;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 60px;
}

.section-kicker {
    display: inline-block;

    margin-bottom: 17px;

    color: #b3122b;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.18em;
}

.section-heading h2 {
    color: #171717;

    font-family: "Playfair Display", serif;
    font-size: clamp(44px, 5vw, 68px);
    line-height: 1.03;

    letter-spacing: -0.035em;
}

.section-heading h2 span {
    color: #c9152b;
}

.section-heading p {
    max-width: 620px;

    margin-top: 22px;

    color: #716c68;

    font-size: 15px;
    line-height: 1.8;
}

.goal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.goal-card {
    position: relative;

    min-height: 310px;

    display: flex;
    flex-direction: column;

    padding: 28px;

    border: 1px solid rgba(25, 20, 20, 0.07);
    border-radius: 20px;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #fbf8f7
        );

    overflow: hidden;

    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}

.goal-card::before {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    top: -70px;
    right: -70px;

    border-radius: 50%;

    background:
        rgba(201, 21, 43, 0.045);

    transition: transform 0.3s ease;
}

.goal-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(201, 21, 43, 0.18);

    box-shadow:
        0 24px 60px
        rgba(56, 35, 35, 0.1);
}

.goal-card:hover::before {
    transform: scale(1.35);
}

.goal-number {
    position: absolute;

    top: 24px;
    right: 25px;

    color: #b9b2ae;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.12em;
}

.goal-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    margin-bottom: 30px;

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            #f8e8eb,
            #fff7f8
        );

    color: #c9152b;

    font-size: 20px;
    font-weight: 800;
}

.goal-card h3 {
    max-width: 220px;

    margin-bottom: 13px;

    color: #211e1c;

    font-size: 20px;
    line-height: 1.25;
}

.goal-card p {
    max-width: 285px;

    color: #746e6a;

    font-size: 13px;
    line-height: 1.7;
}

.goal-link {
    margin-top: auto;
    padding-top: 28px;

    color: #a9162d;

    font-size: 11px;
    font-weight: 800;
}

.featured-goal {
    background:
        linear-gradient(
            145deg,
            #8d1026,
            #c9152b
        );

    border-color: transparent;
}

.featured-goal::before {
    background:
        rgba(255, 255, 255, 0.09);
}

.featured-goal .goal-number {
    color:
        rgba(255, 255, 255, 0.55);
}

.featured-goal .goal-icon {
    background:
        rgba(255, 255, 255, 0.14);

    color: white;
}

.featured-goal h3 {
    color: white;
}

.featured-goal p {
    color:
        rgba(255, 255, 255, 0.76);
}

.featured-goal .goal-link {
    color: white;
}


/* =========================
   GOALS RESPONSIVE
   ========================= */

@media (max-width: 980px) {

    .goal-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
}

@media (max-width: 620px) {

    .goals-section {
        padding: 85px 0 95px;
    }

    .section-heading {
        margin-bottom: 42px;
    }

    .section-heading h2 {
        font-size: 44px;
    }

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

    .goal-card {
        min-height: 270px;
    }
}/* =========================
   FINANCIAL PROTECTION CHECK
   ========================= */

.protection-check {
    position: relative;
    padding: 130px 0;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #64101d 0%,
            #8e1025 45%,
            #b5142e 100%
        );
}

.protection-check::before {
    content: "";

    position: absolute;
    width: 500px;
    height: 500px;

    top: -260px;
    left: -180px;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,0.08);
}

.protection-check::after {
    content: "";

    position: absolute;
    width: 650px;
    height: 650px;

    right: -300px;
    bottom: -380px;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.035);
}

.protection-check-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;

    gap: 85px;
    align-items: center;
}


/* LEFT SIDE */

.check-intro {
    color: white;
}

.section-kicker.light {
    color:
        rgba(255,255,255,0.72);
}

.check-intro h2 {
    max-width: 520px;

    font-family: "Playfair Display", serif;
    font-size: clamp(46px, 5vw, 70px);
    line-height: 1.02;

    letter-spacing: -0.04em;
}

.check-intro h2 span {
    display: block;
    color: #ffd9de;
}

.check-lead {
    max-width: 540px;

    margin-top: 25px;

    color:
        rgba(255,255,255,0.76);

    font-size: 15px;
    line-height: 1.8;
}

.check-benefits {
    margin-top: 42px;

    display: flex;
    flex-direction: column;

    gap: 24px;
}

.check-benefit {
    display: grid;
    grid-template-columns: 45px 1fr;

    gap: 15px;
}

.check-benefit > span {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background:
        rgba(255,255,255,0.1);

    border:
        1px solid rgba(255,255,255,0.13);

    font-size: 10px;
    font-weight: 800;
}

.check-benefit strong {
    display: block;

    margin-bottom: 5px;

    font-size: 14px;
}

.check-benefit p {
    max-width: 390px;

    color:
        rgba(255,255,255,0.63);

    font-size: 12px;
    line-height: 1.65;
}

.check-note {
    margin-top: 38px;

    display: inline-flex;

    padding: 10px 14px;

    border:
        1px solid rgba(255,255,255,0.13);

    border-radius: 999px;

    background:
        rgba(255,255,255,0.06);

    color:
        rgba(255,255,255,0.72);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.05em;
}


/* FORM CARD */

.check-form-card {
    padding: 38px;

    border-radius: 26px;

    background:
        rgba(255,255,255,0.97);

    border:
        1px solid rgba(255,255,255,0.7);

    box-shadow:
        0 35px 80px
        rgba(45, 8, 14, 0.28);
}

.form-heading {
    margin-bottom: 30px;
}

.form-heading > span {
    display: inline-block;

    margin-bottom: 10px;

    color: #b3122b;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.form-heading h3 {
    color: #1e1b19;

    font-family: "Playfair Display", serif;
    font-size: 32px;
    line-height: 1.15;
}

.form-heading p {
    margin-top: 8px;

    color: #817975;

    font-size: 12px;
}


/* FORM */

.protection-form {
    display: flex;
    flex-direction: column;

    gap: 21px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;

    gap: 8px;
}

.form-group label {
    color: #514a46;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.03em;
}

.form-group input,
.form-group select {
    width: 100%;
    height: 48px;

    padding: 0 14px;

    border:
        1px solid rgba(34, 28, 25, 0.1);

    border-radius: 10px;

    outline: none;

    background: #fbfaf9;

    color: #27221f;

    font-family: inherit;
    font-size: 12px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color:
        rgba(201,21,43,0.4);

    box-shadow:
        0 0 0 4px
        rgba(201,21,43,0.07);

    background: white;
}


/* CHOICES */

.choice-grid {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);

    gap: 9px;
}

.choice-card {
    position: relative;

    min-height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 8px;

    border:
        1px solid rgba(34,28,25,0.1);

    border-radius: 10px;

    background: #fbfaf9;

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.choice-card:hover {
    transform: translateY(-1px);

    border-color:
        rgba(201,21,43,0.25);
}

.choice-card input {
    position: absolute;

    opacity: 0;
    pointer-events: none;
}

.choice-card span {
    color: #655e59;

    font-size: 10px;
    font-weight: 700;
}

.choice-card:has(input:checked) {
    border-color:
        rgba(201,21,43,0.4);

    background:
        rgba(201,21,43,0.07);
}

.choice-card:has(input:checked) span {
    color: #b3122b;
}


/* SUBMIT */

.form-submit {
    min-height: 54px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 18px;

    border: none;
    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            #e31837,
            #ad0d27
        );

    color: white;

    font-family: inherit;
    font-size: 11px;
    font-weight: 800;

    cursor: pointer;

    box-shadow:
        0 14px 28px
        rgba(201,21,43,0.22);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.form-submit:hover {
    transform: translateY(-2px);

    box-shadow:
        0 18px 36px
        rgba(201,21,43,0.3);
}

.form-submit span {
    font-size: 18px;
}

.privacy-copy {
    color: #9a928d;

    font-size: 9px;
    line-height: 1.6;

    text-align: center;
}


/* RESPONSIVE */

@media (max-width: 980px) {

    .protection-check-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .check-intro {
        text-align: center;
    }

    .check-intro h2,
    .check-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .check-benefits {
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;

        text-align: left;
    }
}

@media (max-width: 620px) {

    .protection-check {
        padding: 90px 0;
    }

    .check-form-card {
        padding: 24px 18px;
        border-radius: 20px;
    }

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

    .choice-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .check-intro h2 {
        font-size: 44px;
    }
}/* =========================
   MEET JENNY
   ========================= */

.about-section {
    position: relative;

    padding: 140px 0;

    background:
        linear-gradient(
            180deg,
            #fbfaf8 0%,
            #ffffff 100%
        );

    overflow: hidden;
}

.about-grid {
    display: grid;

    grid-template-columns:
        minmax(380px, 0.9fr)
        minmax(0, 1.1fr);

    gap: 95px;

    align-items: center;
}


/* =========================
   ABOUT IMAGE
   ========================= */

.about-visual {
    position: relative;

    min-height: 650px;

    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.about-image-frame {
    position: relative;

    width: 100%;
    max-width: 470px;

    height: 620px;

    overflow: hidden;

    border-radius:
        220px 220px 30px 30px;

    background:
        linear-gradient(
            145deg,
            #f7e7e9,
            #fbf5f2
        );

    box-shadow:
        0 35px 80px
        rgba(57, 35, 35, 0.12);
}

.about-image-bg {
    position: absolute;

    width: 420px;
    height: 420px;

    top: 70px;
    left: 50%;

    transform: translateX(-50%);

    border-radius: 50%;

    border:
        1px solid rgba(201,21,43,0.08);
}

.about-image {
    position: absolute;

    bottom: 0;
    left: 50%;

    transform: translateX(-50%);

    width: auto;
    height: 98%;

    object-fit: contain;

    filter:
        drop-shadow(
            0 24px 30px
            rgba(49, 31, 31, 0.12)
        );
}


/* =========================
   ABOUT BADGE
   ========================= */

.about-badge {
    position: absolute;

    right: -20px;
    bottom: 70px;

    width: 215px;

    padding: 18px 20px;

    border-radius: 18px;

    background:
        rgba(255,255,255,0.92);

    border:
        1px solid rgba(255,255,255,0.9);

    backdrop-filter: blur(20px);

    box-shadow:
        0 22px 55px
        rgba(45, 30, 30, 0.13);
}

.about-badge span {
    display: block;

    margin-bottom: 7px;

    color: #b3122b;

    font-size: 9px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.about-badge strong {
    color: #211e1c;

    font-family:
        "Playfair Display",
        serif;

    font-size: 17px;
    line-height: 1.25;
}


/* =========================
   ABOUT COPY
   ========================= */

.about-copy h2 {
    max-width: 660px;

    margin-top: 6px;

    color: #171717;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(46px, 5vw, 70px);

    line-height: 1.03;

    letter-spacing: -0.04em;
}

.about-copy h2 span {
    display: block;

    margin-top: 8px;

    color: #c9152b;
}

.about-lead {
    margin-top: 30px;

    color: #292523 !important;

    font-size: 18px !important;
    font-weight: 600;
}

.about-copy > p {
    max-width: 650px;

    margin-top: 16px;

    color: #746e69;

    font-size: 14px;
    line-height: 1.85;
}


/* =========================
   QUOTE
   ========================= */

.about-quote {
    position: relative;

    max-width: 630px;

    margin-top: 32px;

    padding:
        20px 20px 20px 50px;

    border-left:
        3px solid #c9152b;

    background:
        linear-gradient(
            90deg,
            rgba(201,21,43,0.05),
            transparent
        );

    border-radius:
        0 12px 12px 0;
}

.about-quote > span {
    position: absolute;

    left: 18px;
    top: 12px;

    color: #c9152b;

    font-family:
        "Playfair Display",
        serif;

    font-size: 35px;
}

.about-quote p {
    color: #403a36;

    font-family:
        "Playfair Display",
        serif;

    font-size: 18px;
    line-height: 1.55;
}


/* =========================
   CREDENTIALS
   ========================= */

.credential-grid {
    display: grid;

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

    gap: 11px;

    margin-top: 35px;
}

.credential-card {
    min-height: 120px;

    padding: 17px;

    border:
        1px solid rgba(32,26,24,0.07);

    border-radius: 14px;

    background: #fff;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.credential-card:hover {
    transform: translateY(-4px);

    border-color:
        rgba(201,21,43,0.17);

    box-shadow:
        0 16px 38px
        rgba(46,31,31,0.07);
}

.credential-card > span {
    display: block;

    margin-bottom: 19px;

    color: #c9152b;

    font-size: 9px;
    font-weight: 800;
}

.credential-card strong {
    display: block;

    color: #2a2522;

    font-size: 12px;
    line-height: 1.4;
}

.credential-card small {
    display: block;

    margin-top: 4px;

    color: #918984;

    font-size: 9px;
}


/* =========================
   ABOUT ACTIONS
   ========================= */

.about-actions {
    display: flex;
    align-items: center;

    gap: 25px;

    margin-top: 34px;
}

.about-text-link {
    color: #a9162d;

    font-size: 11px;
    font-weight: 800;

    transition:
        transform 0.2s ease,
        color 0.2s ease;
}

.about-text-link:hover {
    color: #e31837;
    transform: translateX(3px);
}


/* =========================
   ABOUT RESPONSIVE
   ========================= */

@media (max-width: 980px) {

    .about-grid {
        grid-template-columns: 1fr;

        gap: 65px;
    }

    .about-visual {
        min-height: 610px;
    }

    .about-copy {
        text-align: center;
    }

    .about-copy h2,
    .about-copy > p,
    .about-quote {
        margin-left: auto;
        margin-right: auto;
    }

    .credential-grid {
        max-width: 700px;

        margin-left: auto;
        margin-right: auto;
    }

    .about-actions {
        justify-content: center;
    }
}


@media (max-width: 620px) {

    .about-section {
        padding: 90px 0;
    }

    .about-visual {
        min-height: 500px;
    }

    .about-image-frame {
        height: 490px;

        border-radius:
            170px 170px 24px 24px;
    }

    .about-badge {
        right: 0;
        bottom: 30px;

        width: 175px;
    }

    .about-copy h2 {
        font-size: 43px;
    }

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

    .credential-card {
        min-height: auto;
    }

    .about-actions {
        flex-direction: column;
    }
}/* =========================
   ADVISORY PROCESS
   ========================= */

.process-section {
    padding: 135px 0;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8f5f3 100%
        );

    border-top:
        1px solid rgba(30, 24, 22, 0.05);
}

.process-heading {
    max-width: 780px;

    margin-bottom: 65px;
}

.process-heading h2 {
    max-width: 720px;

    color: #171717;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(44px, 5vw, 68px);

    line-height: 1.04;

    letter-spacing: -0.04em;
}

.process-heading h2 span {
    display: block;

    color: #c9152b;
}

.process-heading p {
    max-width: 610px;

    margin-top: 22px;

    color: #756e69;

    font-size: 14px;
    line-height: 1.8;
}


/* =========================
   PROCESS CARDS
   ========================= */

.process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;
}

.process-card {
    position: relative;

    min-height: 310px;

    padding: 27px;

    display: flex;
    flex-direction: column;

    border:
        1px solid rgba(33, 27, 24, 0.07);

    border-radius: 20px;

    background:
        rgba(255,255,255,0.88);

    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.process-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(201,21,43,0.18);

    box-shadow:
        0 22px 55px
        rgba(42,29,29,0.08);
}

.process-number {
    position: absolute;

    top: 25px;
    right: 25px;

    color: #b7afaa;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.13em;
}

.process-icon {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    margin-bottom: 45px;

    border-radius: 13px;

    background:
        rgba(201,21,43,0.07);

    color: #bd142d;

    font-size: 18px;
    font-weight: 800;
}

.process-card h3 {
    margin-bottom: 13px;

    color: #25211f;

    font-size: 18px;
    line-height: 1.3;
}

.process-card p {
    color: #756e69;

    font-size: 12px;
    line-height: 1.75;
}

.process-card-featured {
    background:
        linear-gradient(
            145deg,
            #7d1022,
            #be1530
        );

    border-color: transparent;
}

.process-card-featured .process-number {
    color:
        rgba(255,255,255,0.5);
}

.process-card-featured .process-icon {
    background:
        rgba(255,255,255,0.12);

    color: white;
}

.process-card-featured h3 {
    color: white;
}

.process-card-featured p {
    color:
        rgba(255,255,255,0.72);
}


/* =========================
   PROCESS CTA
   ========================= */

.process-cta {
    margin-top: 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 25px 28px;

    border:
        1px solid rgba(36,28,25,0.07);

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 14px 40px
        rgba(43,30,30,0.045);
}

.process-cta > div {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.process-cta span {
    color: #9a918c;

    font-size: 9px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.process-cta strong {
    color: #292422;

    font-family:
        "Playfair Display",
        serif;

    font-size: 19px;
}


/* =========================
   PROCESS RESPONSIVE
   ========================= */

@media (max-width: 980px) {

    .process-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
}

@media (max-width: 620px) {

    .process-section {
        padding: 90px 0;
    }

    .process-heading {
        margin-bottom: 45px;
    }

    .process-heading h2 {
        font-size: 43px;
    }

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

    .process-card {
        min-height: 260px;
    }

    .process-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-cta .btn {
        width: 100%;
    }
}/* =========================
   FINANCIAL SOLUTIONS
   ========================= */

.solutions-section {
    padding: 140px 0;

    background:
        linear-gradient(
            180deg,
            #171516 0%,
            #21191b 100%
        );

    color: white;
}

.solutions-heading {
    max-width: 790px;

    margin-bottom: 65px;
}

.solutions-heading .section-kicker {
    color:
        rgba(255,255,255,0.58);
}

.solutions-heading h2 {
    max-width: 720px;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(46px, 5vw, 70px);

    line-height: 1.03;

    letter-spacing: -0.04em;
}

.solutions-heading h2 span {
    display: block;

    color: #f25b70;
}

.solutions-heading p {
    max-width: 650px;

    margin-top: 23px;

    color:
        rgba(255,255,255,0.63);

    font-size: 14px;
    line-height: 1.85;
}


/* =========================
   SOLUTION GRID
   ========================= */

.solutions-grid {
    display: grid;

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

    gap: 16px;
}

.solution-card {
    min-height: 390px;

    display: flex;
    flex-direction: column;

    padding: 28px;

    border:
        1px solid rgba(255,255,255,0.08);

    border-radius: 20px;

    background:
        rgba(255,255,255,0.045);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.solution-card:hover {
    transform: translateY(-6px);

    background:
        rgba(255,255,255,0.07);

    border-color:
        rgba(242,91,112,0.28);
}

.solution-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 35px;
}

.solution-number {
    color:
        rgba(255,255,255,0.33);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.14em;
}

.solution-icon {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background:
        rgba(242,91,112,0.12);

    color: #f25b70;

    font-size: 18px;
    font-weight: 800;
}

.solution-card h3 {
    max-width: 260px;

    margin-bottom: 13px;

    font-size: 21px;
    line-height: 1.3;
}

.solution-card > p {
    color:
        rgba(255,255,255,0.61);

    font-size: 12px;
    line-height: 1.75;
}

.solution-card ul {
    display: flex;
    flex-direction: column;

    gap: 8px;

    margin-top: 24px;

    list-style: none;
}

.solution-card li {
    position: relative;

    padding-left: 15px;

    color:
        rgba(255,255,255,0.53);

    font-size: 10px;
    line-height: 1.5;
}

.solution-card li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 6px;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #e31837;
}

.solution-card > a {
    margin-top: auto;
    padding-top: 30px;

    color: #f47787;

    font-size: 10px;
    font-weight: 800;

    transition:
        transform 0.2s ease,
        color 0.2s ease;
}

.solution-card > a:hover {
    transform: translateX(3px);

    color: white;
}


/* =========================
   FEATURED SOLUTION
   ========================= */

.solution-dark {
    background:
        linear-gradient(
            145deg,
            #7d1022,
            #bc1530
        );

    border-color: transparent;
}

.solution-dark:hover {
    background:
        linear-gradient(
            145deg,
            #8d1026,
            #cd1734
        );
}

.solution-dark .solution-icon {
    background:
        rgba(255,255,255,0.13);

    color: white;
}

.solution-dark > a {
    color: white;
}


/* =========================
   SOLUTION CTA
   ========================= */

.solutions-note {
    margin-top: 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 28px 30px;

    border:
        1px solid rgba(255,255,255,0.08);

    border-radius: 18px;

    background:
        rgba(255,255,255,0.045);
}

.solutions-note > div {
    max-width: 650px;
}

.solutions-note span {
    display: block;

    margin-bottom: 5px;

    color:
        rgba(255,255,255,0.43);

    font-size: 9px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.solutions-note strong {
    display: block;

    color: white;

    font-family:
        "Playfair Display",
        serif;

    font-size: 20px;
    line-height: 1.35;
}

.solutions-note p {
    margin-top: 7px;

    color:
        rgba(255,255,255,0.52);

    font-size: 11px;
    line-height: 1.6;
}


/* =========================
   SOLUTION RESPONSIVE
   ========================= */

@media (max-width: 980px) {

    .solutions-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .solutions-note {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 620px) {

    .solutions-section {
        padding: 90px 0;
    }

    .solutions-heading h2 {
        font-size: 43px;
    }

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

    .solution-card {
        min-height: 340px;
    }

    .solutions-note .btn {
        width: 100%;
    }
}/* =========================
   WHY PRU LIFE UK
   ========================= */

.pru-section {
    padding: 140px 0;

    background:
        linear-gradient(
            180deg,
            #fff 0%,
            #fbf7f6 100%
        );
}

.pru-grid {
    display: grid;

    grid-template-columns:
        0.95fr 1.05fr;

    gap: 85px;

    align-items: center;
}

.pru-copy h2 {
    max-width: 650px;

    color: #171717;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(46px, 5vw, 68px);

    line-height: 1.03;

    letter-spacing: -0.04em;
}

.pru-copy h2 span {
    display: block;

    margin-top: 7px;

    color: #c9152b;
}

.pru-lead {
    margin-top: 27px !important;

    color: #2d2926 !important;

    font-size: 17px !important;
    font-weight: 600;
}

.pru-copy p {
    max-width: 620px;

    margin-top: 15px;

    color: #736d69;

    font-size: 14px;
    line-height: 1.85;
}

.pru-copy .btn {
    margin-top: 30px;
}


/* =========================
   PRU PANEL
   ========================= */

.pru-panel {
    padding: 34px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            #851124,
            #c9152b
        );

    box-shadow:
        0 35px 80px
        rgba(90, 19, 31, 0.22);
}

.pru-panel-header {
    padding-bottom: 25px;

    border-bottom:
        1px solid rgba(255,255,255,0.14);
}

.pru-panel-header span {
    display: block;

    margin-bottom: 8px;

    color:
        rgba(255,255,255,0.62);

    font-size: 9px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.pru-panel-header strong {
    color: white;

    font-family:
        "Playfair Display",
        serif;

    font-size: 28px;
    line-height: 1.3;
}

.pru-feature-list {
    margin-top: 26px;

    display: flex;
    flex-direction: column;

    gap: 23px;
}

.pru-feature {
    display: grid;

    grid-template-columns: 43px 1fr;

    gap: 14px;
}

.pru-feature > span {
    width: 39px;
    height: 39px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background:
        rgba(255,255,255,0.11);

    border:
        1px solid rgba(255,255,255,0.12);

    color: white;

    font-size: 9px;
    font-weight: 800;
}

.pru-feature strong {
    display: block;

    color: white;

    font-size: 13px;
}

.pru-feature p {
    margin-top: 5px;

    color:
        rgba(255,255,255,0.66);

    font-size: 11px;
    line-height: 1.65;
}

.pru-panel-note {
    margin-top: 29px;

    padding: 15px;

    border-radius: 12px;

    background:
        rgba(0,0,0,0.09);

    color:
        rgba(255,255,255,0.59);

    font-size: 9px;
    line-height: 1.7;
}


/* =========================
   DISCLOSURE
   ========================= */

.disclosure-section {
    padding: 0 0 95px;

    background: #fbf7f6;
}

.disclosure-card {
    padding: 25px 28px;

    border:
        1px solid rgba(35,28,26,0.07);

    border-radius: 16px;

    background: #ffffff;
}

.disclosure-card > span {
    display: block;

    margin-bottom: 10px;

    color: #aa142b;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.14em;
}

.disclosure-card p {
    max-width: 1000px;

    color: #8a827d;

    font-size: 9px;
    line-height: 1.75;
}

.disclosure-card p + p {
    margin-top: 8px;
}


/* =========================
   PRU RESPONSIVE
   ========================= */

@media (max-width: 980px) {

    .pru-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }
}

@media (max-width: 620px) {

    .pru-section {
        padding: 90px 0;
    }

    .pru-copy h2 {
        font-size: 43px;
    }

    .pru-panel {
        padding: 25px 20px;

        border-radius: 20px;
    }

    .pru-panel-header strong {
        font-size: 24px;
    }

    .disclosure-card {
        padding: 20px;
    }
}/* =========================
   FINAL CTA
   ========================= */

.final-cta {
    padding: 115px 0;

    background:
        linear-gradient(
            180deg,
            #fbf7f6 0%,
            #ffffff 100%
        );
}

.final-cta-card {
    position: relative;

    display: grid;

    grid-template-columns:
        1.15fr 0.85fr;

    gap: 55px;

    padding: 65px;

    border-radius: 30px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #74101f 0%,
            #a41129 46%,
            #cf1734 100%
        );

    box-shadow:
        0 40px 90px
        rgba(100, 16, 31, 0.22);
}

.final-cta-card::before {
    content: "";

    position: absolute;

    width: 460px;
    height: 460px;

    right: -230px;
    top: -260px;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,0.1);
}

.final-cta-copy {
    position: relative;
    z-index: 2;
}

.final-cta-copy h2 {
    max-width: 660px;

    color: white;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(48px, 5vw, 70px);

    line-height: 1.03;

    letter-spacing: -0.04em;
}

.final-cta-copy h2 span {
    display: block;

    color: #ffd4da;
}

.final-cta-copy > p {
    max-width: 580px;

    margin-top: 23px;

    color:
        rgba(255,255,255,0.72);

    font-size: 14px;
    line-height: 1.85;
}

.final-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 33px;
}

.btn-light {
    background: white;
    color: #a81229;
}

.btn-outline-light {
    border:
        1px solid rgba(255,255,255,0.28);

    color: white;

    background:
        rgba(255,255,255,0.05);
}


/* =========================
   CONTACT CARD
   ========================= */

.contact-card {
    position: relative;
    z-index: 2;

    padding: 30px;

    border-radius: 22px;

    background:
        rgba(255,255,255,0.96);

    box-shadow:
        0 25px 60px
        rgba(64, 10, 19, 0.2);
}

.contact-label {
    display: block;

    margin-bottom: 9px;

    color: #b3122b;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.15em;
}

.contact-card h3 {
    max-width: 360px;

    color: #211e1c;

    font-family:
        "Playfair Display",
        serif;

    font-size: 28px;
    line-height: 1.25;
}

.contact-list {
    margin-top: 27px;

    display: flex;
    flex-direction: column;
}

.contact-item {
    padding: 17px 0;

    border-bottom:
        1px solid rgba(35,28,25,0.07);

    display: flex;
    flex-direction: column;

    gap: 4px;
}

.contact-item span {
    color: #9b928d;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 0.12em;
}

.contact-item strong {
    color: #2f2926;

    font-size: 12px;
    line-height: 1.5;
}

a.contact-item:hover strong {
    color: #c9152b;
}

.contact-note {
    margin-top: 20px;

    padding: 11px 13px;

    border-radius: 10px;

    background:
        rgba(201,21,43,0.05);

    color: #8e1730;

    font-size: 9px;
    font-weight: 700;

    text-align: center;
}


/* =========================
   FOOTER
   ========================= */

.site-footer {
    padding: 75px 0 28px;

    background: #151314;

    color: white;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.7fr 0.65fr 0.65fr;

    gap: 65px;

    padding-bottom: 55px;
}

.footer-logo .brand-copy strong {
    color: white;
}

.footer-logo .brand-copy small {
    color:
        rgba(255,255,255,0.45);
}

.footer-brand > p {
    max-width: 430px;

    margin-top: 22px;

    color:
        rgba(255,255,255,0.5);

    font-size: 11px;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.footer-links > span {
    margin-bottom: 7px;

    color:
        rgba(255,255,255,0.36);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 0.15em;
}

.footer-links a {
    color:
        rgba(255,255,255,0.7);

    font-size: 11px;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-links a:hover {
    color: #f45c72;

    transform: translateX(2px);
}

.footer-bottom {
    padding-top: 23px;

    border-top:
        1px solid rgba(255,255,255,0.07);

    display: flex;
    justify-content: space-between;

    gap: 30px;
}

.footer-bottom p {
    max-width: 650px;

    color:
        rgba(255,255,255,0.34);

    font-size: 8px;
    line-height: 1.7;
}


/* =========================
   FINAL CTA RESPONSIVE
   ========================= */

@media (max-width: 980px) {

    .final-cta-card {
        grid-template-columns: 1fr;

        padding: 50px;
    }

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

    .footer-brand {
        grid-column:
            1 / -1;
    }
}

@media (max-width: 620px) {

    .final-cta {
        padding: 80px 0;
    }

    .final-cta-card {
        padding: 34px 22px;

        border-radius: 22px;
    }

    .final-cta-copy h2 {
        font-size: 43px;
    }

    .final-actions {
        flex-direction: column;
    }

    .final-actions .btn {
        width: 100%;
    }

    .contact-card {
        padding: 23px 19px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 38px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}/* =========================
   STICKY HEADER POLISH
   ========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header.scrolled {
    background: rgba(251, 250, 248, 0.96);

    box-shadow:
        0 10px 35px
        rgba(36, 25, 25, 0.07);
}

.nav-links a.active {
    color: #c9152b;
}/* =========================
   MOBILE MENU BUTTON
   ========================= */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    padding: 0;

    border: 1px solid rgba(30, 25, 23, 0.08);
    border-radius: 11px;

    background: rgba(255, 255, 255, 0.75);

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 17px;
    height: 1.5px;

    background: #292421;

    border-radius: 5px;

    transition:
        transform 0.3s ease,
        opacity 0.2s ease;
}


/* OPEN ICON */

.menu-toggle.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}


/* =========================
   MOBILE NAVIGATION
   ========================= */

.mobile-menu {
    display: none;
}


/* =========================
   TABLET / MOBILE
   ========================= */

@media (max-width: 980px) {

    .menu-toggle {
        display: flex;
    }

    .mobile-menu {
        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        display: block;

        padding:
            12px
            max(24px, calc((100% - 1180px) / 2));

        background:
            rgba(251, 250, 248, 0.98);

        backdrop-filter: blur(25px);

        border-top:
            1px solid rgba(30, 25, 23, 0.05);

        box-shadow:
            0 25px 55px
            rgba(35, 25, 25, 0.1);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

        pointer-events: none;

        transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0.25s ease;
    }

    .mobile-menu.active {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);

        pointer-events: auto;
    }

    .mobile-nav-links {
        display: flex;
        flex-direction: column;
    }

    .mobile-nav-links a {
        display: flex;
        align-items: center;

        gap: 16px;

        padding: 15px 5px;

        border-bottom:
            1px solid rgba(32, 27, 24, 0.06);

        color: #292421;

        font-family:
            "Playfair Display",
            serif;

        font-size: 18px;
    }

    .mobile-nav-links a span {
        color: #c9152b;

        font-family:
            "DM Sans",
            sans-serif;

        font-size: 8px;
        font-weight: 800;

        letter-spacing: 0.1em;
    }

    .mobile-menu-cta {
        min-height: 51px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        margin-top: 15px;
        padding: 0 17px;

        border-radius: 11px;

        background:
            linear-gradient(
                135deg,
                #e31837,
                #ad0d27
            );

        color: white;

        font-size: 11px;
        font-weight: 800;
    }

    .mobile-menu-cta span {
        font-size: 18px;
    }

    .mobile-menu-contact {
        padding: 15px 5px 8px;

        color: #9b928d;

        font-size: 8px;
        font-weight: 700;

        text-transform: uppercase;
        letter-spacing: 0.1em;
    }
}/* =========================
   SCROLL REVEAL
   ========================= */

.reveal {
    opacity: 0;
    transform: translateY(28px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}/* =========================
   HERO MICRO MOTION
   ========================= */

.card-top {
    animation: floatTop 5.5s ease-in-out infinite;
}

.card-bottom {
    animation: floatBottom 6.5s ease-in-out infinite;
}

.portrait-ring {
    animation: ringDrift 8s ease-in-out infinite;
}

@keyframes floatTop {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes floatBottom {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(7px);
    }
}

@keyframes ringDrift {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.025);
        opacity: 0.7;
    }
}


/* Respect reduced-motion preference */

@media (prefers-reduced-motion: reduce) {

    .card-top,
    .card-bottom,
    .portrait-ring {
        animation: none;
    }

    .reveal {
        transition: none;
    }
}/* =========================
   FORM INTERACTION POLISH
   ========================= */

.form-group input:invalid:not(:placeholder-shown) {
    border-color: rgba(201, 21, 43, 0.42);
}

.form-group input:valid:not(:placeholder-shown) {
    border-color: rgba(47, 133, 90, 0.28);
}

.choice-card {
    user-select: none;
}

.choice-card:has(input:checked) {
    box-shadow:
        0 8px 20px
        rgba(201, 21, 43, 0.08);
}

.form-submit:active {
    transform: translateY(0);
}

.form-success {
    display: none;

    padding: 15px 17px;

    border-radius: 12px;

    background:
        rgba(38, 126, 81, 0.07);

    border:
        1px solid rgba(38, 126, 81, 0.14);

    color: #315e48;
}

.form-success.visible {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-success strong {
    font-size: 12px;
}

.form-success span {
    font-size: 10px;
    line-height: 1.6;
}/* =========================
   FORM VALIDATION
   ========================= */

.form-group input.field-error,
.form-group select.field-error {
    border-color: #c9152b;

    background:
        rgba(201, 21, 43, 0.025);

    box-shadow:
        0 0 0 4px
        rgba(201, 21, 43, 0.07);
}/* =========================
   PREMIUM MOBILE HERO FIX
   ========================= */

@media (max-width: 620px) {

    /* HERO */

    .hero {
        padding-top: 44px;
        padding-bottom: 30px;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;

        gap: 30px;

        min-height: auto;
    }


    /* COPY FIRST */

    .hero-copy {
        order: 1;

        text-align: left;
    }

    .eyebrow {
        margin-bottom: 18px;

        font-size: 8px;
        letter-spacing: 0.13em;
    }

    .hero-copy h1 {
        font-size: clamp(46px, 14vw, 58px);

        line-height: 0.98;

        letter-spacing: -0.045em;
    }

    .hero-description {
        margin-top: 22px;

        font-size: 16px;
        line-height: 1.55;
    }

    .hero-supporting {
        margin-top: 12px;

        font-size: 12px;
        line-height: 1.7;
    }


    /* BUTTONS */

    .hero-actions {
        margin-top: 25px;

        gap: 10px;
    }

    .hero-actions .btn {
        min-height: 48px;
    }


    /* TRUST */

    .hero-trust {
        justify-content: flex-start;

        gap: 10px 15px;

        margin-top: 18px;

        font-size: 9px;
    }


    /* =========================
       JENNY PORTRAIT
       ========================= */

    .hero-visual {
        order: 2;

        width: 100%;

        min-height: 480px;

        margin-top: 5px;

        overflow: visible;
    }

    .portrait-backdrop {
        width: calc(100% - 24px);
        max-width: 390px;

        height: 450px;

        bottom: 0;

        border-radius:
            180px 180px 26px 26px;
    }

    .portrait-ring {
        width: 330px;
        height: 330px;

        top: 35px;
    }

    .hero-image {
        max-height: 455px;

        bottom: 0;

        object-fit: contain;
    }


    /* =========================
       FLOATING CARD — TOP
       ========================= */

    .card-top {
        top: 58px;
        right: -2px;

        width: 145px;

        padding: 13px 14px;

        border-radius: 14px;
    }

    .card-top .floating-label {
        margin-bottom: 5px;

        font-size: 7px;
        line-height: 1.35;
    }

    .card-top strong {
        font-size: 13px;
        line-height: 1.25;
    }


    /* =========================
       FLOATING CARD — BOTTOM
       ========================= */

    .card-bottom {
        left: -2px;
        bottom: 42px;

        padding: 10px 13px;

        gap: 9px;

        border-radius: 13px;
    }

    .card-bottom .mini-icon {
        width: 32px;
        height: 32px;

        border-radius: 9px;

        font-size: 13px;
    }

    .card-bottom span {
        font-size: 7px;
    }

    .card-bottom strong {
        font-size: 9px;
    }


    /* =========================
       GOAL STRIP
       ========================= */

    .protection-strip {
        margin-top: 18px;

        padding: 18px 14px;

        border-radius: 14px;
    }

    .strip-label {
        margin-bottom: 5px;

        font-size: 8px;
    }

    .protection-options {
        display: grid;

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

        width: 100%;

        gap: 7px;
    }

    .protection-options a {
        display: flex;
        align-items: center;
        justify-content: center;

        min-height: 35px;

        padding: 7px 5px;

        font-size: 8px;

        text-align: center;
    }
}/* =========================
   FINAL MOBILE CARD FIX
   ========================= */

@media (max-width: 620px) {

    .hero-visual {
        padding-top: 85px;
    }

    .card-top {
        top: 8px;
        right: 12px;

        width: 150px;

        transform: none !important;
        animation: none !important;
    }

    .card-bottom {
        left: 10px;
        bottom: 28px;

        transform: none !important;
        animation: none !important;
    }

    .hero-image {
        max-height: 430px;
    }

    .portrait-ring {
        top: 95px;
    }
}