body { font-family: 'Inter', sans-serif; scroll-behavior: smooth; overflow-x: hidden; }

/* --- Animations --- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Global Hero & Blobs --- */
.hero-locations {
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    position: relative;
    overflow: hidden;
    padding-bottom: 8rem;
    padding-top: 8rem;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    animation: float 10s infinite ease-in-out alternate;
    z-index: 0;
    pointer-events: none;
}

.blob-1 { top: -10%; left: -5%; width: 600px; height: 600px; background: #a855f7; animation-delay: 0s; }
.blob-2 { top: 20%; right: -10%; width: 500px; height: 500px; background: #ec4899; animation-delay: -5s; }
.blob-3 { bottom: -10%; left: 20%; width: 700px; height: 700px; background: #6366f1; animation-delay: -2s; }

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 40px) scale(1.05); }
}

.hero-title {
    line-height: 1.04;
    letter-spacing: -0.04em;
    margin-left: auto;
    margin-right: auto;
}

.hero-title-accent {
    background: linear-gradient(90deg, #4f46e5 0%, #6366f1 42%, #a855f7 72%, #db2777 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subcopy {
    color: #475569;
    font-weight: 500;
    letter-spacing: -0.01em;
    text-wrap: pretty;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* --- Wide Card Grid --- */
.hub-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.hub-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(99, 102, 241, 0.25);
    border-color: #6366f1;
    z-index: 10;
}

.hub-image-container {
    height: 220px;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border-bottom: 1px solid #f1f5f9;
}

.hub-illustration {
    width: 100%;
    height: 100%;
    max-height: 180px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.hub-card:hover .hub-illustration {
    transform: scale(1.05);
}

.hub-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.35rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #4f46e5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    z-index: 20;
}

.hub-content {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 1rem;
    background-color: #f0fdf4;
    color: #15803d;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.feature-pill.purple { background-color: #f3e8ff; color: #7e22ce; }
.feature-pill.blue { background-color: #eff6ff; color: #1d4ed8; }
.feature-pill.amber { background-color: #fffbeb; color: #b45309; }

.cta-button {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem;
    background-color: #1e1b4b;
    color: white;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
}

.cta-button:hover {
    background-color: #4338ca;
    box-shadow: 0 4px 12px rgba(67, 56, 202, 0.3);
}

/* --- Stats Strip --- */
.stats-floater {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.08);
    margin-bottom: 5rem;
}

.stat-item { text-align: center; }
.stat-val { font-size: 2.5rem; font-weight: 900; color: #1e1b4b; line-height: 1; margin-bottom: 0.5rem; }
.stat-label { color: #64748b; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }

/* FAQ & Accordion */
.faq-item {
    border-bottom: 1px solid #e2e8f0;
}

.faq-item:last-child { border-bottom: none; }

.faq-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    text-align: left;
    font-weight: 600;
    color: #1e293b;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}

.faq-button:hover { color: #4f46e5; }

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content p { padding-bottom: 1.5rem; color: #475569; line-height: 1.6; }

.faq-icon { transition: transform 0.3s; }
.faq-button[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-button[aria-expanded="true"] + .faq-content { max-height: 200px; }

.faq-navy .faq-item {
    border-bottom-color: rgba(255, 255, 255, 0.16);
}

.faq-navy .faq-button,
.faq-navy .faq-button:hover {
    color: #ffffff;
}

.faq-navy .faq-content p {
    color: rgba(255, 255, 255, 0.92);
}
