/* ============================================
   USA Educators Landing Page — Pixel Perfect
   ============================================ */

:root {
    --use-pink:    #e91e8c;
    --use-cyan:    #26abe0;
    --use-purple:  #6c2fb8;
    --use-yellow:  #f5b800;
    --use-navy:    #121b39;
    --use-white:   #ffffff;
    --use-gray-50: #f9fafb;
    --use-gray-100:#f0f2f5;
    --use-gray-200:#e5e7eb;
    --use-gray-500:#6b7280;
    --use-gray-700:#374151;
}

.use-landing {
    font-family: 'Roboto', 'Plus Jakarta Sans', system-ui, sans-serif;
    color: var(--use-navy);
    background: var(--use-white);
}

.use-landing * { box-sizing: border-box; }

html { scroll-behavior: smooth; }

.use-landing h1,
.use-landing h2,
.use-landing h3,
.use-landing h4 {
    font-family: 'Plus Jakarta Sans', 'Roboto', sans-serif;
    color: var(--use-navy);
}

.use-landing .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.use-gradient-text {
    background: linear-gradient(to right, #26abe0, #d41e81);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.use-section-label {
    display: block;
    text-align: center;
    color: var(--use-pink);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* ============================================
   BUTTONS
   ============================================ */
.use-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.88rem;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    border: none;
    cursor: pointer;
}

.use-btn-primary {
    background: linear-gradient(to right, #26abe0, #d41e81);
    color: #fff;
}
.use-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(212,30,129,0.35);
    color: #fff;
    text-decoration: none;
}

.use-btn-pink-solid {
    background: var(--use-pink);
    color: #fff;
}
.use-btn-pink-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(233,30,140,0.35);
    color: #fff;
    text-decoration: none;
}

.use-btn-blue {
    background: var(--use-cyan);
    color: #fff;
}
.use-btn-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(38,171,224,0.35);
    color: #fff;
    text-decoration: none;
}

.use-btn-yellow {
    background: var(--use-yellow);
    color: var(--use-navy);
}
.use-btn-yellow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(245,184,0,0.35);
    color: var(--use-navy);
    text-decoration: none;
}

.use-btn-outline-white {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.6);
}
.use-btn-outline-white:hover {
    background: rgba(255,255,255,0.3);
    color: #fff;
    text-decoration: none;
}

.use-btn-outline-dark {
    background: transparent;
    color: var(--use-navy);
    border: 2px solid var(--use-navy);
}
.use-btn-outline-dark:hover {
    background: var(--use-navy);
    color: #fff;
    text-decoration: none;
}

/* ============================================
   SCREEN 1 — HERO BANNER
   ============================================ */
.use-hero {
    position: relative;
    padding: 0;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.use-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    z-index: 0;
}

.use-hero-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    background: linear-gradient(90deg, #d41e81 0%, #d41e81 35%, rgba(212,30,129,0.88) 45%, rgba(108,47,184,0.45) 55%, rgba(18,27,57,0.15) 65%, transparent 72%);
}

.use-hero-content {
    max-width: 620px;
    color: #fff;
    padding: 60px 0 50px;
}

.use-hero-content h1 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.12;
    margin: 0 0 14px;
    letter-spacing: -0.3px;
}

.use-hero-content h1 .use-yellow {
    color: var(--use-yellow);
}

.use-hero-sub {
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0 0 20px;
    opacity: 0.95;
    max-width: 520px;
    font-weight: 400;
}

.use-designed-for {
    margin-bottom: 18px;
}

.use-designed-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #fff;
}

.use-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.use-pill {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.76rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

.use-pill-pink { background: var(--use-pink); }
.use-pill-blue { background: var(--use-cyan); }
.use-pill-purple { background: var(--use-purple); }
.use-pill-navy { background: #1a2b5e; }
.use-pill-yellow { background: var(--use-yellow); color: var(--use-navy); }

.use-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

/* ============================================
   SCREEN 2 — READINESS MODEL
   ============================================ */
.use-readiness {
    padding: 70px 0 40px;
    background: var(--use-white);
    text-align: center;
}

.use-readiness h2 {
    font-size: 1.9rem;
    font-weight: 800;
    margin: 0 0 45px;
    line-height: 1.25;
    color: var(--use-navy);
}

.use-readiness-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 35px;
}

.use-readiness-card {
    border: 2px solid var(--use-gray-200);
    border-radius: 16px;
    padding: 50px 22px 28px;
    text-align: center;
    position: relative;
    background: #fff;
    transition: transform .25s ease, box-shadow .25s ease;
}

.use-readiness-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(18,27,57,0.1);
}

.use-readiness-badge {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d41e81 0%, #6c2fb8 100%);
    color: #fff;
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.use-readiness-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.use-readiness-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.use-readiness-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 0 10px;
}

.use-readiness-card:nth-child(1) h3 { color: var(--use-pink); }
.use-readiness-card:nth-child(2) h3 { color: var(--use-cyan); }
.use-readiness-card:nth-child(3) h3 { color: var(--use-purple); }

.use-readiness-sub {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0 0 10px;
}

.use-readiness-card:nth-child(1) .use-readiness-sub { color: var(--use-pink); }
.use-readiness-card:nth-child(2) .use-readiness-sub { color: var(--use-cyan); }
.use-readiness-card:nth-child(3) .use-readiness-sub { color: var(--use-purple); }

.use-readiness-card ul {
    list-style: disc;
    padding-left: 18px;
    margin: 0;
    text-align: left;
    display: inline-block;
}

.use-readiness-card ul li {
    font-size: 0.86rem;
    color: var(--use-gray-700);
    line-height: 1.5;
    margin-bottom: 4px;
}

.use-readiness-footnote {
    font-size: 0.95rem;
    color: var(--use-gray-700);
    margin: 0;
    font-style: italic;
}

.use-readiness-footnote strong {
    color: var(--use-pink);
    font-weight: 700;
    font-style: italic;
}

/* ============================================
   WHAT MAKES MERITUS AI DIFFERENT
   ============================================ */
.use-different {
    padding: 50px 0 70px;
    background: var(--use-gray-50);
    text-align: center;
}

.use-different h2 {
    font-size: 1.9rem;
    font-weight: 800;
    margin: 0 0 10px;
    color: var(--use-navy);
}

.use-different-sub {
    color: var(--use-gray-700);
    font-size: 0.93rem;
    line-height: 1.55;
    margin: 0 0 35px;
}

.use-compare {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    max-width: 880px;
    margin: 0 auto 50px;
    position: relative;
}

.use-compare-col {
    flex: 1;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1.5px solid var(--use-gray-200);
    text-align: left;
}

.use-compare-generic {
    margin-right: 18px;
}

.use-compare-meritus {
    margin-left: 18px;
    border-color: var(--use-pink);
}

.use-compare-header {
    background: #e5e7eb;
    padding: 14px 18px;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--use-navy);
    text-align: center;
}

.use-compare-header-gradient {
    background: linear-gradient(to right, #d41e81, #26abe0);
    color: #fff;
}

.use-compare-col ul {
    list-style: none;
    padding: 12px 16px;
    margin: 0;
}

.use-compare-col ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.86rem;
    color: var(--use-gray-700);
    border-bottom: 1px solid var(--use-gray-100);
}

.use-compare-col ul li:last-child {
    border-bottom: none;
}

.use-compare-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

.use-compare-vs {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--use-navy);
    color: #fff;
    font-weight: 700;
    font-size: 0.72rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.use-highlights {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
    text-align: left;
}

.use-highlights-content h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--use-pink);
    margin: 0 0 16px;
}

.use-highlights-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.use-highlights-content ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    font-size: 0.9rem;
    color: var(--use-gray-700);
}

.use-hl-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

.use-highlights-image {
    text-align: center;
}

.use-highlights-image img {
    max-width: 280px;
    width: 100%;
    height: auto;
}

/* ============================================
   SCREEN 3 — WHAT YOU'LL LEARN
   ============================================ */
.use-learn {
    padding: 60px 0 70px;
    background: var(--use-white);
    text-align: center;
}

.use-learn h2 {
    font-size: 1.9rem;
    font-weight: 800;
    margin: 0 0 8px;
    color: var(--use-navy);
}

.use-learn-sub {
    color: var(--use-gray-700);
    font-size: 0.92rem;
    margin: 0 0 38px;
}

.use-learn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.use-learn-card {
    border-radius: 14px;
    padding: 28px 22px 22px;
    text-align: left;
    border: 1.5px solid;
    transition: transform .25s ease, box-shadow .25s ease;
}

.use-learn-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(18,27,57,0.1);
}

.use-learn-pink {
    background: #fff5fa;
    border-color: #f8c6dd;
}

.use-learn-blue {
    background: #f0faff;
    border-color: #c4e6f7;
}

.use-learn-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 10px;
}

.use-learn-pink .use-learn-icon { background: rgba(233,30,140,0.12); }
.use-learn-blue .use-learn-icon { background: rgba(38,171,224,0.12); }

.use-learn-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.use-learn-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0 0 10px;
    color: var(--use-navy);
    line-height: 1.25;
}

.use-learn-card p {
    font-size: 0.86rem;
    color: var(--use-gray-700);
    line-height: 1.55;
    margin: 0;
}

/* ============================================
   SCREEN 4 — THREE WAYS TO LEARN (PRICING)
   ============================================ */
.use-pricing {
    padding: 60px 0 70px;
    background: var(--use-gray-50);
    text-align: center;
}

.use-pricing h2 {
    font-size: 1.9rem;
    font-weight: 800;
    margin: 0 0 38px;
    line-height: 1.25;
    color: var(--use-navy);
}

.use-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.use-pricing-img-link {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
    background: #fff;
    border: 1.5px solid var(--use-gray-200);
}

.use-pricing-img-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(18,27,57,0.12);
    text-decoration: none;
}

.use-pricing-img-link img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   SCREEN 5 — PROFESSIONAL LEARNING NETWORK
   ============================================ */
.use-network {
    padding: 65px 0 55px;
    background: var(--use-navy);
    color: #fff;
    text-align: center;
}

.use-network h2 {
    color: #fff;
    font-size: 1.9rem;
    font-weight: 800;
    margin: 0 0 14px;
}

.use-network-sub {
    color: #cdd5e6;
    font-size: 0.92rem;
    line-height: 1.55;
    max-width: 800px;
    margin: 0 auto 10px;
}

.use-network-bold {
    color: #fff;
    font-weight: 600;
    font-size: 0.92rem;
    margin: 0 0 22px;
}

.use-network-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 45px;
}

.use-net-pill {
    display: inline-block;
    padding: 7px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    background: #fff;
    color: var(--use-navy);
}

.use-net-pill-blue { background: var(--use-cyan); color: #fff; }
.use-net-pill-pink { background: var(--use-pink); color: #fff; }
.use-net-pill-purple { background: linear-gradient(to right, #26abe0, #d41e81); color: #fff; }
.use-net-pill-yellow { background: var(--use-yellow); color: var(--use-navy); }

.use-network-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 880px;
    margin: 0 auto;
}

.use-network-card {
    background: #fff;
    border-radius: 14px;
    padding: 52px 18px 22px;
    position: relative;
    text-align: center;
}

.use-network-avatar {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 82px;
    height: 82px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(to right, #d41e81, #26abe0);
}

.use-network-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    background: #fff;
}

.use-network-name {
    color: var(--use-pink);
    font-weight: 800;
    font-size: 0.92rem;
    margin: 0 0 8px;
}

.use-network-card blockquote {
    font-size: 0.84rem;
    line-height: 1.55;
    color: var(--use-gray-700);
    font-style: italic;
    margin: 0;
}

/* ============================================
   JOIN BANNER
   ============================================ */
.use-join-banner {
    padding: 0 0 60px;
    background: var(--use-navy);
}

.use-join-inner {
    border-radius: 20px;
    padding: 28px 40px;
    background: linear-gradient(to right, #d41e81, #6c2fb8 50%, #26abe0);
    display: grid;
    grid-template-columns: 0.32fr 1fr;
    gap: 24px;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.use-join-image {
    text-align: center;
    position: relative;
    z-index: 1;
}

.use-join-image img {
    max-width: 170px;
    width: 100%;
    height: auto;
    display: block;
    margin: -20px auto -29px;
}

.use-join-content {
    text-align: left;
    position: relative;
    z-index: 1;
}

.use-join-content h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 14px;
    line-height: 1.4;
}

/* ============================================
   SCREEN 6 — DISTRICT PARTNERSHIPS
   ============================================ */
.use-district {
    padding: 65px 0;
    background: var(--use-white);
}

.use-district h2 {
    font-size: 1.9rem;
    font-weight: 800;
    margin: 0 0 32px;
    text-align: center;
    color: var(--use-navy);
}

.use-district-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 35px;
    align-items: center;
    max-width: 950px;
    margin: 0 auto;
}

.use-district-card {
    background: var(--use-navy);
    border-radius: 16px;
    padding: 34px 30px;
    color: #fff;
}

.use-district-card h3 {
    color: #fff;
    font-size: 1.45rem;
    font-weight: 800;
    margin: 0 0 6px;
}

.use-district-role {
    color: var(--use-yellow);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0 0 16px;
    text-transform: uppercase;
}

.use-district-card p {
    color: #cdd5e6;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 12px;
}

.use-district-card .use-btn {
    margin-top: 10px;
}

.use-district-image {
    text-align: center;
    background: linear-gradient(135deg, #26abe0 0%, #d41e81 100%);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.use-district-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   SCREEN 7 — TESTIMONIALS
   ============================================ */
.use-testimonials {
    padding: 65px 0 75px;
    background: linear-gradient(135deg, #d41e81 0%, #8e2b8f 40%, #1a2347 100%);
    position: relative;
    text-align: center;
}

.use-testimonials .container {
    position: relative;
    z-index: 1;
}

.use-testimonials h2 {
    color: #fff;
    text-align: center;
    font-size: 1.9rem;
    font-weight: 800;
    margin: 0 0 38px;
}

.use-testimonials h2 .use-yellow {
    color: var(--use-yellow);
}

.use-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.use-testi-card {
    background: #fff;
    border-radius: 14px;
    padding: 14px 14px 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    text-align: left;
}

.use-testi-thumb {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/9;
    background: #000;
}

.use-testi-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.use-testi-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(38, 171, 224, 0.95) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M8 5v14l11-7z'/></svg>") center/22px no-repeat;
    pointer-events: none;
}

.use-testi-card blockquote {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--use-gray-700);
    font-style: italic;
    margin: 14px 4px 12px;
}

.use-testi-author {
    margin: 0 4px;
}

.use-testi-name {
    color: var(--use-pink);
    font-weight: 800;
    font-size: 0.9rem;
    margin: 0;
}

.use-testi-role {
    color: var(--use-gray-500);
    font-size: 0.8rem;
    margin: 2px 0 0;
}

/* video lightbox */
.use-video-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.use-video-lightbox.active { display: flex; }
.use-video-lightbox iframe {
    width: min(90vw, 960px);
    aspect-ratio: 16/9;
    border: 0;
    border-radius: 8px;
}
.use-video-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

/* ============================================
   WE'VE BEEN BUILDING
   ============================================ */
.use-building {
    padding: 65px 0;
    background: var(--use-white);
}

.use-building h2 {
    text-align: center;
    font-size: 1.9rem;
    font-weight: 800;
    margin: 0 0 45px;
    line-height: 1.25;
    color: var(--use-navy);
}

.use-building h2 .use-pink {
    color: var(--use-pink);
}

.use-building-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.use-building-card {
    border-radius: 14px;
    padding: 22px 16px 24px;
    text-align: center;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid;
    background: #fff;
    position: relative;
}

.use-building-card.use-card-pink {
    border-color: #f8c6dd;
    background: linear-gradient(180deg, #fff 0%, #fff5fa 100%);
}

.use-building-card.use-card-blue {
    border-color: #c4e6f7;
    background: linear-gradient(180deg, #fff 0%, #f0faff 100%);
}

.use-building-card .use-card-logo {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.use-building-card .use-card-logo img {
    max-height: 44px;
    max-width: 130px;
    width: auto;
    object-fit: contain;
}

.use-building-card h4 {
    font-size: 1rem;
    font-weight: 800;
    margin: 4px 0 12px;
    color: var(--use-pink);
    line-height: 1.25;
}

.use-building-card.use-card-blue h4 {
    color: var(--use-cyan);
}

.use-building-card hr.use-card-divider {
    width: 100%;
    border: 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    margin: 4px 0 12px;
}

.use-building-card p {
    color: var(--use-gray-700);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.use-building-card p strong {
    font-weight: 700;
    color: var(--use-navy);
}

/* ============================================
   FAQ
   ============================================ */
.use-faq {
    padding: 65px 0 75px;
    background: var(--use-gray-100);
}

.use-faq-inner {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;
    align-items: flex-start;
}

.use-faq-image {
    text-align: center;
    padding-top: 30px;
}

.use-faq-image img {
    max-width: 340px;
    width: 100%;
    height: auto;
}

.use-faq-content h2 {
    font-size: 1.85rem;
    font-weight: 800;
    margin: 0 0 8px;
    color: var(--use-navy);
}

.use-faq-content .use-faq-sub {
    color: var(--use-gray-700);
    font-size: 0.9rem;
    margin: 0 0 22px;
}

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

.use-faq-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    overflow: hidden;
}

.use-faq-question {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 14px 18px;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--use-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-family: 'Roboto', 'Plus Jakarta Sans', sans-serif;
    transition: background 0.3s ease;
}

.use-faq-question:hover {
    background: rgba(38,171,224,0.06);
}

.use-faq-question.active {
    background: linear-gradient(to right, #26abe0, #d41e81);
    color: #fff;
    border-radius: 10px 10px 0 0;
}

.use-faq-toggle {
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform .3s ease;
    flex-shrink: 0;
    margin-top: -2px;
}

.use-faq-question.active .use-faq-toggle {
    transform: rotate(-135deg);
    margin-top: 4px;
}

.use-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
    padding: 0 18px;
    color: var(--use-gray-700);
    font-size: 0.88rem;
    line-height: 1.6;
}

.use-faq-answer.open {
    max-height: 400px;
    padding: 4px 18px 16px;
}

.use-faq-answer p {
    margin: 0;
}

.use-faq-answer p:first-child {
    margin-top: 6px;
}

/* ============================================
   SCREEN 8 — GET STARTED CTA
   ============================================ */
.use-final-cta {
    padding: 65px 0 75px;
    background: var(--use-white);
    text-align: center;
}

.use-final-cta h2 {
    font-size: 1.9rem;
    font-weight: 800;
    margin: 0 0 28px;
    line-height: 1.25;
    color: var(--use-navy);
}

.use-final-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.use-whatsapp-float {
    position: fixed;
    bottom: 22px;
    left: 22px;
    right: auto;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    color: #fff;
    transition: transform .2s ease;
}

.use-whatsapp-float:hover {
    transform: scale(1.08);
    color: #fff;
}

.use-whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

/* ============================================
   RESPONSIVE — Tablet
   ============================================ */
@media (max-width: 991px) {
    .use-hero-content h1 { font-size: 2rem; }
    .use-hero-content { max-width: 80%; }
    .use-hero-bg { width: 65%; }

    .use-readiness-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto 30px; }
    .use-readiness-card { margin-bottom: 32px; }
    .use-readiness h2 { font-size: 1.7rem; }

    .use-compare { flex-direction: column; gap: 24px; max-width: 480px; }
    .use-compare-generic { margin-right: 0; }
    .use-compare-meritus { margin-left: 0; }
    .use-compare-vs { position: static; transform: none; margin: 0 auto; }

    .use-highlights { grid-template-columns: 1fr; text-align: center; max-width: 480px; }
    .use-highlights-content { text-align: left; }
    .use-highlights-image { order: -1; }
    .use-highlights-image img { max-width: 220px; }

    .use-learn-grid { grid-template-columns: repeat(2, 1fr); }
    .use-learn h2 { font-size: 1.7rem; }

    .use-pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .use-pricing h2 { font-size: 1.7rem; }

    .use-network-grid { grid-template-columns: repeat(2, 1fr); max-width: 600px; }
    .use-network h2 { font-size: 1.7rem; }

    .use-join-inner { grid-template-columns: 0.5fr 1fr; }
    .use-join-image img { max-width: 140px; }

    .use-district-inner { grid-template-columns: 1fr; max-width: 520px; }
    .use-district-image { order: -1; }
    .use-district h2 { font-size: 1.7rem; }

    .use-testi-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .use-testimonials h2 { font-size: 1.7rem; }

    .use-building-grid { grid-template-columns: repeat(2, 1fr); }
    .use-building h2 { font-size: 1.7rem; }

    .use-faq-inner { grid-template-columns: 1fr; }
    .use-faq-image { display: none; }
    .use-faq-content h2 { font-size: 1.7rem; }

    .use-final-cta h2 { font-size: 1.7rem; }
}

/* ============================================
   RESPONSIVE — Mobile
   ============================================ */
@media (max-width: 600px) {
    .use-hero { min-height: auto; }
    .use-hero-bg { width: 100%; opacity: 0.2; }
    .use-hero-overlay { background: linear-gradient(135deg, rgba(212,30,129,0.97) 0%, rgba(108,47,184,0.95) 100%); }
    .use-hero-content { max-width: 100%; padding: 40px 0; text-align: center; }
    .use-hero-content h1 { font-size: 1.55rem; }
    .use-hero-sub { font-size: 0.85rem; margin: 0 auto 18px; }
    .use-pills { justify-content: center; }
    .use-hero-buttons { flex-direction: column; align-items: stretch; max-width: 260px; margin: 18px auto 0; }

    .use-readiness h2 { font-size: 1.45rem; }
    .use-readiness-card { padding: 45px 18px 22px; }

    .use-different h2 { font-size: 1.45rem; }
    .use-different-sub { font-size: 0.88rem; }
    .use-highlights-content h3 { font-size: 1.15rem; }
    .use-highlights-content ul li { font-size: 0.86rem; }

    .use-learn-grid { grid-template-columns: 1fr; }
    .use-learn h2 { font-size: 1.55rem; }

    .use-pricing h2 { font-size: 1.45rem; }

    .use-network { padding: 50px 0 40px; }
    .use-network h2 { font-size: 1.55rem; }
    .use-network-grid { grid-template-columns: 1fr; max-width: 300px; }

    .use-join-inner { grid-template-columns: 1fr; text-align: center; padding: 24px 24px; }
    .use-join-content { text-align: center; }
    .use-join-image img { max-width: 140px; margin: -10px auto -10px; }

    .use-district h2 { font-size: 1.45rem; }
    .use-district-card { padding: 26px 20px; }
    .use-district-card h3 { font-size: 1.25rem; }

    .use-testimonials { padding: 45px 0; }
    .use-testimonials h2 { font-size: 1.45rem; }

    .use-building { padding: 50px 0; }
    .use-building h2 { font-size: 1.45rem; }
    .use-building-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }

    .use-faq { padding: 45px 0; }
    .use-faq-content h2 { font-size: 1.45rem; }
    .use-faq-question { font-size: 0.85rem; padding: 12px 14px; }
    .use-faq-answer { font-size: 0.84rem; }

    .use-final-cta { padding: 45px 0 55px; }
    .use-final-cta h2 { font-size: 1.45rem; }
    .use-final-buttons { flex-direction: column; align-items: stretch; max-width: 260px; margin: 0 auto; }
    .use-final-buttons .use-btn { width: 100%; }
}
