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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    background: #FFFFFF;
    color: #1A1A2E;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

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

.wrap {
    width: 92%;
    max-width: 1100px;
    margin-inline: auto;
}


/* ============================================================
   BUTTONS
   ============================================================ */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 12px 24px;
    background: #1C3A6E;
    color: #fff;
    border: none;
    border-radius: 100px;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, transform 0.18s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(28, 58, 110, 0.25);
}

.cta-btn:hover {
    background: #152D57;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(28, 58, 110, 0.30);
}

.cta-btn:active {
    transform: translateY(0);
}

.cta-btn--lg {
    padding: 14px 30px;
    font-size: 16px;
}

.cta-btn--white {
    background: #fff;
    color: #1C3A6E;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.cta-btn--white:hover {
    background: #f0f4ff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.ghost-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 12px 24px;
    background: transparent;
    color: #1C3A6E;
    border: 1.5px solid #1C3A6E;
    border-radius: 100px;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.ghost-btn:hover {
    background: rgba(28, 58, 110, 0.08);
}


/* ============================================================
   LABELS / HEADINGS
   ============================================================ */
.label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #C8891A;
    margin-bottom: 10px;
}

.label--light {
    color: rgba(255, 255, 255, 0.65);
}

.heading {
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 800;
    line-height: 1.2;
    color: #1A1A2E;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.heading span {
    color: #1C3A6E;
}

.subtext {
    font-size: 15px;
    color: #5C6370;
    max-width: 640px;
    line-height: 1.75;
    margin-bottom: 32px;
}

.section-cta {
    text-align: center;
    margin-top: 36px;
}


/* ============================================================
   SECTION BLOCKS
   ============================================================ */
.section {
    padding: clamp(48px, 8vw, 88px) 0;
}

.section--gray {
    background: #F5F6FA;
}


/* ============================================================
   HEADER
   ============================================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 800;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #E4E7EE;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* height: 60px; */
}

.logo {
    height: 80px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid #E4E7EE;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #5C6370;
    transition: all 0.18s;
}

.icon-btn:hover {
    border-color: #1C3A6E;
    color: #1C3A6E;
}

.icon-wa {
    border-color: rgba(37, 211, 102, 0.3);
    color: #16a34a;
}

.icon-wa:hover {
    background: rgba(37, 211, 102, 0.08);
    border-color: #16a34a;
}
/* ============================================================
   HERO
   ============================================================ */
.hero {
    background: #FFFFFF;
    padding: 28px 0 40px;
    border-bottom: 1px solid #E4E7EE;
}

.hero-wrap {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* ---- POSTER (above on mobile, right on desktop) ---- */
.hero-poster {
    width: 100%;
}

.poster {
    background: #FFFFFF;
    border: 1.5px solid #E4E7EE;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.11);
    max-width: 480px;
    margin: 0 auto;
}

/* Poster top bar */
.poster-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 16px;
    border-bottom: 1px solid #E4E7EE;
    background: #FFFFFF;
}

.poster-brand {
    font-size: 14px;
    font-weight: 800;
    color: #1C3A6E;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
}

.poster-brand img {
    height: 22px;
    width: auto;
}

.poster-sep {
    color: #9BA3AF;
    font-size: 12px;
}

.poster-partner {
    font-size: 12px;
    font-weight: 600;
    color: #5C6370;
    display: flex;
    align-items: center;
    gap: 6px;
}

.poster-partner img {
    height: 22px;
    width: auto;
}

/* University strip */
.poster-strip {
    background: #1C3A6E;
    color: #fff;
    text-align: center;
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.10em;
}

/* Big event text */
.poster-event {
    text-align: center;
    padding: 14px 16px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pe-line {
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
}

.pe-line-1 {
    font-size: clamp(28px, 9vw, 48px);
    color: #C41E3A;
    /* deep red — matches MBBS Experts poster */
}

.pe-line-2 {
    font-size: clamp(24px, 7.5vw, 42px);
    color: #1C3A6E;
}

.pe-line-3 {
    font-size: clamp(15px, 4.5vw, 22px);
    color: #C8891A;
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-top: 3px;
}

/* Sub badge */
.poster-badge-wrap {
    display: flex;
    justify-content: center;
    padding: 10px 16px 0;
}

.poster-badge {
    background: #1A1A2E;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 5px 14px;
    border-radius: 100px;
}

/* Divider */
.poster-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    text-align: center;
    justify-content: center;
}

.poster-divider span {
    font-size: 12px;
    font-weight: 600;
    color: #5C6370;
    letter-spacing: 0.06em;
}

.poster-divider::before,
.poster-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #E4E7EE;
}

/* Flags */
.poster-flags {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 4px 16px 10px;
}

.flag-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 20px;
    gap: 3px;
}

.flag-item span {
    font-size: 9px;
    font-weight: 700;
    color: #5C6370;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: center;
}

/* Doctors photo */
.poster-photo {
    margin: 0 16px;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    position: relative;
    background: #F5F6FA;
}

.poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Poster bottom bar */
.poster-bottom {
    display: flex;
    justify-content: space-around;
    padding: 10px 8px 12px;
    background: #1C3A6E;
    margin-top: 12px;
}

.pb-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 9px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: center;
}

.pb-item i {
    font-size: 16px;
    color: #E8A020;
}


/* ---- HERO COPY (below poster on mobile) ---- */
.hero-copy {
    width: 100%;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #F5F6FA;
    border: 1px solid #E4E7EE;
    border-radius: 100px;
    padding: 6px 14px 6px 10px;
    font-size: 12px;
    font-weight: 600;
    color: #5C6370;
    margin-bottom: 18px;
}

.tag-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    animation: blink 2s infinite;
    flex-shrink: 0;
}

@keyframes blink {

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

    50% {
        opacity: 0.4;
        transform: scale(1.3);
    }
}

.hero-title {
    font-size: clamp(1.3rem, 6vw, 3.4rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #1A1A2E;
    margin-bottom: 16px;
}

.title-highlight {
    color: #1C3A6E;
    display: inline-block;
}

.title-sub {
    font-size: clamp(18px, 4vw, 22px);
    font-weight: 700;
    color: #1C3A6E;
}

.hero-body {
    font-size: 15px;
    color: #5C6370;
    line-height: 1.75;
    margin-bottom: 20px;
    max-width: 480px;
}

/* Check list */
.hero-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 26px;
}

.hero-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #5C6370;
}

.hero-list li i {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(28, 58, 110, 0.08);
    border: 1px solid rgba(28, 58, 110, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: #1C3A6E;
    flex-shrink: 0;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.hero-note {
    font-size: 14px;
    color: #5C6370;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-note i {
    color: #1C3A6E;
    font-size: 11px;
}


/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
    background: #FFFFFF;
    border-bottom: 1px solid #E4E7EE;
    padding: 20px 0;
}

.stats-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 6px 8px;
    gap: 4px;
}

.stat strong {
    font-size: clamp(20px, 3.5vw, 30px);
    font-weight: 800;
    color: #1C3A6E;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat span {
    font-size: 12px;
    color: #9BA3AF;
    font-weight: 600;
    line-height: 1.3;
}

.stat-line {
    width: 1px;
    height: 40px;
    background: #E4E7EE;
    flex-shrink: 0;
}


/* ============================================================
   VIDEO
   ============================================================ */
.video-box {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.11);
    background: #000;
    aspect-ratio: 16 / 9;
    border: 1px solid #E4E7EE;
}

.video-box iframe,
.video-box video,
.video-box .yt-player {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}


/* ============================================================
   CARDS
   ============================================================ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.card {
    background: #FFFFFF;
    border: 1.5px solid #E4E7EE;
    border-radius: 16px;
    padding: 22px 18px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.section--gray .card {
    background: #FFFFFF;
}

.section:not(.section--gray) .card {
    background: #F5F6FA;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-color: rgba(28, 58, 110, 0.18);
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(28, 58, 110, 0.08);
    border: 1px solid rgba(28, 58, 110, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #1C3A6E;
    margin-bottom: 14px;
    transition: all 0.2s;
}

.card:hover .card-icon {
    background: #1C3A6E;
    color: #fff;
    border-color: #1C3A6E;
}

.card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1A1A2E;
    margin-bottom: 7px;
    line-height: 1.3;
}

.card p {
    font-size: 15px;
    color: #5C6370;
    line-height: 1.65;
}


/* ============================================================
   URGENCY SECTION
   ============================================================ */
.urgency {
    background: #1C3A6E;
    padding: clamp(36px, 6vw, 64px) 0;
    position: relative;
    overflow: hidden;
}

.urgency::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 160, 32, 0.10) 0%, transparent 65%);
    top: -150px;
    right: -80px;
    pointer-events: none;
}

.urgency-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    position: relative;
    z-index: 1;
}

.urgency-title {
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: 7px;
}

.urgency-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
}

.urgency-text {
    max-width: 580px;
}


/* ============================================================
   VIDEO GRID
   ============================================================ */
.vid-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 4px;
}

.vid-card {
    background: #FFFFFF;
    border: 1.5px solid #E4E7EE;
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}

.vid-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.vid-frame {
    position: relative;
    aspect-ratio: 9 / 16;
    background: #111;
}

.vid-frame iframe,
.vid-frame video,
.vid-frame .yt-player {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
    background: #000;
}

.vid-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.vid-play i {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #1C3A6E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: background 0.18s, transform 0.18s;
}

.vid-play:hover i {
    background: #fff;
    transform: scale(1.06);
}

.vid-info {
    padding: 12px 14px 14px;
    border-top: 1px solid #E4E7EE;
}

.vid-name {
    font-size: 15px;
    font-weight: 700;
    color: #1A1A2E;
    margin-bottom: 3px;
}

.vid-univ {
    font-size: 13px;
    color: #9BA3AF;
}


/* ============================================================
   WHO SHOULD APPLY
   ============================================================ */
.check-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    background: #F5F6FA;
    border: 1.5px solid #E4E7EE;
    border-radius: 16px;
    padding: 18px 16px;
    transition: border-color 0.2s;
}

.check-item:hover {
    border-color: rgba(28, 58, 110, 0.18);
}

.check-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(28, 58, 110, 0.08);
    border: 1px solid rgba(28, 58, 110, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #1C3A6E;
    flex-shrink: 0;
    margin-top: 1px;
}

.check-item p {
    font-size: 14px;
    color: #5C6370;
    line-height: 1.6;
}

.check-item--cta {
    background: rgba(28, 58, 110, 0.08);
    border-color: rgba(28, 58, 110, 0.18);
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.check-cta-text {
    font-size: 16px !important;
    font-weight: 700;
    color: #1A1A2E !important;
}


/* ============================================================
   FAQ
   ============================================================ */
.faq-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 56px;
    align-items: start;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.faq-item {
    background: #FFFFFF;
    border: 1.5px solid #E4E7EE;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item[open] {
    border-color: rgba(28, 58, 110, 0.18);
}

.faq-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 15px 16px;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1A1A2E;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: background 0.15s;
    list-style: none;
}

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

.faq-btn:hover {
    background: #F5F6FA;
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #F5F6FA;
    border: 1px solid #E4E7EE;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #5C6370;
    flex-shrink: 0;
    transition: all 0.22s;
}

.faq-item[open] .faq-icon {
    background: #1C3A6E;
    border-color: #1C3A6E;
    color: #fff;
    transform: rotate(45deg);
}

.faq-ans {
    font-size: 14px;
    color: #5C6370;
    line-height: 1.72;
    padding: 0 16px 16px;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #111827;
    color: rgba(255, 255, 255, 0.5);
    padding: 44px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 36px;
}

.footer-logo {
    height: 38px;
    max-width: 140px;
    margin-bottom: 12px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    max-width: 260px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.footer-col a,
.footer-col label {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color 0.18s;
    cursor: pointer;
}

.footer-col a:hover,
.footer-col label:hover {
    color: #fff;
}

.footer-col a i {
    width: 14px;
    opacity: 0.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
    text-align: center;
}


/* ============================================================
   MOBILE BOTTOM BAR
   ============================================================ */
.mob-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 700;
    background: #FFFFFF;
    border-top: 1px solid #E4E7EE;
    padding: 10px 14px;
    gap: 10px;
    align-items: center;
    box-shadow: 0 -3px 16px rgba(0, 0, 0, 0.07);
}

.mob-wa {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.10);
    border: 1.5px solid rgba(34, 197, 94, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #16a34a;
    flex-shrink: 0;
    transition: all 0.18s;
}

.mob-wa:hover {
    background: rgba(34, 197, 94, 0.18);
}

.mob-cta {
    flex: 1;
    justify-content: center;
    padding: 14px 16px;
    font-size: 14px;
}


/* ============================================================
   MODAL
   ============================================================ */
.modal-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.modal-bg {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
}

.modal-toggle:checked ~ .modal-bg {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: #FFFFFF;
    width: 100%;
    max-width: 480px;
    border-radius: 20px 20px 0 0;
    padding: 24px 20px 20px;
    position: relative;
    transform: translateY(28px);
    transition: transform 0.28s cubic-bezier(0.34, 1.3, 0.64, 1);
    max-height: 96dvh;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.modal-toggle:checked ~ .modal-bg .modal {
    transform: translateY(0);
}

/* Pull handle */
.modal::before {
    content: '';
    display: block;
    width: 38px;
    height: 4px;
    background: #E4E7EE;
    border-radius: 2px;
    margin: 0 auto 20px;
}

@media (min-width: 600px) {
    .modal-bg {
        align-items: center;
    }

    .modal {
        border-radius: 16px;
        max-width: 460px;
        margin: 20px;
        max-height: calc(100dvh - 40px);
        padding: 28px 26px 24px;
    }

    .modal::before {
        display: none;
    }

    form {
        gap: 15px;
    }

    .field {
        gap: 7px;
    }

    .field-row {
        gap: 16px;
    }

    .input-wrap {
        min-height: 46px;
    }

    .input-wrap input {
        padding: 12px 14px 12px 0;
        font-size: 15px;
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #F5F6FA;
    border: 1px solid #E4E7EE;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    color: #5C6370;
    transition: all 0.18s;
}

.modal-close:hover {
    background: #E4E7EE;
}

.modal-head {
    text-align: center;
    margin-bottom: 20px;
}

.modal-ico {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(28, 58, 110, 0.08);
    border: 1.5px solid rgba(28, 58, 110, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #1C3A6E;
    margin: 0 auto 10px;
}

.modal-head h2 {
    font-size: 19px;
    font-weight: 800;
    color: #1A1A2E;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}


/* Form */
form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

label {
    font-size: 13px;
    font-weight: 600;
    color: #5C6370;
    letter-spacing: 0.3px;
}

.req {
    color: #DC2626;
}

.input-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid #E4E7EE;
    border-radius: 10px;
    background: #F5F6FA;
    transition: border-color 0.18s, background 0.18s;
    overflow: hidden;
    min-height: 44px;
}

.input-wrap:focus-within {
    border-color: #1C3A6E;
    background: #FFFFFF;
}

.input-wrap i {
    padding: 0 10px;
    font-size: 15px;
    color: #9BA3AF;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-wrap input {
    flex: 1;
    padding: 11px 14px 11px 0;
    border: none;
    background: transparent;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 13px;
    color: #1A1A2E;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    min-width: 0;
}

.input-wrap input::placeholder {
    color: #9BA3AF;
}

/* Phone */
.input-phone {
    gap: 0;
}

.phone-pre {
    padding: 11px 10px;
    font-size: 14px;
    font-weight: 600;
    color: #5C6370;
    border-right: 1.5px solid #E4E7EE;
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.02);
    flex-shrink: 0;
}

.phone-input {
    padding-left: 8px !important;
}

.submit-btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 15px;
    border-radius: 10px;
    margin-top: 3px;
}

.privacy-note {
    text-align: center;
    font-size: 12px;
    color: #9BA3AF;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.privacy-note i {
    color: #16a34a;
}


/* ============================================================
   RESPONSIVE — DESKTOP (grid layouts)
   ============================================================ */
@media (min-width: 860px) {
    .hero {
        padding: clamp(40px, 6vw, 70px) 0;
    }

    .hero-wrap {
        flex-direction: row;
        align-items: center;
        gap: 44px;
    }

    .hero-poster {
        width: 44%;
        flex-shrink: 0;
        order: 2;
        /* right side on desktop */
    }

    .hero-copy {
        flex: 1;
        order: 1;
        /* left side on desktop */
    }

    .poster {
        max-width: 100%;
    }
}


/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .faq-layout {
        grid-template-columns: 220px 1fr;
        gap: 36px;
    }

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

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

@media (max-width: 860px) {
    .urgency-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .urgency-text {
        max-width: 100%;
    }

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

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stats-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .stat-line {
        display: none;
    }

    .stat {
        border-right: 1px solid #E4E7EE;
        border-bottom: 1px solid #E4E7EE;
        padding: 14px 8px;
    }

    .stat:nth-child(2n) {
        border-right: none;
    }

    .stat:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 600px) {

    /* Header */
    .header {
        display: none;
    }

    .icon-btn {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .cta-btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    .cta-btn--lg {
        padding: 13px 22px;
        font-size: 15px;
    }

    /* Hero */
    .hero {
        padding: 20px 0 32px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-btns .cta-btn,
    .hero-btns .ghost-btn {
        width: 100%;
        justify-content: center;
    }

    .pe-line-1 {
        font-size: clamp(24px, 11vw, 38px);
    }

    .pe-line-2 {
        font-size: clamp(20px, 9vw, 32px);
    }

    /* Cards */
    .card-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .vid-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-inline: auto;
    }

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

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Mobile bar */
    .mob-bar {
        display: flex;
    }

    body {
        padding-bottom: 72px;
    }

    /* Modal field row */
    .field-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    form {
        gap: 12px;
    }

    .modal {
        padding: 22px 18px 18px;
    }

    .input-wrap {
        min-height: 42px;
    }

    .input-wrap input {
        padding: 10px 12px 10px 0;
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    html {
        font-size: 15px;
    }

    .logo {
        height: 28px;
    }

    .modal {
        padding: 20px 16px 16px;
        border-radius: 18px 18px 0 0;
    }

    form {
        gap: 12px;
    }

    .field {
        gap: 5px;
    }

    .field-row {
        gap: 12px;
    }

    .input-wrap {
        min-height: 40px;
    }

    .input-wrap input {
        padding: 9px 12px 9px 0;
        font-size: 14px;
    }

    label {
        font-size: 12px;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
