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

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

:root {
    --blue: #331ee3;
    --blue-light: #8f89ff;
    --green: #03d199;
    --pink: #ff8ddf;
    --purple: #4c43e9;
    --sky: #62abff;
    --sky-light: #b0d8ff;
    --mint: #7ce8d1;
    --coral: #ff8563;
    --cream: #fdf3cd;
    --white: #ffffff;
    --dark: #1a1a2e;
    --gray: #6b7280;
    --gray-light: #f3f4f6;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--dark);
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--blue);
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--blue);
}

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

.btn-login {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.btn-login:hover {
    color: var(--blue);
}

.btn-trial {
    text-decoration: none;
    background: var(--blue);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.btn-trial:hover {
    background: var(--purple);
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s;
}

.hero {
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f8faff 0%, var(--white) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--blue-light), var(--sky-light));
    top: -100px;
    right: -100px;
    filter: blur(60px);
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--mint), var(--green));
    bottom: 0;
    left: -50px;
    filter: blur(50px);
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--pink), var(--coral));
    top: 50%;
    left: 30%;
    filter: blur(40px);
}

.shape-4 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--cream), var(--coral));
    bottom: 20%;
    right: 20%;
    filter: blur(35px);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid #e5e7eb;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 50%, var(--green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue);
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(51, 30, 227, 0.3);
}

.btn-primary:hover {
    background: var(--purple);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(51, 30, 227, 0.4);
}

.btn-primary.large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.2s;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--dark);
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 1px solid #e5e7eb;
    transition: all 0.2s;
}

.btn-secondary:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.btn-secondary.large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.hero-trust {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trust-label {
    font-size: 0.85rem;
    color: var(--gray);
}

.trust-badges {
    display: flex;
    gap: 12px;
}

.trust-badge {
    background: var(--white);
    border: 1px solid #e5e7eb;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark);
}

.hero-visual {
    position: relative;
}

.dashboard-preview {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.preview-header {
    background: var(--dark);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.preview-dots {
    display: flex;
    gap: 6px;
}

.preview-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4b5563;
}

.preview-dots span:first-child { background: #ef4444; }
.preview-dots span:nth-child(2) { background: #fbbf24; }
.preview-dots span:last-child { background: #22c55e; }

.preview-title {
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
}

.preview-content {
    display: grid;
    grid-template-columns: 140px 1fr;
    min-height: 280px;
}

.preview-sidebar {
    background: #f9fafb;
    padding: 16px;
    border-right: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.preview-section {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray);
    background: var(--white);
    border: 1px solid #e5e7eb;
}

.preview-section.active {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
}

.section-num {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: currentColor;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
}

.preview-section.active .section-num {
    background: rgba(255, 255, 255, 0.2);
}

.preview-btn {
    margin-top: auto;
    background: var(--blue);
    color: white;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.preview-output {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: visible;
}

.output-line {
    height: 12px;
    background: #e5e7eb;
    border-radius: 4px;
}

.output-line.title {
    height: 20px;
    width: 60%;
    background: var(--dark);
}

.output-line.short {
    width: 40%;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: float 4s ease-in-out infinite;
}

.card-1 {
    top: 20px;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 60px;
    left: -30px;
    background: var(--green);
    color: white;
    animation-delay: 1s;
}

.card-3 {
    bottom: -10px;
    right: 40px;
    background: var(--purple);
    color: white;
    animation-delay: 2s;
}

.card-icon {
    font-size: 1.2rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.resource-cards-scattered {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.scatter-card {
    position: absolute;
    background: var(--white);
    padding: 6px 10px;
    border-radius: 6px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.65rem;
    font-weight: 600;
    white-space: nowrap;
    z-index: 10;
}

.scatter-card .card-icon {
    font-size: 0.8rem;
}

/* Left Column: Lesson Plan, Homework, Knowledge Organiser, Do Now Starters */
.card-a {
    top: 5%;
    left: 5%;
    background: var(--white);
    animation: scatterFloat 4s ease-in-out infinite;
}

.card-d {
    top: 27%;
    left: 5%;
    background: #f0fff4;
    animation: scatterFloat 4s ease-in-out infinite 0.3s;
}

.card-c {
    top: 49%;
    left: 5%;
    background: #f0f4ff;
    animation: scatterFloat 4s ease-in-out infinite 0.6s;
}

.card-f {
    top: 71%;
    left: 5%;
    background: #fff5f0;
    animation: scatterFloat 4s ease-in-out infinite 0.9s;
}

/* Right Column: Gamification Narratives, Exam Questions, Parent Newsletter, Debate Motions */
.card-h {
    top: 5%;
    right: 5%;
    background: #f0fff8;
    animation: scatterFloat 4s ease-in-out infinite 1.2s;
}

.card-b {
    top: 27%;
    right: 5%;
    background: #fff0f5;
    animation: scatterFloat 4s ease-in-out infinite 1.5s;
}

.card-g {
    top: 49%;
    right: 5%;
    background: #f5f0ff;
    animation: scatterFloat 4s ease-in-out infinite 1.8s;
}

.card-e {
    top: 71%;
    right: 5%;
    background: #fffbf0;
    animation: scatterFloat 4s ease-in-out infinite 2.1s;
}

@keyframes scatterFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

.more-tools-badge {
    position: absolute;
    bottom: 5%;
    left: 35%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--coral), var(--pink));
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.6rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(255, 141, 223, 0.4);
    animation: pulse 2s ease-in-out infinite;
    z-index: 15;
}

@keyframes pulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

.top-feature {
    padding: 80px 0;
    background: linear-gradient(135deg, #1E1E34 0%, #2d2d4a 100%);
    color: white;
}

.top-feature-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.top-feature-badge {
    display: inline-block;
    margin-bottom: 20px;
}

.top-feature-badge span {
    background: linear-gradient(135deg, var(--coral), var(--pink));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.top-feature h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.top-feature-content > p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 48px;
    line-height: 1.7;
}

.top-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.top-feature-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 28px 20px;
    border-radius: 16px;
    backdrop-filter: blur(8px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 180px;
    transition: all 0.3s;
}

.top-feature-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.tfi-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.tfi-icon svg {
    width: 28px;
    height: 28px;
}

.tfi-icon-blue {
    background: linear-gradient(135deg, #331EE3 0%, #5548f2 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(51, 30, 227, 0.3);
}

.tfi-icon-green {
    background: linear-gradient(135deg, #03D199 0%, #10e6ac 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(3, 209, 153, 0.3);
}

.tfi-icon-pink {
    background: linear-gradient(135deg, #FF4D6D 0%, #ff6b84 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 77, 109, 0.3);
}

.tfi-icon-orange {
    background: linear-gradient(135deg, #FF9F1C 0%, #ffb347 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 159, 28, 0.3);
}

.tfi-content {
    text-align: center;
}

.tfi-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.tfi-content p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.5;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--blue-light), var(--purple));
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.features-new {
    padding: 100px 0;
    background: #F1F3F9;
}

.section-title-large {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.text-indigo {
    color: #4f46e5;
}

.curriculum-banner {
    position: relative;
    border-radius: 2.5rem;
    overflow: hidden;
    margin-bottom: 48px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.banner-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #4f46e5 0%, #4338ca 50%, #1e40af 100%);
}

.banner-glow-right {
    position: absolute;
    right: -96px;
    top: -96px;
    width: 384px;
    height: 384px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(48px);
    transition: background 0.7s;
}

.curriculum-banner:hover .banner-glow-right {
    background: rgba(255, 255, 255, 0.2);
}

.banner-glow-left {
    position: absolute;
    left: -96px;
    bottom: -96px;
    width: 256px;
    height: 256px;
    background: rgba(129, 140, 248, 0.2);
    border-radius: 50%;
    filter: blur(48px);
}

.banner-content {
    position: relative;
    z-index: 10;
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

@media (min-width: 1024px) {
    .banner-content {
        flex-direction: row;
        text-align: left;
        padding: 80px;
        justify-content: space-between;
    }
}

.banner-text {
    max-width: 640px;
}

.banner-icon-box {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: rotate(3deg);
    transition: transform 0.5s;
}

.curriculum-banner:hover .banner-icon-box {
    transform: rotate(0deg);
}

.banner-icon-box svg {
    width: 32px;
    height: 32px;
    color: #4f46e5;
}

@media (min-width: 1024px) {
    .banner-icon-box {
        margin-left: 0;
    }
}

.banner-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .banner-text h3 {
        font-size: 3rem;
    }
}

.banner-text > p {
    color: #c7d2fe;
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .banner-text > p {
        font-size: 1.25rem;
    }
}

.banner-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

@media (min-width: 1024px) {
    .banner-tags {
        justify-content: flex-start;
    }
}

.banner-tags span {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 700;
}

.banner-action {
    flex-shrink: 0;
}

.btn-banner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #4f46e5;
    padding: 16px 32px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
    text-decoration: none;
}

.btn-banner:hover {
    background: #eef2ff;
}

.btn-banner:active {
    transform: scale(0.95);
}

.btn-banner svg {
    width: 20px;
    height: 20px;
}

.features-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 640px) {
    .features-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card-new {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.3s;
}

.feature-card-new:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.fc-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s;
}

.feature-card-new:hover .fc-icon {
    transform: scale(1.1);
}

.fc-icon svg {
    width: 24px;
    height: 24px;
}

.fc-icon-indigo {
    background: #eef2ff;
}

.fc-icon-indigo svg {
    color: #4f46e5;
}

.fc-icon-emerald {
    background: #ecfdf5;
}

.fc-icon-emerald svg {
    color: #059669;
}

.fc-icon-blue {
    background: #eff6ff;
}

.fc-icon-blue svg {
    color: #2563eb;
}

.fc-icon-amber {
    background: #fffbeb;
}

.fc-icon-amber svg {
    color: #d97706;
}

.feature-card-new h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.feature-card-new p {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.7;
}

.how-it-works {
    padding: 100px 0;
}

.section-desc-large {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.steps-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 20px;
    position: relative;
}

/* Decorative background blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.blob-green {
    width: 300px;
    height: 300px;
    background: var(--mint);
    top: -50px;
    right: 10%;
}

.blob-red {
    width: 250px;
    height: 250px;
    background: #ff8ddf;
    bottom: -80px;
    left: 5%;
}

.blob-blue {
    width: 280px;
    height: 280px;
    background: var(--sky);
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
}

.step-card {
    background: var(--white);
    padding: 32px 20px 24px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    text-align: center;
    width: 220px;
    min-height: 300px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    z-index: 1;
}

.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: var(--dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 12px 0 16px;
    flex-shrink: 0;
}

.step-blue { background: linear-gradient(135deg, var(--sky-light), var(--sky)); }
.step-purple { background: linear-gradient(135deg, var(--blue-light), var(--purple)); }
.step-green { background: linear-gradient(135deg, var(--mint), var(--green)); }

.step-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.step-card p {
    color: var(--gray);
    font-size: 0.82rem;
    line-height: 1.5;
    margin-bottom: auto;
    padding: 0 4px;
}

.step-inputs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-top: 16px;
    width: 100%;
    padding: 0 4px;
}

.step-inputs.inline {
    flex-wrap: nowrap;
}

.step-inputs span {
    background: var(--gray-light);
    padding: 5px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--dark);
    white-space: nowrap;
}

.step-arrow {
    color: #9ca3af;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 1;
}

.step-arrow svg {
    width: 32px;
    height: 20px;
}

.result-arrow-green {
    color: var(--green);
}

.result-arrow-green svg {
    width: 40px;
    height: 24px;
}

.result-card {
    background: linear-gradient(135deg, var(--green), var(--mint));
    color: white;
    padding: 24px 20px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    width: 180px;
    min-height: 300px;
    box-sizing: border-box;
    box-shadow: 0 10px 40px rgba(3, 209, 153, 0.3), 0 4px 16px rgba(0, 0, 0, 0.1);
    animation: float 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.result-icon {
    font-size: 2rem;
}

.result-text {
    line-height: 1.5;
}

/* How It Works V2 - Two Column Layout */
.how-it-works-v2 {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: #f8fafc;
}

.hiw-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    pointer-events: none;
}

.hiw-glow-primary {
    background: #6366f1;
    top: -100px;
    right: -100px;
}

.hiw-glow-secondary {
    background: #10b981;
    bottom: -100px;
    left: -100px;
}

.section-tag-animated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tag-dot {
    position: relative;
    width: 8px;
    height: 8px;
}

.tag-dot::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #6366f1;
    border-radius: 50%;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.tag-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #6366f1;
    border-radius: 50%;
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.text-primary {
    color: #6366f1;
}

.hiw-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
    margin-top: 60px;
}

.hiw-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hiw-step {
    position: relative;
    padding-left: 64px;
}

.hiw-step.step-connector::before {
    content: '';
    position: absolute;
    top: 48px;
    bottom: -32px;
    left: 24px;
    width: 2px;
    background: #e2e8f0;
}

.step-number-circle {
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border: 2px solid;
    transition: transform 0.3s ease;
}

.hiw-step:hover .step-number-circle {
    transform: scale(1.1);
}

.step-number-indigo {
    border-color: #6366f1;
    color: #6366f1;
}

.step-number-purple {
    border-color: #a855f7;
    color: #a855f7;
}

.step-number-teal {
    border-color: #14b8a6;
    color: #14b8a6;
}

.step-card-v2 {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.hiw-step:hover .step-card-v2 {
    box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.15);
}

.step-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.step-icon-box svg {
    width: 24px;
    height: 24px;
}

.step-icon-indigo {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

.step-icon-purple {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

.step-icon-teal {
    background: rgba(20, 184, 166, 0.1);
    color: #14b8a6;
}

.step-card-v2 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.step-card-v2 p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
}

.step-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.step-tags span {
    padding: 6px 12px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748b;
}

.hiw-visual {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.hiw-visual-card {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: linear-gradient(135deg, #34d399 0%, #0d9488 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px;
    text-align: center;
    box-shadow: 0 25px 80px -20px rgba(16, 185, 129, 0.4);
    position: relative;
    overflow: hidden;
    transition: transform 0.7s ease;
    cursor: pointer;
}

.hiw-visual-card:hover {
    transform: scale(1.02);
}

.hiw-visual-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMSI+PHBhdGggZD0iTTEgMWgydjJIMUMxeiIvPjwvc3ZnPg==");
}

.hiw-visual-icon {
    width: 96px;
    height: 96px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    position: relative;
}

.hiw-visual-icon svg {
    width: 48px;
    height: 48px;
    color: #fde047;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    animation: pulse 2s ease-in-out infinite;
}

.hiw-visual-icon .sparkle-small {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 24px;
    height: 24px;
    color: #fef9c3;
    animation: none;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hiw-title-white {
    font-size: 1.875rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0;
    letter-spacing: -0.025em;
}

.hiw-title-light {
    font-size: 1.875rem;
    font-weight: 800;
    color: #d1fae5;
    margin-bottom: 24px;
    letter-spacing: -0.025em;
}

.hiw-visual-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.hiw-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hiw-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1024px) {
    .hiw-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hiw-visual-card {
        min-height: 400px;
    }
}

@media (max-width: 640px) {
    .hiw-step {
        padding-left: 56px;
    }
    
    .step-number-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .hiw-step.step-connector::before {
        left: 20px;
    }
    
    .hiw-visual-card h3 {
        font-size: 1.5rem;
    }
}

.resource-types {
    padding: 100px 0;
    background: var(--gray-light);
}

/* Resource Types V2 - Card Grid Layout */
.resource-types-v2 {
    padding: 100px 0;
    background: #F1F3F9;
}

.section-tag-primary {
    background: #5c6ac4;
    color: white;
    box-shadow: 0 2px 8px rgba(92, 106, 196, 0.3);
}

.section-desc-lg {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 640px;
    margin: 0 auto;
    font-weight: 500;
    line-height: 1.6;
}

.rt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.rt-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    border: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.rt-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}

.rt-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.rt-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rt-icon-box svg {
    width: 24px;
    height: 24px;
}

.rt-icon-indigo { background: rgba(99, 102, 241, 0.1); color: #6366f1; }
.rt-icon-purple { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.rt-icon-teal { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.rt-icon-pink { background: rgba(236, 72, 153, 0.1); color: #ec4899; }
.rt-icon-blue { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.rt-icon-orange { background: rgba(249, 115, 22, 0.1); color: #f97316; }

.rt-card-header h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    transition: color 0.3s ease;
}

.rt-card-indigo:hover .rt-card-header h3 { color: #6366f1; }
.rt-card-purple:hover .rt-card-header h3 { color: #8b5cf6; }
.rt-card-teal:hover .rt-card-header h3 { color: #10b981; }
.rt-card-pink:hover .rt-card-header h3 { color: #ec4899; }
.rt-card-blue:hover .rt-card-header h3 { color: #3b82f6; }
.rt-card-orange:hover .rt-card-header h3 { color: #f97316; }

.rt-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.rt-list li {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: #4b5563;
    background: #f9fafb;
    padding: 10px 16px;
    border-radius: 8px;
}

.rt-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
}

.rt-dot-indigo { background: #6366f1; }
.rt-dot-purple { background: #8b5cf6; }
.rt-dot-teal { background: #10b981; }
.rt-dot-pink { background: #ec4899; }
.rt-dot-blue { background: #3b82f6; }
.rt-dot-orange { background: #f97316; }

@media (max-width: 1024px) {
    .rt-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .rt-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-desc-lg {
        font-size: 1rem;
    }
}

/* Bento Grid Layout - 3x2 asymmetric */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    position: relative;
}

/* Sticker base style */
.sticker {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sticker:hover {
    transform: translateY(-4px) rotate(1deg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
}

.sticker h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 16px;
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-block;
    color: white;
}

/* Sticker color coding */
.sticker-planning h4 { background: #331ee3; }
.sticker-instruction h4 { background: #4c43e9; }
.sticker-assessment h4 { background: #03d199; }
.sticker-engagement h4 { background: #ff8ddf; }
.sticker-inclusion h4 { background: #62abff; }
.sticker-admin h4 { background: #8f89ff; }

/* All stickers in 3x2 grid - no spanning */
.sticker-planning,
.sticker-instruction,
.sticker-assessment,
.sticker-engagement,
.sticker-inclusion,
.sticker-admin {
    grid-column: span 1;
    grid-row: span 1;
}

.resource-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.resource-list span {
    padding: 8px 12px;
    background: var(--gray-light);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark);
}


.pricing {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

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

.pricing-grid-4 .pricing-card {
    padding: 28px;
}

.pricing-grid-4 .pricing-header h3 {
    font-size: 1.25rem;
}

.pricing-grid-4 .price {
    font-size: 2rem;
}

.pricing-grid-4 .pricing-features li {
    font-size: 0.9rem;
    padding: 10px 0;
}

.pricing-card {
    background: var(--white);
    padding: 36px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card .pricing-features {
    flex: 1;
}

.pricing-card .btn-pricing {
    margin-top: auto;
}

.pricing-card.featured {
    border: 2px solid var(--blue);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(51, 30, 227, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
}

.period {
    font-size: 1rem;
    color: var(--gray);
}

.pricing-trial {
    text-align: center;
    font-size: 0.85rem;
    color: var(--green);
    font-weight: 500;
    margin-bottom: 24px;
    padding: 8px;
    background: rgba(3, 209, 153, 0.1);
    border-radius: 8px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.check {
    color: var(--green);
    font-weight: 700;
}

.btn-pricing {
    display: block;
    text-align: center;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
    background: var(--gray-light);
    color: var(--dark);
    border: 1px solid #e5e7eb;
}

.btn-pricing:hover {
    background: var(--dark);
    color: white;
}

.btn-pricing.primary {
    background: var(--blue);
    color: white;
    border: none;
}

.btn-pricing.primary:hover {
    background: var(--purple);
}

.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #2d2d4a 100%);
    color: white;
}

.testimonials .section-tag {
    background: rgba(255, 255, 255, 0.15);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 32px;
    border-radius: 16px;
    backdrop-filter: blur(8px);
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
    opacity: 0.95;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--blue-light), var(--purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
}

.author-role {
    font-size: 0.85rem;
    opacity: 0.7;
}

.faq {
    padding: 100px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-item {
    background: var(--white);
    padding: 28px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.faq-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.faq-item p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}

.cta .btn-primary {
    background: white;
    color: var(--blue);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta .btn-primary:hover {
    background: var(--cream);
    color: var(--purple);
}

.cta .btn-secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links h4,
.footer-newsletter h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.newsletter-form button:hover {
    background: var(--purple);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-subtitle {
        margin: 0 auto 32px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-trust {
        align-items: center;
    }

    .trust-badges {
        justify-content: center;
    }

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

    .top-feature-item {
        min-height: 160px;
    }

    .top-feature h2 {
        font-size: 2.2rem;
    }

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

    .features-secondary .feature-card {
        min-height: 180px;
    }

    .steps-flow {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .step-card {
        width: 100%;
        max-width: 300px;
        height: auto;
        min-height: 260px;
    }

    .result-card {
        width: 100%;
        max-width: 300px;
        height: auto;
        min-height: 120px;
        flex-direction: row;
    }

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

    .pricing-grid,
    .pricing-grid.pricing-grid-4,
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

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

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-actions .btn-login {
        display: none;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .top-feature h2 {
        font-size: 1.8rem;
    }

    .top-feature-grid {
        grid-template-columns: 1fr;
    }

    .top-feature-item {
        min-height: auto;
        padding: 24px 20px;
    }

    .features-secondary {
        grid-template-columns: 1fr;
    }

    .features-secondary .feature-card {
        min-height: auto;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .floating-card,
    .resource-cards-scattered,
    .more-tools-badge {
        display: none;
    }
}
