@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --brand-dark: #1a202c;
    --brand-deep: #2d3748;
    --brand-text: #4a5568;
    --brand-soft: #f7fafc;
    --brand-white: #ffffff;
    --brand-accent: #ff751f;
    --brand-accent-soft: #ffab91;
    --campaign-cream: #fffaf4;
    --campaign-rose: #f6e9df;
    --campaign-gold: #b0824d;
    --campaign-ink: #243143;
    --campaign-hero-image: url('https://res.cloudinary.com/drubuvjbu/image/upload/v1771105566/hero_r0zoet.jpg');
    --campaign-lagos-image: url('https://res.cloudinary.com/drubuvjbu/image/upload/v1771105576/lagos_h883wx.jpg');
    --campaign-ogun-image: url('https://res.cloudinary.com/drubuvjbu/image/upload/v1771105578/ogun_psph1s.jpg');
    --campaign-ibadan-image: url('https://res.cloudinary.com/drubuvjbu/image/upload/v1771105569/ibadan_tvau3c.jpg');
    --campaign-ilorin-image: url('https://res.cloudinary.com/drubuvjbu/image/upload/v1771105573/ilorin_jmpjul.jpg');
    --campaign-deserve-image: url('https://res.cloudinary.com/drubuvjbu/image/upload/v1771105563/deserve_nvoigf.jpg');
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--brand-text);
    background: linear-gradient(180deg, #fffdfb 0%, #ffffff 38%, #fffdf9 100%);
    line-height: 1.6;
}

.menu-open .body-blur {
    filter: blur(8px) brightness(0.7);
    pointer-events: none;
    user-select: none;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    color: var(--brand-deep);
    line-height: 1.2;
    margin-top: 0;
    text-align: center;
}

.hero-content-title,
.section h2,
.submit-card h3,
.timeline h2,
.final-cta-inner h2 {
    font-family: 'Playfair Display', serif;
}

h2 {
    font-size: clamp(1.8rem, 3.4vw, 2.45rem);
    margin-bottom: 0.75rem;
    color: #223247;
}

a {
    text-decoration: none;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.navbar {
    position: fixed;
    width: 80%;
    max-width: 1280px;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.navbar.is-hidden {
    opacity: 0;
    transform: translate(-50%, -150%);
    pointer-events: none;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1.5rem;
}

.logo-img {
    width: 50px;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
}

.nav-link {
    color: #fff;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #d6dde7;
}

.mobile-menu-button {
    display: none;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    width: 2.5rem;
    height: 2.5rem;
}

.menu-icon,
.close-icon {
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
}

.close-icon {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-90deg);
}

.mobile-menu-button.active .menu-icon {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.mobile-menu-button.active .close-icon {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}

.menu-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 5.5rem;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 49;
}

.mobile-menu.active {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: calc(80vh - 5.5rem);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0 0 1.5rem 1.5rem;
    animation: slideDown 0.5s ease-in-out;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 8rem;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.mobile-nav-link:hover {
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

body.menu-open {
    position: fixed;
    width: 100%;
    overflow: hidden;
}

@media (max-width: 767px) {
    .mobile-menu-button {
        display: block;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 0;
    }
}

@media (max-width: 640px) {
    .navbar {
        width: 92%;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: 999px;
    padding: 0.86rem 1.45rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
    cursor: pointer;
}

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

.btn-primary {
    color: var(--brand-white);
    background: linear-gradient(135deg, #d48846 0%, #b77035 100%);
    box-shadow: 0 12px 28px rgba(169, 108, 53, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 16px 34px rgba(169, 108, 53, 0.38);
}

.btn-outline {
    color: var(--campaign-ink);
    border-color: rgba(36, 49, 67, 0.25);
    background: rgba(255, 255, 255, 0.95);
}

.btn-ghost {
    color: var(--brand-deep);
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(6px);
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-white);
    background:
        radial-gradient(circle at 14% 22%, rgba(212, 136, 70, 0.22), transparent 42%),
        radial-gradient(circle at 88% 5%, rgba(246, 233, 223, 0.18), transparent 38%),
        linear-gradient(150deg, rgba(19, 27, 39, 0.5) 0%, rgba(30, 41, 55, 0.52) 46%, rgba(17, 24, 37, 0.52) 100%),
        var(--campaign-hero-image) center center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 11, 19, 0.9);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.kicker {
    font-size: 0.76rem;
    font-weight: 600;
    text-transform: uppercase;
    position: absolute;
    top: 17%;
    left: 5%;
    z-index: 2;
    color: #fff;
}

.kicker-home {
    color: #fff;
    text-decoration: underline;
}

.four {
    /* background: linear-gradient(135deg, #f7d38b 0%, #d8a55b 38%, #b67c39 68%, #f1c979 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; */

    background: linear-gradient(
    135deg,
    #FFD700 0%,      
    #FFC107 20%,     
    #FFB300 40%,     
    #D4AF37 60%,     
    #B8860B 80%,     
    #8B7500 100%     
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}


.hero h1 {
    color: var(--brand-white);
    font-weight: 700;
    font-size: 3rem;
    margin: 0 0 1.5rem;
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
    }
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 4.5rem;
    }

    .hero .hero-content-title {
        font-size: 4.5rem;
    }

    .hero-learnmore {
        font-size: 1.05rem;
        padding: 0.52rem 1.05rem;
    }

    .timeline p {
        font-size: 1.08rem;
    }
}

.hero-subtext {
    max-width: 60ch;
    margin: 0 auto;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.25rem;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .hero-subtext {
        font-size: 1.5rem;
    }
}

.hero-locations {
    display: block;
    margin-top: 0.55rem;
    color: #f4d9bf;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.9rem;
}

.hero-learnmore {
    display: inline-block;
    margin-top: 1.4rem;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    padding: 0.4rem 0.85rem;
}

.padding-bottom {
    padding-bottom: 0;
}

.section {
    padding: 5rem 0;
    position: relative;
}

.intro-text {
    /* max-width: 72ch; */
    font-size: 1.04rem;
}

.banner-placeholder-section {
    padding: 2.5rem 0 0;
    background: linear-gradient(180deg, #fdf7f1 0%, #ffffff 100%);
}

.campaign-banner {
    width: min(760px, 100%);
    margin: 0 auto;
    border-radius: 1.15rem;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(37, 31, 22, 0.12);
    border: 1px solid rgba(176, 130, 77, 0.28);
    /* background: #0f1a2d; */
}

.campaign-banner-image {
    display: block;
    width: 100%;
    height: clamp(190px, 36vw, 360px);
    object-fit: cover;
}

@media (min-width: 768px) {
    .banner-placeholder-section {
        display: none;
    }
}

.states {
    background: linear-gradient(180deg, #fffefc 0%, #fdf6ee 100%);
    padding: 0 0 5rem;
}

.state-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
}

.state-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid rgba(30, 44, 68, 0.09);
    box-shadow: 0 12px 28px rgba(57, 44, 27, 0.09);
    padding: 1.25rem 1.15rem;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.state-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(57, 44, 27, 0.14);
}

.state-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 26, 39, 0.46), rgba(18, 26, 39, 0.62));
    z-index: -1;
}

.state-card--lagos {
    background-image: var(--campaign-lagos-image);
}

.state-card--ogun {
    background-image: var(--campaign-ogun-image);
}

.state-card--ibadan {
    background-image: var(--campaign-ibadan-image);
}

.state-card--ilorin {
    background-image: var(--campaign-ilorin-image);
}

.state-card h3 {
    margin-bottom: 0.25rem;
    font-size: 1.35rem;
    color: #fff;
}

.state-card p {
    margin: 0;
    font-weight: 600;
    color: #f4d9bf;
}

.steps-list {
    display: grid;
    gap: 1rem;
    margin-top: 0.6rem;
}

.step {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 1rem;
    align-items: start;
    background: #ffffff;
    border: 1px solid rgba(45, 55, 72, 0.1);
    border-radius: 0.95rem;
    padding: 1rem 1.05rem;
    box-shadow: 0 10px 20px rgba(37, 31, 22, 0.06);
}

.step span {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(140deg, #2b3748, #1f2a39);
    color: var(--brand-white);
    font-weight: 700;
}

.step p {
    margin: 0.25rem 0 0;
    line-height: 1.55;
}

.step-content-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.step-content-row p {
    margin: 0;
    flex: 1;
}

.step-action-btn {
    margin-top: 0;
    padding: 0.62rem 1rem;
    white-space: nowrap;
    font-size: 0.95rem;
    line-height: 1.2;
    font-weight: 600;
}

.step-help-btn {
    width: 2.15rem;
    height: 2.15rem;
    padding: 0;
    border-radius: 50%;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1;
}

.benefits-modal {
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.benefits-modal.is-open {
    display: flex;
}

.benefits-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 12, 20, 0.55);
    backdrop-filter: blur(3px);
}

.benefits-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(620px, 100%);
    background: linear-gradient(165deg, #ffffff 0%, #fff8f1 100%);
    border: 1px solid rgba(45, 55, 72, 0.16);
    border-radius: 1rem;
    padding: 1.4rem 1.4rem 1.2rem;
    box-shadow: 0 20px 40px rgba(17, 24, 35, 0.25);
}

.benefits-modal__dialog h2 {
    margin-bottom: 0.35rem;
}

.benefits-modal__close {
    position: absolute;
    top: 0.5rem;
    right: 0.65rem;
    border: none;
    background: transparent;
    color: #243143;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}

body.benefits-modal-open {
    overflow: hidden;
}

.benefit-list,
.plain-list {
    margin: 0.75rem 0 0;
    padding-left: 1.25rem;
}

.benefit-list li,
.plain-list li {
    margin-bottom: 0.55rem;
}

.essay-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1.25rem;
    align-items: stretch;
}

.essay-grid-title {
    text-align: left;
}

.essay {
    padding: 0 0 5rem;
}

.submit-card {
    background: linear-gradient(165deg, #ffffff 0%, #fff8f1 100%);
    border: 1px solid rgba(45, 55, 72, 0.12);
    border-radius: 1rem;
    padding: 1.1rem 1.2rem;
    box-shadow: 0 10px 24px rgba(57, 44, 27, 0.1);
}

.submit-card h3 {
    margin-bottom: 0.55rem;
}

.applicant-details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 0.35rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-field--full {
    grid-column: 1 / -1;
}

.form-field-label {
    font-size: 0.92rem;
    font-weight: 600;
    color: #223247;
}

.form-field-input {
    display: block;
    width: 100%;
    max-width: 100%;
    min-height: 42px;
    border: 1px solid rgba(36, 49, 67, 0.2);
    border-radius: 0.65rem;
    padding: 0.6rem 0.72rem;
    font: inherit;
    line-height: 1.25;
    background: #fff;
    color: #243143;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field-input:focus {
    outline: none;
    border-color: rgba(180, 130, 77, 0.9);
    box-shadow: 0 0 0 3px rgba(180, 130, 77, 0.18);
}

.form-field-input[type='date'] {
    -webkit-appearance: none;
    appearance: none;
    padding-right: 0.72rem;
}

.form-field-input[type='date']:invalid {
    color: #7a8698;
}

.form-field-input[type='date']:valid {
    color: #243143;
}

.submit-note {
    margin-bottom: 0;
    font-weight: 500;
    color: #2d3748;
}

.essay-input-wrap {
    margin-top: 1rem;
}

.essay-input-label {
    display: inline-block;
    margin-bottom: 0.45rem;
    font-weight: 600;
    color: #223247;
}

.essay-input {
    width: 100%;
    min-height: 130px;
    max-height: 420px;
    resize: none;
    border: 1px solid rgba(36, 49, 67, 0.2);
    border-radius: 0.8rem;
    padding: 0.85rem 0.95rem;
    font: inherit;
    line-height: 1.6;
    background: #fff;
    color: #243143;
    overflow-y: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.essay-input:focus {
    outline: none;
    border-color: rgba(180, 130, 77, 0.9);
    box-shadow: 0 0 0 3px rgba(180, 130, 77, 0.18);
}

.essay-input-meta {
    margin-top: 0.6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.essay-word-count {
    font-size: 0.9rem;
    color: #4a5568;
}

.essay-submit-btn {
    padding: 0.65rem 1.1rem;
}

.essay-submit-btn.is-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.essay-submit-btn .btn-loader {
    width: 0.95rem;
    height: 0.95rem;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: submitSpin 0.7s linear infinite;
}

.essay-submit-btn:disabled {
    cursor: not-allowed;
    transform: none;
    opacity: 0.82;
    box-shadow: none;
}

.essay-submit-btn.is-submitted {
    background: linear-gradient(135deg, #2e8b57 0%, #1e6f44 100%);
}

.essay-submit-feedback {
    margin: 0.55rem 0 0;
    font-size: 0.92rem;
    color: #2d3748;
    display: none;
}

.essay-submit-feedback a {
    color: #1f4f99;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.essay-submit-feedback.is-visible {
    display: block;
}

@keyframes submitSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.timeline {
    background: linear-gradient(160deg, #121a27 0%, #202b3a 55%, #161e2c 100%);
    color: rgba(255, 255, 255, 0.92);
}

.timeline h2,
.timeline p {
    color: inherit;
}

.timeline-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.3rem;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    min-width: min(420px, 100%);
}

.countdown div {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.8rem;
    padding: 0.95rem 0.75rem;
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 8px 18px rgba(8, 12, 20, 0.22);
}

.countdown span {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

.countdown small {
    opacity: 0.85;
    letter-spacing: 0.03em;
}

.final-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    width: 100%;
    min-height: 60vh;
    padding: clamp(1.5rem, 4vw, 2.75rem);
    display: grid;
    place-items: center;
    background-image: var(--campaign-deserve-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(12, 18, 30, 0.62), rgba(12, 18, 30, 0.66));
}

.final-cta-inner {
    text-align: center;
    /* max-width: 760px; */
}

.final-cta-inner h2 {
    font-size: 3.6rem;
    margin: 0;
    color: #fff;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.65);
}

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

.final-actions .btn-outline {
    color: var(--campaign-ink);
    border-color: rgba(36, 49, 67, 0.24);
    background: #ffffff;
}

.signature {
    margin-top: 1.5rem;
    color: var(--campaign-ink);
    font-weight: 700;
    line-height: 1.7;
}

.footer {
    background-color: #000;
    color: #fff;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-text {
    color: #a0aec0;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #a0aec0;
}

.footer-links li {
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.footer .social-links a,
.footer .social-links wa-icon {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: #a0aec0;
}

.campaign-footer-fallback {
    padding: 1.8rem 0;
    text-align: center;
    background: #0f1622;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 980px) {
    .section {
        padding: 4.25rem 0;
    }

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

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

    .timeline-inner {
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 100vh;
    }

    .hero .hero-content > * {
        margin-bottom: 1.2rem;
    }

    .hero .hero-content > *:last-child {
        margin-bottom: 0;
    }

    .section {
        padding: 3.5rem 0;
    }

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

    .step {
        grid-template-columns: 40px 1fr;
        padding: 0.9rem;
    }

    .step span {
        width: 40px;
        height: 40px;
    }

    .step-action-btn {
        width: 100%;
    }

    .step-content-row {
        flex-direction: column;
        align-items: stretch;
    }

    .step-help-btn {
        width: 2.15rem;
        height: 2.15rem;
        border-radius: 50%;
        padding: 0;
        align-self: center;
    }

    .countdown {
        min-width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .countdown span {
        font-size: 1.5rem;
    }

    .final-cta {
        min-height: 30vh;
    }

    .final-cta-inner h2 {
        font-size: clamp(1.6rem, 9vw, 2rem);
    }

    .essay-input-meta {
        align-items: stretch;
    }

    .essay-submit-btn {
        width: 100%;
    }

    .applicant-details-grid {
        grid-template-columns: 1fr;
    }
}
