/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #7976F6;
    --primary-foreground: #ffffff;
    --secondary: #EEF2FF;
    --accent: #38B3B8;
    --background: #ffffff;
    --foreground: #111827;
    --muted: #F3F4F6;
    --muted-foreground: #6B7280;
    --border: #E5E7EB;
    --chart-2: #8B5CF6;
    --chart-3: #F59E0B;
    --chart-4: #EC4899;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Utility Classes */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    text-decoration: none;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--foreground);
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--muted);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    cursor: pointer;
    text-decoration: none;
}

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 0.875rem;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
}

/* Navigation */
.navbar {
    position: sticky;
    top: 1rem;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-radius: 1.2rem;
    border: 1px solid rgba(121, 118, 246, 0.2);
    box-shadow: 0 4px 6px -1px rgba(121, 118, 246, 0.1);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.logo-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
}

.nav-links {
    display: none;
    gap: 0.25rem;
}

.nav-links a {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(17, 24, 39, 0.8);
    text-decoration: none;
    transition: background-color 0.2s;
}

.nav-links a:hover {
    background: var(--muted);
    color: var(--foreground);
}

.nav-buttons {
    display: none;
    gap: 0.75rem;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: 1px solid var(--border);
    background: white;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 99;
    flex-direction: column;
    padding: 5rem 1.5rem 2rem;
    gap: 1rem;
}

.mobile-menu.active {
    display: flex;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 7rem 0 5rem;
    background: var(--background);
}

.hero-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
}

.bg-circle-1 {
    left: -7rem;
    top: 5rem;
    width: 18rem;
    height: 18rem;
    background: rgba(121, 118, 246, 0.2);
}

.bg-circle-2 {
    right: 0;
    top: 2.5rem;
    width: 32rem;
    height: 32rem;
    background: rgba(56, 179, 184, 0.35);
}

.bg-circle-3 {
    bottom: 2rem;
    left: 50%;
    width: 14rem;
    height: 14rem;
    transform: translateX(-50%);
    background: rgba(236, 72, 162, 0.2);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.05;
    color: var(--foreground);
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.highlight-text {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 1rem;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 42' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 24C18 8 34 8 45 24C56 40 73 40 84 24C95 8 111 8 122 24C133 40 150 40 162 24' stroke='%237976F6' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat;
    background-size: contain;
    opacity: 0.45;
}

.hero-description {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 35rem;
}

.hero-buttons {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.stats-grid {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-card {
    padding: 1rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border);
    background: white;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
}

.stat-label {
    display: block;
    margin-top: 0.25rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
}

.stat-sub {
    display: block;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.hero-image {
    position: relative;
    margin: 0 auto;
    max-width: 34rem;
}

.image-container {
    overflow: hidden;
    border-radius: 2rem;
    border: 1px solid var(--border);
    background: white;
    padding: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 1.15rem;
    object-fit: cover;
}

.image-badge {
    position: absolute;
    bottom: -1rem;
    right: -0.5rem;
    padding: 0.5rem 1rem;
    background: #FBBF24;
    color: var(--foreground);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Manifesto Section */
.manifesto {
    padding: 6rem 0;
    background: var(--background);
}

.manifesto-header h2 {
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 600;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .manifesto-header h2 {
        font-size: 3.5rem;
    }
}

.manifesto-quote {
    margin-top: 2rem;
    padding: 1.5rem 1.5rem;
    border-radius: 1.5rem;
    border-left: 4px solid var(--primary);
    background: var(--muted);
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

.problem-grid {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .problem-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.problem-card {
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border);
    background: white;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.problem-card.highlight {
    background: rgba(139, 92, 246, 0.1);
}

.card-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
}

.problem-card h3 {
    margin-top: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
}

.problem-card p {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.roles-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .roles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.role-card {
    padding: 1.75rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border);
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.role-number {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--muted);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
}

.role-card h3 {
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
}

.role-card p {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.benefit-grid {
    margin-top: 3.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .benefit-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-grid > div {
    padding: 1rem 1.25rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(121, 118, 246, 0.2);
    background: rgba(121, 118, 246, 0.05);
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--background);
}

.section-header h2 {
    margin-top: 1rem;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 3.5rem;
    }
}

.section-header p {
    margin-top: 1rem;
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

.features-grid {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: 0.95fr 1.05fr;
    }
}

.feature-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-btn {
    width: 100%;
    padding: 1.25rem;
    border-radius: 1.5rem;
    border: 1px solid transparent;
    background: white;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
}

.feature-btn.active {
    border-color: rgba(121, 118, 246, 0.3);
    background: white;
    box-shadow: 0 4px 6px -1px rgba(121, 118, 246, 0.1);
}

.feature-btn:hover:not(.active) {
    border-color: rgba(121, 118, 246, 0.2);
    background: white;
}

.feature-btn-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 1.5rem;
    background: var(--muted);
    font-size: 1.5rem;
}

.feature-btn.active .feature-icon {
    background: var(--primary);
    color: var(--primary-foreground);
}

.feature-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
}

.feature-btn h4 {
    margin-top: 0.25rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
}

.feature-desc {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.features-detail {
    position: relative;
    padding: 1.5rem;
    border-radius: 2rem;
    border: 1px solid var(--border);
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.features-detail::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 2rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05), transparent);
}

.features-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: white;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
}

.features-list {
    margin-top: 1.5rem;
    display: grid;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.feature-item::after {
    content: attr(data-number);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 9999px;
    background: var(--muted);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
}

/* Why Choose Section */
.why-choose {
    padding: 6rem 0;
    background: var(--background);
}

.why-grid {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .why-grid {
        grid-auto-rows: minmax(165px, auto);
        grid-template-columns: repeat(6, 1fr);
    }
}

.why-card {
    padding: 1.5rem;
    border-radius: 2rem;
    border: 1px solid var(--border);
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .why-card.large {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .why-card.large {
        grid-column: span 4;
        grid-row: span 2;
    }
}

.why-card h3 {
    margin-top: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
}

.why-card p {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.sub-grid {
    margin-top: 1rem;
    display: grid;
    gap: 0.75rem;
}

.sub-grid h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
}

.sub-grid p {
    font-size: 0.875rem;
}

.case-snapshot {
    border-radius: 2rem;
    border: 1px solid var(--border);
    background: white;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .case-snapshot {
        grid-column: span 2;
    }
}

.case-content {
    padding: 1.25rem;
    border: 1px solid rgba(121, 118, 246, 0.2);
    background: rgba(121, 118, 246, 0.05);
    border-radius: 1.5rem;
}

.case-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
}

.case-content h4 {
    margin-top: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
}

.metrics-grid {
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.metric-card {
    padding: 1rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
}

.metric-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-foreground);
}

.case-footer {
    margin-top: 1.25rem;
    padding: 1.25rem;
    border: 1px solid var(--border);
    background: rgba(243, 244, 246, 0.55);
    border-radius: 1.5rem;
}

.case-footer hr {
    margin: 1rem 0;
    border: none;
    height: 1px;
    background: var(--border);
}

/* Process Section */
.process {
    padding: 6rem 0;
    background: var(--background);
}

.process-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.process-card {
    position: relative;
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border);
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.process-icon {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 1.5rem;
    background: var(--primary);
    color: var(--primary-foreground);
    font-size: 1.25rem;
    font-weight: 600;
}

.process-time {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary);
}

/* Integrations Section */
.integrations {
    padding: 6rem 0;
    background: var(--background);
}

.integrations-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .integrations-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.integrations-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.integration-card {
    padding: 1.25rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border);
    background: rgba(243, 244, 246, 0.45);
}

.integration-icon {
    font-size: 1.5rem;
}

.integration-stats {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(121, 118, 246, 0.06);
    border-radius: 1.5rem;
}

.integration-stats div {
    background: white;
    padding: 1rem;
    border-radius: 0.75rem;
    text-align: center;
}

.integration-stats span:first-child {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
}

.integration-stats span:last-child {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-foreground);
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: var(--background);
}

.pricing-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pricing-card {
    position: relative;
    padding: 1.5rem;
    border-radius: 2rem;
    border: 1px solid var(--border);
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: rgba(121, 118, 246, 0.3);
    background: rgba(121, 118, 246, 0.05);
    box-shadow: 0 4px 6px -1px rgba(121, 118, 246, 0.1);
}

.featured-badge {
    position: absolute;
    top: -0.75rem;
    left: 1.5rem;
    padding: 0.25rem 0.75rem;
    background: var(--primary);
    color: var(--primary-foreground);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 9999px;
}

.price {
    margin-top: 1.25rem;
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
}

.currency {
    padding-bottom: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted-foreground);
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--foreground);
}

.period {
    padding-bottom: 0.25rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.pricing-features {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--foreground);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--background);
}

.testimonial-card {
    margin-top: 2.5rem;
    padding: 2rem;
    border-radius: 2rem;
    border: 1px solid var(--border);
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-avatar {
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 9999px;
    background: rgba(121, 118, 246, 0.1);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .testimonial-text {
        font-size: 1.5rem;
    }
}

.testimonial-author {
    margin-top: 2rem;
    font-size: 1rem;
    color: var(--muted-foreground);
}

.schools-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.schools-grid > div {
    padding: 0.75rem 1rem;
    background: rgba(243, 244, 246, 0.55);
    border-radius: 0.75rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: var(--background);
}

.faq-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    border-radius: 1.5rem;
    border: 1px solid var(--border);
    background: white;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.75rem;
    background: var(--muted);
    border-radius: 9999px;
    color: var(--primary);
}

.faq-label.admin { background: var(--muted); }
.faq-label.teacher { background: var(--muted); }
.faq-label.parent { background: var(--muted); }

.faq-question span:last-of-type {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
}

.faq-question svg {
    transition: transform 0.2s;
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.faq-aside {
    padding: 1.5rem;
    border-radius: 2rem;
    border: 1px solid rgba(121, 118, 246, 0.2);
    background: rgba(121, 118, 246, 0.05);
}

.faq-aside h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
}

.faq-aside p {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.response-info {
    margin-top: 1.5rem;
    display: grid;
    gap: 0.75rem;
}

.response-info div {
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 1.5rem;
    font-size: 0.875rem;
}

.response-info strong {
    display: block;
    font-weight: 700;
    color: var(--foreground);
}

.response-info span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Portals Section */
.portals {
    padding: 6rem 0;
    background: var(--background);
}

.portals-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .portals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .portals-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.portal-card {
    padding: 1.25rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.portal-card:nth-child(1) { background: rgba(139, 92, 246, 0.12); }
.portal-card:nth-child(2) { background: rgba(121, 118, 246, 0.1); }
.portal-card:nth-child(3) { background: rgba(56, 179, 184, 0.3); }
.portal-card:nth-child(4) { background: rgba(236, 72, 162, 0.25); }

.portal-icon {
    font-size: 1.75rem;
}

.portal-buttons {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--background);
}

.contact-grid {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 0.95fr 1.05fr;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    padding: 1rem 1.25rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border);
    background: rgba(243, 244, 246, 0.5);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
}

.contact-item p {
    margin: 0;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.contact-form {
    padding: 1.5rem;
    border-radius: 2rem;
    border: 1px solid var(--border);
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    background: var(--background);
    font-size: 0.875rem;
    color: var(--foreground);
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    position: relative;
    padding-bottom: 2.5rem;
    background: var(--background);
}

.footer-cta {
    padding: 1.75rem;
    border-radius: 2rem;
    border: 1px solid rgba(121, 118, 246, 0.2);
    background: rgba(121, 118, 246, 0.06);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .footer-cta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.footer-cta h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--foreground);
}

.footer-content {
    margin-top: 2rem;
    padding: 1.75rem;
    border-radius: 2rem;
    border: 1px solid var(--border);
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(6, 1fr);
    }
    .footer-brand {
        grid-column: span 2;
    }
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--foreground);
}

.footer-brand p {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.social-links {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.social-links a {
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid var(--border);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--foreground);
    text-decoration: none;
    transition: background-color 0.2s;
}

.social-links a:hover {
    background: var(--muted);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .footer-links {
        grid-column: span 4;
    }
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
}

.footer-links a {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--foreground);
}

.footer-bottom {
    margin-top: 2rem;
    padding: 1.25rem;
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    background: rgba(243, 244, 246, 0.4);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom-links a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--foreground);
}

/* Responsive Adjustments */
@media (min-width: 1024px) {
    .nav-links,
    .nav-buttons {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .mobile-menu {
        display: none;
    }
}

@media (max-width: 1023px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
}