/* ===== TeacherCal Join Page - Conversion-Optimized Design ===== */
/* Color theme: primary #4361ee, accent #4cc9f0. No dark black. */

:root {
    --primary: #4361ee;
    --primary-dark: #3a56d4;
    --accent: #4cc9f0;
    --accent-dark: #2bb8e0;
    --text-dark: #2b2d42;
    --text-light: #4f5d75;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e9ecef;
    --success: #22c55e;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 40px rgba(67, 97, 238, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

/* DEV watermark (dev branch only) */
body::after {
    content: "DEV";
    position: fixed;
    right: 12px;
    bottom: 12px;
    z-index: 999999;
    pointer-events: none;
    padding: 6px 10px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: #0b1220;
    background: rgba(255, 214, 10, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    opacity: 0.75;
}

/* ===== Navbar ===== */
.navbar {
    background-color: var(--bg-white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.navbar-brand img {
    height: 40px;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 35px;
}

.nav-link {
    position: relative;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.nav-link:before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: all 0.3s ease;
    opacity: 0;
}

.nav-link:hover:before {
    width: 100%;
    opacity: 1;
}

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

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 12px 28px;
    font-weight: 500;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(67, 97, 238, 0.4);
}

/* ===== Hero Section (preserved) ===== */
.hero-section {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.9;
}

.btn-outline-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 11px 27px;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background-color: white;
    color: var(--primary);
    border-color: white;
    transform: translateY(-2px);
}

.hero-image {
    max-width: 90%;
}

.typing-container {
    display: inline-block;
    min-width: 300px;
    white-space: nowrap;
    overflow: visible;
    width: 300px;
}

/* ===== Trial Banner ===== */
.trial-banner {
    background: linear-gradient(135deg, #059669, #10b981);
    padding: 50px 0;
    position: relative;
}

.trial-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.trial-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.trial-banner-text h2 {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.trial-banner-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1rem;
}

.btn-trial-cta {
    background: white;
    color: var(--primary);
    padding: 16px 36px;
    font-weight: 600;
    border-radius: 30px;
    border: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-trial-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--primary-dark);
}

/* ===== Stats Bar ===== */
.stats-bar {
    padding: 60px 0;
    background: var(--bg-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 24px 16px;
    background: var(--bg-light);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.stat-icon {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== Section Titles ===== */
.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.section-title:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary);
    margin: 15px auto 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Infographics (What You Get) ===== */
.section-infographics {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 50%, var(--bg-light) 100%);
}

.infographic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.infographic-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.infographic-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(67, 97, 238, 0.15);
}

.infographic-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(76, 201, 240, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.75rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.infographic-card:hover .infographic-icon {
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.2), rgba(76, 201, 240, 0.2));
}

.infographic-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.infographic-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.infographic-inline-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.infographic-inline-link:hover {
    text-decoration: underline;
}

@media (min-width: 992px) {
    .infographic-card--todo {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 2rem 2.5rem;
        align-items: center;
        text-align: left;
        max-width: 880px;
        margin-left: auto;
        margin-right: auto;
        padding: 32px 36px;
        background: linear-gradient(135deg, rgba(67, 97, 238, 0.06), rgba(76, 201, 240, 0.08));
        border: 1px solid rgba(67, 97, 238, 0.12);
    }

    .infographic-card--todo .infographic-icon {
        margin: 0;
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .infographic-card--todo h3 {
        grid-column: 2;
        margin-bottom: 6px;
    }

    .infographic-card--todo p {
        grid-column: 2;
    }
}

/* ===== Teacher To Do (landing feature section) ===== */
.section-teacher-todo {
    position: relative;
    padding: 96px 0 100px;
    overflow: hidden;
    background: linear-gradient(165deg, #f0f4ff 0%, #ffffff 38%, #e8fafc 100%);
}

.ttd-blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.ttd-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
}

.ttd-blob-a {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.35), transparent 70%);
    top: -120px;
    right: -80px;
}

.ttd-blob-b {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(76, 201, 240, 0.4), transparent 70%);
    bottom: -100px;
    left: -100px;
}

.ttd-blob-c {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 214, 10, 0.2), transparent 70%);
    top: 40%;
    left: 35%;
}

.section-teacher-todo .container {
    position: relative;
    z-index: 1;
}

.ttd-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 1rem;
}

.ttd-heading {
    font-family: 'Syne', 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(2.1rem, 4vw, 2.85rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.ttd-heading-teacher {
    color: var(--text-dark);
}

.ttd-heading-todo {
    color: var(--primary-dark);
    background: linear-gradient(135deg, var(--primary) 0%, #2bb8e0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@supports not (background-clip: text) {
    .ttd-heading-todo {
        color: var(--primary);
        background: none;
    }
}

.ttd-lead {
    font-size: 1.08rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.ttd-points {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
}

.ttd-points li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 0.98rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.ttd-points li i {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.12), rgba(76, 201, 240, 0.15));
    color: var(--primary);
    font-size: 1rem;
}

.ttd-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 1rem;
}

.ttd-btn-secondary {
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 30px;
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.ttd-btn-secondary:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(67, 97, 238, 0.35);
}

.ttd-footnote {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    max-width: 34rem;
    line-height: 1.5;
}

/* Illustration: mock window + stickies */
.ttd-visual {
    position: relative;
    min-height: 400px;
    max-width: 520px;
    margin: 0 auto;
}

.ttd-visual-glow {
    position: absolute;
    inset: 8% 5% 5% 8%;
    background: radial-gradient(ellipse at center, rgba(67, 97, 238, 0.2), transparent 65%);
    border-radius: 32px;
    z-index: 0;
}

.ttd-mock-window {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(43, 45, 66, 0.14), 0 0 0 1px rgba(67, 97, 238, 0.08);
    overflow: hidden;
}

.ttd-mock-chrome {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: linear-gradient(180deg, #f8f9fc, #eef1f8);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.ttd-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dee2e6;
}

.ttd-dot:first-child {
    background: #ff6b6b;
}

.ttd-dot:nth-child(2) {
    background: #ffd43b;
}

.ttd-dot:nth-child(3) {
    background: #51cf66;
}

.ttd-mock-title {
    margin-left: 8px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

.ttd-mock-body {
    padding: 14px 12px 16px;
    background: linear-gradient(180deg, #fafbfd 0%, #f1f4fa 100%);
}

.ttd-mock-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.ttd-tab {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 8px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ttd-tab--on {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #5a7aff);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(67, 97, 238, 0.35);
}

.ttd-mock-board {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.ttd-mock-col {
    flex: 1;
    min-width: 0;
    background: #fff;
    border-radius: 10px;
    padding: 8px 6px 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.ttd-mock-colhead {
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 8px;
    padding: 0 4px;
}

.ttd-mock-card {
    height: 22px;
    border-radius: 6px;
    background: linear-gradient(90deg, #f1f3f9, #fff);
    border: 1px solid rgba(67, 97, 238, 0.08);
    margin-bottom: 6px;
}

.ttd-mock-card--accent {
    background: linear-gradient(90deg, rgba(67, 97, 238, 0.12), rgba(76, 201, 240, 0.1));
    border-color: rgba(67, 97, 238, 0.2);
}

.ttd-sticky {
    position: absolute;
    z-index: 3;
    width: 108px;
    padding: 10px 10px 12px;
    border-radius: 3px;
    box-shadow: 4px 6px 18px rgba(43, 45, 66, 0.15);
    font-size: 0.62rem;
    line-height: 1.35;
}

.ttd-sticky-title {
    display: block;
    font-weight: 700;
    color: #2b2d42;
    margin-bottom: 6px;
}

.ttd-sticky-line {
    display: block;
    height: 5px;
    border-radius: 2px;
    background: rgba(43, 45, 66, 0.12);
    margin-bottom: 4px;
}

.ttd-sticky-line--short {
    width: 65%;
}

.ttd-sticky-1 {
    background: linear-gradient(160deg, #fff9c4, #fff59d);
    top: 6%;
    right: -4%;
    transform: rotate(6deg);
    animation: ttd-float-a 7s ease-in-out infinite;
}

.ttd-sticky-2 {
    background: linear-gradient(160deg, #e3f2fd, #bbdefb);
    bottom: 18%;
    left: -6%;
    transform: rotate(-5deg);
    animation: ttd-float-b 8s ease-in-out infinite;
}

.ttd-sticky-3 {
    background: linear-gradient(160deg, #fce4ec, #f8bbd9);
    bottom: 4%;
    right: 8%;
    transform: rotate(3deg);
    animation: ttd-float-c 6.5s ease-in-out infinite;
}

@keyframes ttd-float-a {
    0%, 100% { transform: rotate(6deg) translateY(0); }
    50% { transform: rotate(6deg) translateY(-8px); }
}

@keyframes ttd-float-b {
    0%, 100% { transform: rotate(-5deg) translateY(0); }
    50% { transform: rotate(-5deg) translateY(-10px); }
}

@keyframes ttd-float-c {
    0%, 100% { transform: rotate(3deg) translateY(0); }
    50% { transform: rotate(3deg) translateY(-6px); }
}

@media (prefers-reduced-motion: reduce) {
    .ttd-sticky-1,
    .ttd-sticky-2,
    .ttd-sticky-3 {
        animation: none;
    }
}

/* ===== How It Works ===== */
.section-how {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e9ecef 100%);
    position: relative;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.how-step {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.how-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.35);
}

.step-icon {
    width: 90px;
    height: 90px;
    background: rgba(67, 97, 238, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.25rem;
    color: var(--primary);
}

.how-step h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.how-step p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* ===== Testimonials ===== */
.section-testimonials {
    padding: 80px 0;
    background: var(--bg-white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 72px;
    line-height: 1;
    color: rgba(67, 97, 238, 0.1);
    font-family: Georgia, serif;
}

.testimonial-text {
    font-style: italic;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-left: 10px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

/* ===== Pricing ===== */
.section-pricing {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 50%, var(--bg-light) 100%);
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    max-width: 1100px;
    margin: 0 auto 2rem;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(67, 97, 238, 0.3);
    box-shadow: var(--shadow-hover);
}

.pricing-card-featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(67, 97, 238, 0.04) 0%, var(--bg-white) 20%);
}

.pricing-card-featured:hover {
    transform: translateY(-10px) scale(1.02);
}

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

.pricing-trial-tag {
    display: block;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.pricing-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.12), rgba(76, 201, 240, 0.12));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.pricing-card-featured .pricing-card-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}

.pricing-plan-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.pricing-price-wrap {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.25rem;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

.pricing-period {
    font-size: 1rem;
    color: var(--text-light);
    margin-left: 4px;
}

.pricing-tagline {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.pricing-tagline.pricing-save {
    color: var(--primary);
    font-weight: 600;
}
.pricing-savings-sub {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 2px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem 0;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.pricing-features li i {
    color: var(--success);
    font-size: 0.9rem;
}

.btn-pricing {
    width: 100%;
    padding: 14px 24px;
    font-weight: 600;
    border-radius: 12px;
    background: var(--bg-light);
    color: var(--primary);
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

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

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

.btn-pricing-featured:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.pricing-login-txt {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-light);
}

.pricing-login-txt a {
    color: var(--primary);
    font-weight: 600;
}

/* ===== FAQ ===== */
.section-faq {
    padding: 80px 0;
    background: var(--bg-white);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-question:hover {
    background: rgba(67, 97, 238, 0.05);
}

.faq-chevron {
    font-size: 0.8rem;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-question[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 20px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== Final CTA ===== */
.section-cta {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.section-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-cta p {
    font-size: 1.15rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.btn-cta {
    background: white;
    color: var(--primary);
    padding: 18px 40px;
    font-weight: 600;
    border-radius: 30px;
    border: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--primary-dark);
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(to right, #3a3d5c, #4a4e6e);
    color: rgba(255, 255, 255, 0.85);
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer h5 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-brand p,
.footer-contact p {
    font-size: 0.95rem;
    margin: 0;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: white;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1rem;
}

.footer-copy {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* ===== Roadmap Modal ===== */
.roadmap-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.roadmap-modal-inner {
    background: white;
    border-radius: var(--radius);
    width: 900px;
    max-width: 100%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.roadmap-modal-header {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 20px 30px;
    position: relative;
}

.roadmap-modal-header h2 {
    margin: 0;
    font-size: 1.6rem;
}

.roadmap-modal-header p {
    margin: 6px 0 0 0;
    opacity: 0.9;
}

#close-roadmap-btn {
    position: absolute;
    top: 16px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.25rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
}

.roadmap-tabs {
    display: flex;
    background: var(--bg-light);
    border-bottom: 2px solid var(--border-color);
}

.roadmap-tab {
    flex: 1;
    padding: 14px 20px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
}

.roadmap-tab.active {
    background: white;
    color: var(--primary);
    border-bottom: 3px solid var(--primary);
}

.roadmap-content {
    overflow-y: auto;
    max-height: calc(85vh - 180px);
    padding: 24px 30px;
}

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

.roadmap-tab-header h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin: 0 0 6px 0;
}

.roadmap-tab-header p {
    color: var(--text-muted);
    margin: 0;
}

.roadmap-features {
    display: grid;
    gap: 12px;
}

.feature-card-roadmap {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.feature-icon-roadmap {
    width: 45px;
    height: 45px;
    background: rgba(67, 97, 238, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-content-roadmap h4 {
    margin: 0 0 4px 0;
    font-size: 1.05rem;
}

.feature-content-roadmap p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.released-feature-home {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #e8f5e9;
    border-radius: 8px;
    border-left: 4px solid var(--success);
}

.released-icon-home {
    font-size: 1.1rem;
}

.roadmap-login-msg {
    background: #fff8e1;
    border: 1px solid #ffecb3;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.roadmap-login-msg h4 {
    margin: 0 0 8px 0;
    color: #e65100;
}

.roadmap-login-msg a {
    color: var(--primary);
    font-weight: 600;
}

.join-roadmap-request {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 16px 18px;
    margin-bottom: 14px;
}

.join-roadmap-request-title {
    font-weight: 600;
    font-size: 1.05rem;
    margin: 0 0 6px 0;
    color: #1f2937;
}

.join-roadmap-request-meta {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 10px;
}

.join-roadmap-request-body {
    font-size: 0.92rem;
    color: #374151;
    line-height: 1.5;
    margin-bottom: 8px;
}

.join-roadmap-request-votes {
    font-size: 0.85rem;
    color: #6b7280;
}

/* ===== Video Modal ===== */
#videoModal .modal-body {
    position: relative;
}

#videoModal .btn-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    background: white;
    border-radius: 50%;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .section-teacher-todo {
        padding: 72px 0 80px;
    }

    .ttd-visual {
        min-height: 380px;
        margin-top: 8px;
    }

    .ttd-sticky-1 {
        right: 0;
    }

    .ttd-sticky-2 {
        left: -2%;
    }
}

@media (max-width: 992px) {
    .infographic-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .how-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section-teacher-todo {
        padding: 56px 0 64px;
    }

    .ttd-mock-board {
        flex-direction: column;
        gap: 10px;
    }

    .hero-section {
        padding: 80px 0 60px;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1.15rem;
    }
    .trial-banner-inner {
        flex-direction: column;
        text-align: center;
    }
    .trial-banner-text h2 {
        font-size: 1.4rem;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .infographic-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .section-cta h2 {
        font-size: 1.6rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .typing-container {
        width: 220px;
        min-width: 220px;
    }
}
