/* ─── Contact Page Styles ───────────────────────────────────────── */

.contact-hero {
    background: linear-gradient(135deg, var(--deep-blue), var(--navy));
    color: var(--white);
    padding: var(--space-4xl) 0 var(--space-3xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 18% 28%, rgba(46, 134, 222, 0.45), transparent 60%),
        radial-gradient(ellipse at 82% 78%, rgba(243, 156, 18, 0.22), transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.contact-hero-network {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.contact-hero-network.is-ready { opacity: 1; }

.contact-hero-content {
    position: relative;
    z-index: 1;
}

.contact-hero h1 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.contact-hero-title {
    text-shadow: 0 0 24px rgba(255, 220, 130, 0.18);
}

.contact-hero p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ─── Hero CTA — Club Registration ─────────────────────────────── */
.contact-hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: var(--space-xl);
}

.contact-hero-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1.6rem 0.85rem 1.1rem;
    border-radius: 999px;
    text-decoration: none;
    color: var(--white);
    font-family: var(--font-heading);
    background:
        linear-gradient(135deg, #F39C12 0%, #E67E22 50%, #E74C3C 100%);
    background-size: 180% 180%;
    background-position: 0% 50%;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.18) inset,
        0 14px 36px -12px rgba(231, 126, 34, 0.65),
        0 6px 14px -6px rgba(231, 76, 60, 0.40);
    overflow: hidden;
    isolation: isolate;
    transition:
        transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
        background-position 0.6s ease,
        box-shadow 0.35s ease;
    animation: ctaPulse 3.6s ease-in-out infinite;
}
.contact-hero-cta::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 220, 130, 0.55), rgba(255, 255, 255, 0));
    z-index: -1;
    filter: blur(14px);
    opacity: 0.55;
    transition: opacity 0.35s ease;
}
.contact-hero-cta:hover {
    transform: translateY(-3px) scale(1.02);
    background-position: 100% 50%;
    color: var(--white);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.22) inset,
        0 22px 48px -14px rgba(231, 76, 60, 0.65),
        0 10px 22px -8px rgba(243, 156, 18, 0.45);
    animation-play-state: paused;
}
.contact-hero-cta:hover::before { opacity: 0.85; }
.contact-hero-cta:focus-visible {
    outline: 3px solid rgba(255, 220, 130, 0.55);
    outline-offset: 3px;
}

.contact-hero-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.35s ease;
}
.contact-hero-cta-icon svg { width: 20px; height: 20px; }
.contact-hero-cta:hover .contact-hero-cta-icon {
    transform: rotate(-8deg) scale(1.08);
    background: rgba(255, 255, 255, 0.28);
}

.contact-hero-cta-label {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.05;
    text-align: left;
}
.contact-hero-cta-eyebrow {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 3px;
}
.contact-hero-cta-text {
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.contact-hero-cta-arrow {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.contact-hero-cta:hover .contact-hero-cta-arrow {
    transform: translateX(4px);
}

.contact-hero-cta-shine {
    position: absolute;
    top: 0; bottom: 0;
    left: -60%;
    width: 40%;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
    transform: skewX(-18deg);
    pointer-events: none;
    animation: ctaShine 4.2s ease-in-out 1.2s infinite;
}

.contact-hero-cta-note {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.78rem;
    letter-spacing: 0.5px;
}

@keyframes ctaPulse {
    0%, 100% {
        box-shadow:
            0 0 0 1px rgba(255, 255, 255, 0.18) inset,
            0 14px 36px -12px rgba(231, 126, 34, 0.65),
            0 6px 14px -6px rgba(231, 76, 60, 0.40),
            0 0 0 0 rgba(243, 156, 18, 0.35);
    }
    60% {
        box-shadow:
            0 0 0 1px rgba(255, 255, 255, 0.18) inset,
            0 14px 36px -12px rgba(231, 126, 34, 0.65),
            0 6px 14px -6px rgba(231, 76, 60, 0.40),
            0 0 0 18px rgba(243, 156, 18, 0);
    }
}
@keyframes ctaShine {
    0%, 18% { left: -60%; }
    55%     { left: 130%; }
    100%    { left: 130%; }
}

@media (prefers-reduced-motion: reduce) {
    .contact-hero-network { transition: none; }
    .contact-hero-cta,
    .contact-hero-cta-shine { animation: none; }
}

/* ─── Contact Section ──────────────────────────────────────────── */
.contact-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(180deg, #FFFFFF 0%, #F4F7FB 100%);
}

.cs-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(95px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}
.cs-orb-1 {
    top: -110px; left: -100px;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(46, 134, 222, 0.30), transparent 70%);
    animation: csOrbDrift 24s ease-in-out infinite;
}
.cs-orb-2 {
    bottom: -130px; right: -90px;
    width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.22), transparent 70%);
    animation: csOrbDrift 28s ease-in-out -10s infinite;
}
@keyframes csOrbDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(20px, -16px) scale(1.06); }
}
.contact-section .container { position: relative; z-index: 1; }

/* ─── Section Header ───────────────────────────────────────────── */
.cs-header { text-align: center; margin-bottom: var(--space-3xl); }
.cs-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 4px;
    color: var(--accent-blue);
    padding: 0.45rem 1.05rem;
    background: rgba(46, 134, 222, 0.08);
    border: 1px solid rgba(46, 134, 222, 0.22);
    border-radius: 999px;
    margin-bottom: var(--space-md);
}
.cs-title {
    font-size: clamp(1.95rem, 4vw, 2.85rem);
    line-height: 1.13; letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}
.cs-title-accent {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 800;
}
.cs-sub {
    max-width: 680px; margin: 0 auto;
    color: var(--dark-gray);
    font-size: 1.05rem; line-height: 1.6;
}

/* ─── Two-column grid ──────────────────────────────────────────── */
.cs-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
    gap: var(--space-2xl);
    align-items: start;
}
@media (max-width: 960px) {
    .cs-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
}

/* ─── Channel Cards ────────────────────────────────────────────── */
.cs-channels {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.cs-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    isolation: isolate;
    box-shadow:
        0 1px 3px rgba(10, 22, 40, 0.05),
        0 12px 26px -14px rgba(10, 22, 40, 0.10);
    transition:
        transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.45s ease;
}
.cs-card::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 0;
    width: 4px;
    background: var(--cs-accent);
    transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 2;
}
.cs-card::after {
    content: '';
    position: absolute;
    bottom: -60%; right: -45%;
    width: 200%; height: 200%;
    border-radius: 50%;
    background: radial-gradient(circle at center, var(--cs-accent), transparent 60%);
    opacity: 0;
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}
.cs-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 1px 3px rgba(10, 22, 40, 0.08),
        0 28px 50px -18px color-mix(in srgb, var(--cs-accent) 35%, rgba(10, 22, 40, 0.20));
}
.cs-card:hover::before { width: 8px; }
.cs-card:hover::after  { opacity: 0.07; }

.cs-card-icon {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 52px; height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--cs-accent) 12%, transparent);
    color: var(--cs-accent);
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.45s ease;
}
.cs-card-icon svg { width: 24px; height: 24px; }
.cs-card:hover .cs-card-icon {
    transform: rotate(-8deg) scale(1.08);
    background: color-mix(in srgb, var(--cs-accent) 22%, transparent);
}

.cs-card-body {
    position: relative;
    z-index: 1;
    min-width: 0;
}
.cs-card-eyebrow {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cs-accent);
    opacity: 0.8;
    margin-bottom: 2px;
}
.cs-card-label {
    margin: 0 0 4px;
    font-size: 1.05rem;
    line-height: 1.2;
    color: var(--charcoal);
    font-weight: 700;
    letter-spacing: -0.01em;
}
.cs-card-lines p {
    margin: 0;
    color: var(--dark-gray);
    font-size: 0.92rem;
    line-height: 1.5;
    word-break: break-word;
}
.cs-card-lines a {
    color: var(--charcoal);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed color-mix(in srgb, var(--cs-accent) 50%, transparent);
    transition: color 0.25s ease, border-color 0.25s ease;
}
.cs-card-lines a:hover {
    color: var(--cs-accent);
    border-color: var(--cs-accent);
}

.cs-card-cta {
    position: relative;
    z-index: 1;
    align-self: stretch;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 var(--space-md);
    border-radius: 999px;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--cs-accent);
    background: color-mix(in srgb, var(--cs-accent) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--cs-accent) 25%, transparent);
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.cs-card-cta svg { width: 14px; height: 14px; transition: transform 0.3s ease; }
.cs-card-cta:hover {
    background: var(--cs-accent);
    color: var(--white);
    transform: translateX(2px);
}
.cs-card-cta:hover svg { transform: translateX(3px); }
@media (max-width: 540px) {
    .cs-card { grid-template-columns: auto 1fr; }
    .cs-card-cta {
        grid-column: 1 / -1;
        justify-self: stretch;
        justify-content: center;
        padding: 0.55rem var(--space-md);
    }
    .cs-card-cta span { font-size: 0.78rem; }
}

/* ─── Hours pill ───────────────────────────────────────────────── */
.cs-hours {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.08), rgba(46, 134, 222, 0.06));
    border: 1px solid rgba(39, 174, 96, 0.18);
    border-radius: 14px;
}
.cs-hours-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.2);
    animation: csPulse 2.4s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes csPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.2); }
    50%      { box-shadow: 0 0 0 9px rgba(39, 174, 96, 0); }
}
.cs-hours-eyebrow {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 2px;
}
.cs-hours-text {
    margin: 0;
    color: var(--charcoal);
    font-size: 0.95rem;
    font-weight: 600;
}

/* ─── Form Card ────────────────────────────────────────────────── */
.cs-form-card {
    position: relative;
    background: var(--white);
    border-radius: 22px;
    padding: var(--space-2xl);
    box-shadow:
        0 1px 3px rgba(10, 22, 40, 0.05),
        0 24px 50px -22px rgba(10, 22, 40, 0.18);
    border: 1px solid rgba(10, 22, 40, 0.04);
}
.cs-form-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 22px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(46, 134, 222, 0.4), transparent 50%, rgba(243, 156, 18, 0.35));
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    opacity: 0.55;
}
@media (max-width: 540px) {
    .cs-form-card { padding: var(--space-xl); }
}

.cs-form-head { margin-bottom: var(--space-lg); }
.cs-form-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    padding: 0.35rem 0.85rem;
    background: rgba(243, 156, 18, 0.10);
    border: 1px solid rgba(243, 156, 18, 0.25);
    border-radius: 999px;
    margin-bottom: var(--space-md);
}
.cs-form-title {
    margin: 0 0 var(--space-xs);
    font-size: clamp(1.4rem, 2.4vw, 1.75rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--charcoal);
}
.cs-form-sub {
    margin: 0;
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.55;
}

/* ─── Quick intent chips ───────────────────────────────────────── */
.cs-intents {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0 0 var(--space-xl);
}
.cs-intent {
    appearance: none;
    border: 1px solid rgba(46, 134, 222, 0.22);
    background: rgba(46, 134, 222, 0.06);
    color: var(--accent-blue);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.cs-intent:hover {
    background: rgba(46, 134, 222, 0.12);
    transform: translateY(-1px);
}
.cs-intent.is-active {
    background: linear-gradient(135deg, var(--accent-blue), var(--royal-blue));
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 6px 16px -6px rgba(46, 134, 222, 0.55);
}

/* ─── Form layout ──────────────────────────────────────────────── */
.cs-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}
@media (max-width: 540px) {
    .cs-form .form-row { grid-template-columns: 1fr; gap: 0; }
}

.cs-form .form-input,
.cs-form .form-textarea {
    background: #F8FAFC;
    border: 1px solid #E1E8EF;
    border-radius: 12px;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.cs-form .form-input:focus,
.cs-form .form-textarea:focus {
    background: var(--white);
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 4px rgba(46, 134, 222, 0.12);
}

.cs-submit {
    appearance: none;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: var(--space-sm);
    padding: 1rem 1.5rem;
    border-radius: 14px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: var(--white);
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--royal-blue) 50%, var(--orange) 130%);
    background-size: 180% 180%;
    background-position: 0% 50%;
    box-shadow:
        0 8px 22px -8px rgba(46, 134, 222, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: background-position 0.6s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.cs-submit:hover {
    background-position: 100% 50%;
    transform: translateY(-2px);
    box-shadow:
        0 14px 30px -10px rgba(231, 126, 34, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.cs-submit:active { transform: translateY(0); }
.cs-submit svg { width: 18px; height: 18px; transition: transform 0.3s ease; }
.cs-submit:hover svg { transform: translate(2px, -2px) rotate(8deg); }

.cs-privacy {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: var(--space-md) 0 0;
    color: var(--dark-gray);
    font-size: 0.82rem;
    line-height: 1.4;
}
.cs-privacy svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--green); }

/* ─── CAPTCHA ──────────────────────────────────────────────────── */
.cs-captcha-row {
    display: flex;
    align-items: stretch;
    gap: var(--space-md);
    flex-wrap: wrap;
}
.cs-captcha-q {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1rem;
    background: linear-gradient(135deg, rgba(46, 134, 222, 0.10), rgba(243, 156, 18, 0.08));
    border: 1px solid rgba(46, 134, 222, 0.22);
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--charcoal);
    user-select: none;
    -webkit-user-select: none;
    flex-shrink: 0;
    min-height: 48px;
}
.cs-captcha-expr {
    font-size: 1.15rem;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--accent-blue), var(--orange));
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.cs-captcha-eq {
    color: var(--dark-gray);
    font-size: 1.15rem;
    opacity: 0.7;
}
.cs-captcha-input {
    flex: 1;
    min-width: 120px;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1px;
}
.cs-captcha-hint {
    display: block;
    margin-top: 0.45rem;
    color: var(--dark-gray);
    font-size: 0.78rem;
    line-height: 1.4;
}
@media (max-width: 480px) {
    .cs-captcha-q { width: 100%; justify-content: center; }
    .cs-captcha-input { width: 100%; }
}

.form-status {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-top: var(--space-md);
    font-weight: var(--fw-bold);
    display: none;
}
.form-status.success {
    display: block;
    background: rgba(39, 174, 96, 0.1);
    color: var(--green);
    border: 1px solid var(--green);
}
.form-status.error {
    display: block;
    background: rgba(231, 76, 60, 0.1);
    color: var(--red);
    border: 1px solid var(--red);
}

@media (prefers-reduced-motion: reduce) {
    .cs-orb,
    .cs-card,
    .cs-card-icon,
    .cs-card::before,
    .cs-card::after,
    .cs-hours-dot,
    .cs-submit { animation: none; transition: none; }
}

/* ─── Success Modal ────────────────────────────────────────────── */
.cs-modal-locked { overflow: hidden; }

.cs-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}
.cs-modal.is-open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.25s ease;
}

.cs-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.cs-modal-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 440px;
    background: var(--white);
    border-radius: 22px;
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    box-shadow:
        0 1px 3px rgba(10, 22, 40, 0.08),
        0 32px 70px -16px rgba(10, 22, 40, 0.40);
    transform: translateY(14px) scale(0.96);
    opacity: 0;
    transition:
        transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
        opacity 0.35s ease;
}
.cs-modal.is-open .cs-modal-card {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.cs-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(10, 22, 40, 0.05);
    color: var(--charcoal);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.cs-modal-close:hover {
    background: rgba(231, 76, 60, 0.12);
    color: var(--red);
    transform: rotate(90deg);
}
.cs-modal-close svg { width: 18px; height: 18px; }

.cs-modal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-lg);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.18), rgba(39, 174, 96, 0.06));
    color: var(--green);
    box-shadow:
        0 0 0 6px rgba(39, 174, 96, 0.08),
        0 0 0 14px rgba(39, 174, 96, 0.03);
    animation: csModalPop 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.cs-modal-icon svg { width: 34px; height: 34px; }
@keyframes csModalPop {
    0%   { transform: scale(0.4); opacity: 0; }
    60%  { transform: scale(1.08); opacity: 1; }
    100% { transform: scale(1); }
}

.cs-modal-title {
    margin: 0 0 var(--space-sm);
    font-size: clamp(1.4rem, 2.4vw, 1.7rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--charcoal);
}
.cs-modal-body {
    margin: 0 0 var(--space-xl);
    color: var(--dark-gray);
    font-size: 1rem;
    line-height: 1.55;
}

.cs-modal-cta {
    appearance: none;
    border: none;
    cursor: pointer;
    min-width: 140px;
    padding: 0.85rem 1.6rem;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: var(--white);
    background: linear-gradient(135deg, var(--green), #1f8a4d);
    box-shadow:
        0 8px 22px -8px rgba(39, 174, 96, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cs-modal-cta:hover {
    transform: translateY(-2px);
    box-shadow:
        0 14px 26px -10px rgba(39, 174, 96, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.cs-modal-cta:focus-visible {
    outline: 3px solid rgba(39, 174, 96, 0.4);
    outline-offset: 2px;
}

@media (max-width: 480px) {
    .cs-modal-card { padding: var(--space-xl) var(--space-lg); }
}

@media (prefers-reduced-motion: reduce) {
    .cs-modal,
    .cs-modal-card,
    .cs-modal-icon,
    .cs-modal-close,
    .cs-modal-cta { animation: none !important; transition: none !important; }
}

