﻿/* RAF-Q2-2026.updated.css */
:root {
    --kp-blue: #0f436f;
    --kp-blue-2: #0067b1;
    --kp-blue-soft: #eaf4fb;
    --kp-orange: #f2a06c;
    --kp-orange-soft: #f9ece2;
    --kp-text: #16324f;
    --kp-muted: #5d7083;
    --kp-surface: #ffffff;
    --kp-surface-alt: #f7fafc;
    --kp-shadow: 0 16px 40px rgba(15, 67, 111, 0.12);
    --kp-radius-xl: 28px;
    --kp-radius-lg: 20px;
    --kp-radius-md: 14px;
}

html {
    scroll-behavior: smooth;
}
/* ✅ Header image (top banner) */
.raf-header-image {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.raf-header-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* ✅ Slight spacing alignment with your existing layout */
h3, h4, .headertext {
    margin-top: 10px;
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--kp-text);
    background:
        radial-gradient(circle at top left, rgba(242, 160, 108, 0.10), transparent 30%),
        linear-gradient(180deg, #f4f9fd 0%, #ffffff 28%, #ffffff 100%);
}

a {
    color: var(--kp-blue-2);
}

a:hover,
a:focus {
    color: var(--kp-blue);
    text-decoration: underline;
}

.raf-page {
    min-height: 100vh;
}

.raf-shell {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px 48px;
}

.raf-brandbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 20px 0 14px;
}

.raf-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--kp-blue);
}

.raf-brand:hover,
.raf-brand:focus {
    text-decoration: none;
    color: var(--kp-blue);
}

.raf-brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--kp-blue-2), var(--kp-blue));
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
    box-shadow: 0 10px 24px rgba(0, 103, 177, 0.22);
}

.raf-brand-mark::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 44%, rgba(255,255,255,0.96) 45%, rgba(255,255,255,0.96) 55%, transparent 56%);
}

.raf-brand-text {
    line-height: 1;
}

.raf-brand-title {
    display: block;
    font-size: 1.95rem;
    letter-spacing: -0.04em;
    font-family: Georgia, "Times New Roman", serif;
}

.raf-brand-subtitle {
    display: block;
    margin-top: 2px;
    color: var(--kp-blue-2);
    font-size: .92rem;
    font-weight: 700;
    letter-spacing: .06em;
}

.raf-top-links {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: center;
    justify-content: flex-end;
    font-size: .95rem;
}

.raf-top-links a {
    text-decoration: none;
}

.raf-hero {
    position: relative;
    overflow: hidden;
    border-radius: var(--kp-radius-xl);
    background: linear-gradient(180deg, rgba(234, 244, 251, 0.96) 0%, rgba(249, 236, 226, 0.94) 100%);
    padding: 28px 0 20px;
    box-shadow: var(--kp-shadow);
}

.raf-hero::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -50px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.12) 35%, transparent 70%);
}

.raf-eyebrow {
    display: inline-block;
    position: relative;
    font-size: 1rem;
    font-weight: 700;
    color: var(--kp-blue-2);
    margin-bottom: 14px;
}

.raf-eyebrow::before {
    content: "";
    display: block;
    width: 78px;
    height: 16px;
    background: var(--kp-orange);
    border-radius: 100px 100px 0 0;
    margin-bottom: 14px;
    transform: rotate(-3deg);
}

.raf-hero h1 {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
    color: var(--kp-blue);
    font-weight: 800;
}

.raf-lead {
    font-size: 1.08rem;
    line-height: 1.7;
    color: #334b63;
    max-width: 62ch;
}

.raf-action-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.raf-action-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--kp-blue);
    font-weight: 600;
}

.raf-action-list li::before {
    content: "✓";
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--kp-blue-2);
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    flex: 0 0 auto;
}

.raf-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 14px 22px;
    border-radius: 999px;
    border: 0;
    text-decoration: none;
    font-weight: 700;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.raf-cta:hover,
.raf-cta:focus {
    transform: translateY(-1px);
    text-decoration: none;
}

.raf-cta-primary {
    background: linear-gradient(180deg, #1b6ab0, #0c5b9f);
    color: #fff;
    box-shadow: 0 12px 24px rgba(12, 91, 159, 0.24);
}

.raf-pill-grid {
    margin-top: -42px;
    position: relative;
    z-index: 2;
}

.raf-pill-card {
    height: 100%;
    border: 0;
    border-radius: var(--kp-radius-lg);
    background: rgba(255,255,255,0.92);
    box-shadow: 0 12px 30px rgba(15, 67, 111, 0.08);
    padding: 24px 18px;
    text-align: center;
}

.raf-pill-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(180deg, #f3ab7b, #ee925a);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(242, 160, 108, 0.28);
}

.raf-pill-card p {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.45;
    color: var(--kp-blue);
    font-weight: 700;
}

.raf-content {
    margin-top: 2.25rem;
}

.raf-section-card,
.raf-form-card,
.raf-disclosure-card {
    border: 0;
    border-radius: var(--kp-radius-lg);
    background: var(--kp-surface);
    box-shadow: var(--kp-shadow);
}

.raf-section-card {
    overflow: hidden;
}

.raf-section-header {
    padding: 1.2rem 1.4rem;
    background: linear-gradient(90deg, var(--kp-blue-2), var(--kp-blue));
    color: #fff;
}

.raf-section-header h2,
.raf-form-card h2,
.raf-disclosure-card h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 800;
}

.raf-section-body {
    padding: 1.4rem;
}

.raf-promo-code {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin: .75rem 0 1rem;
    padding: .45rem .85rem;
    border-radius: 999px;
    background: var(--kp-orange-soft);
    color: #8e4f1e;
    font-weight: 800;
    letter-spacing: .03em;
}

.raf-note {
    color: var(--kp-muted);
    line-height: 1.65;
}

.raf-benefit-list {
    display: grid;
    gap: 1rem;
    margin: 1.25rem 0 0;
}

.raf-benefit-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 18px;
    background: linear-gradient(180deg, #fbfdff, #f7fafc);
    box-shadow: inset 0 0 0 1px rgba(0, 103, 177, 0.06);
}

.raf-benefit-badge {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--kp-orange-soft);
    color: #ad6327;
    font-weight: 800;
    flex: 0 0 auto;
}

.raf-benefit-item h3 {
    margin: 0 0 6px;
    font-size: 1.08rem;
    color: var(--kp-blue);
    font-weight: 800;
}

.raf-benefit-item p,
.raf-benefit-item ul {
    margin: 0;
    color: #334b63;
    line-height: 1.6;
}

.raf-benefit-item ul {
    padding-left: 1.15rem;
    margin-top: .5rem;
}

.raf-form-card {
    padding: 1.4rem;
    background:
        radial-gradient(circle at top right, rgba(242, 160, 108, 0.14), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #fdfefe 100%);
}

.raf-form-intro {
    color: var(--kp-muted);
    line-height: 1.65;
    margin-top: .7rem;
    margin-bottom: 1.25rem;
}

.raf-alert {
    border: 0;
    border-radius: 16px;
    padding: .9rem 1rem;
    background: linear-gradient(90deg, rgba(39, 174, 96, 0.14), rgba(39, 174, 96, 0.07));
    color: #19703f;
    font-weight: 600;
    margin-bottom: 1rem;
}

.raf-form-group {
    margin-bottom: 1.15rem;
}

.raf-label {
    display: inline-block;
    margin-bottom: .5rem;
    color: var(--kp-blue);
    font-size: .97rem;
    font-weight: 800;
}

.raf-textbox.form-control {
    min-height: 54px;
    border: 1px solid transparent;
    border-radius: 16px;
    background: var(--kp-surface-alt);
    box-shadow: inset 0 0 0 1px rgba(15, 67, 111, 0.08);
    padding: .85rem 1rem;
    font-size: 1rem;
    color: var(--kp-text);
}

.raf-textbox.form-control::placeholder {
    color: #8090a0;
}

.raf-textbox.form-control:focus {
    background: #fff;
    border-color: rgba(0, 103, 177, 0.35);
    box-shadow: 0 0 0 .2rem rgba(0, 103, 177, 0.12);
}

.raf-delivery-wrap {
    padding: 1rem 1rem .9rem;
    border-radius: 16px;
    background: var(--kp-surface-alt);
    box-shadow: inset 0 0 0 1px rgba(15, 67, 111, 0.08);
}

.delivery-options {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
    align-items: center;
}

.delivery-options input[type="radio"] {
    margin-right: 8px;
    accent-color: var(--kp-blue-2);
}

.delivery-options label {
    margin-bottom: 0;
    color: #334b63;
    font-weight: 600;
}

.delivery-options span,
.delivery-options td {
    display: inline-flex;
    align-items: center;
    margin-right: 0;
}

.required,
span[style*="#FF3300"],
span[style*="#ff3300"] {
    display: inline-block;
    margin-top: .45rem;
    font-size: .9rem;
    color: #c0392b !important;
}

.raf-submit {
    min-width: 150px;
    min-height: 52px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--kp-orange), #ee925a);
    color: #fff;
    font-weight: 800;
    letter-spacing: .01em;
    box-shadow: 0 12px 22px rgba(242, 160, 108, 0.24);
}

.raf-submit:hover,
.raf-submit:focus {
    background: linear-gradient(180deg, #ee925a, #e88446);
    color: #fff;
}

.raf-disclosure-card {
    padding: 1.35rem 1.4rem;
    margin-top: 1.75rem;
}

.raf-disclosure-card h2 {
    color: var(--kp-blue);
    margin-bottom: .85rem;
}

.raf-disclosure-text {
    font-size: .92rem;
    line-height: 1.7;
    color: #3f556b;
}

.raf-disclosure-text p:last-child {
    margin-bottom: 0;
}

.raf-footer {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(15, 67, 111, 0.12);
    color: var(--kp-muted);
    font-size: .92rem;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    padding: .75rem 1rem;
    margin: 1rem;
    overflow: visible;
    clip: auto;
    white-space: normal;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--kp-shadow);
}

@media (max-width: 991.98px) {
    .raf-brandbar {
        padding-top: 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .raf-top-links {
        justify-content: flex-start;
    }

    .raf-hero {
        padding-top: 22px;
    }

    .raf-pill-grid {
        margin-top: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .raf-shell {
        padding-left: 12px;
        padding-right: 12px;
    }

    .raf-brand-title {
        font-size: 1.6rem;
    }

    .raf-brand-subtitle {
        font-size: .82rem;
    }

    .raf-hero {
        border-radius: 22px;
    }

    .raf-section-body,
    .raf-form-card,
    .raf-disclosure-card {
        padding: 1.1rem;
    }

    .raf-pill-card p {
        font-size: 1.1rem;
    }

    .delivery-options {
        gap: 10px 16px;
    }
}
