/* ================================================
   AidenTeach — Inner Page Styles
   ================================================ */

/* ---------- PAGE HERO ---------- */
.page-hero {
    position: relative;
    padding: 160px 0 80px;
    text-align: center;
    background: linear-gradient(160deg, #f0f9fb 0%, #e4f4f8 30%, #d2f0f6 55%, #e8f6f9 80%, #f4fbfc 100%);
    overflow: hidden;
}

/* Animated gradient overlay on page hero */
.page-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139,92,246,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: glow-pulse 8s ease-in-out infinite;
}

.page-hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.page-hero-shapes .shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(58,167,190,0.15), transparent 70%);
    top: -100px;
    right: -50px;
}

.page-hero-shapes .shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(85,187,208,0.12), transparent 70%);
    bottom: -80px;
    left: -30px;
}

.page-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--slate-900);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.page-hero-desc {
    font-size: 1.1rem;
    color: var(--slate-500);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---------- CONTENT SECTIONS ---------- */
.content-section {
    padding: 80px 0;
    position: relative;
}

.content-section + .content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(58,167,190,0.1), transparent);
}

.content-section.alt-bg {
    background: linear-gradient(180deg, #f8f7fc 0%, #f2f0f9 40%, #f4f2fb 70%, #f8f7fc 100%);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.content-grid:last-child {
    margin-bottom: 0;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text .section-badge {
    margin-bottom: 12px;
}

.content-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--slate-900);
    line-height: 1.2;
    margin-bottom: 20px;
}

.content-text p {
    font-size: 1rem;
    color: var(--slate-500);
    line-height: 1.7;
    margin-bottom: 14px;
}

/* Feature list */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--slate-600);
}

.feature-list i {
    color: var(--orange-500);
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Visual cards */
.visual-card {
    background: var(--white);
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-card);
}

/* Feature robot images in visual cards */
.feature-robot-img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    margin: 0 auto 20px;
    display: block;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.1));
    transition: transform var(--transition-spring);
}

.visual-card:hover .feature-robot-img {
    transform: scale(1.08) translateY(-4px);
}

.visual-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-3px);
    border-color: rgba(58,167,190,0.12);
}

.visual-card.accent-card {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    border: none;
    color: var(--white);
}

.visual-card.accent-card .visual-icon {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.visual-card.accent-card h4 { color: var(--white); }
.visual-card.accent-card p { color: rgba(255,255,255,0.85); }

.visual-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: var(--orange-50);
    color: var(--orange-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.visual-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 10px;
}

.visual-card p {
    font-size: 0.95rem;
    color: var(--slate-500);
    line-height: 1.6;
}

/* Services grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.service-mini-card {
    background: var(--white);
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

.service-mini-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-3px);
    border-color: rgba(58,167,190,0.15);
}

.service-mini-card i {
    font-size: 1.5rem;
    color: var(--orange-500);
    margin-bottom: 12px;
    display: block;
}

.service-mini-card h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 6px;
}

.service-mini-card p {
    font-size: 0.8rem;
    color: var(--slate-500);
    line-height: 1.5;
    margin: 0;
}

/* ---------- FOUNDER ---------- */
.founder-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    background: var(--white);
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-xl);
    padding: 48px;
    align-items: start;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.founder-card:hover {
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(58,167,190,0.12);
}

.founder-left {
    text-align: center;
}

.founder-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange-100), var(--orange-200));
    color: var(--orange-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    margin: 0 auto 24px;
}

.founder-credentials {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.credential-tag {
    display: block;
    background: var(--orange-50);
    color: var(--orange-600);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(58,167,190,0.1);
}

.founder-right h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 16px;
}

.founder-right p {
    font-size: 0.95rem;
    color: var(--slate-500);
    line-height: 1.7;
    margin-bottom: 14px;
}

.founder-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--slate-700);
}

.highlight-item i {
    color: var(--orange-500);
    font-size: 0.85rem;
    width: 20px;
    text-align: center;
}

/* ---------- FEATURE PREVIEW CARD ---------- */
.feature-preview-card {
    background: var(--white);
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.fpc-header {
    background: var(--slate-900);
    color: var(--white);
    padding: 14px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fpc-header i {
    color: var(--orange-400);
}

.fpc-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fpc-message {
    display: flex;
}

.fpc-message span {
    padding: 10px 16px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 85%;
}

.fpc-message.bot span {
    background: var(--slate-50);
    color: var(--slate-700);
}

.fpc-message.user {
    justify-content: flex-end;
}

.fpc-message.user span {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: var(--white);
}

/* ---------- BOT GRID ---------- */
.bot-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 20px;
}

.bot-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--orange-50);
    color: var(--orange-600);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(58,167,190,0.15);
    transition: all var(--transition-base);
}

.bot-tag:hover {
    background: var(--orange-100);
    transform: translateY(-2px);
}

/* ---------- COMPARISON TABLE ---------- */
.comparison-table {
    margin-top: 80px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate-100);
    overflow: hidden;
}

.comparison-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--slate-900);
    text-align: center;
    padding: 32px 24px 0;
}

.table-wrapper {
    overflow-x: auto;
    padding: 24px;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 14px 20px;
    text-align: center;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--slate-100);
}

.comparison-table tbody tr {
    transition: background 0.15s ease;
}

.comparison-table tbody tr:nth-child(even) {
    background: rgba(248,250,252,0.5);
}

.comparison-table tbody tr:hover {
    background: rgba(58,167,190,0.03);
}

.comparison-table th {
    font-weight: 700;
    color: var(--slate-900);
    background: var(--slate-50);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--slate-700);
}

.highlight-col {
    background: rgba(58,167,190,0.04);
}

.text-success { color: #28c840; }
.text-muted { color: var(--slate-300); }

/* ---------- FAQ ---------- */
.faq-section {
    margin-top: 80px;
}

/* Two-column FAQ layout */
.faq-layout {
    display: grid;
    grid-template-columns: minmax(auto, 800px) 340px;
    justify-content: center;
    gap: 50px;
    align-items: start;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .faq-layout {
        grid-template-columns: 1fr;
    }
}

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

.faq-item {
    background: var(--white);
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

.faq-item:hover {
    border-color: rgba(58,167,190,0.15);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.faq-item.open {
    border-color: var(--orange-200);
    box-shadow: 0 4px 16px rgba(58,167,190,0.08);
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--slate-800);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.faq-trigger:hover {
    color: var(--orange-600);
}

.faq-trigger i {
    color: var(--slate-400);
    transition: transform var(--transition-base);
    font-size: 0.8rem;
}

.faq-item.open .faq-trigger i {
    transform: rotate(180deg);
    color: var(--orange-500);
}

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

.faq-item.open .faq-content {
    max-height: 300px;
}

.faq-content p {
    padding: 0 24px 18px;
    font-size: 0.9rem;
    color: var(--slate-500);
    line-height: 1.7;
}

/* FAQ Aside Panel */
.faq-aside {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
}

.faq-contact-card {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-contact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.faq-contact-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.faq-contact-card p {
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.6;
    margin: 0;
}

.btn-faq-contact,
.btn-faq-support {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: 4px;
}

.btn-faq-contact {
    background: var(--white);
    color: var(--orange-600);
}

.btn-faq-contact:hover {
    background: var(--orange-50);
    transform: translateY(-2px);
}

.btn-faq-support {
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.25);
}

.btn-faq-support:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Trust badges grid */
.faq-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.faq-trust-item {
    background: var(--white);
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-md);
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

.faq-trust-item:hover {
    border-color: rgba(58,167,190,0.18);
    box-shadow: 0 4px 12px rgba(58,167,190,0.08);
    transform: translateY(-2px);
}

.faq-trust-item i {
    font-size: 1.2rem;
    color: var(--orange-500);
}

.faq-trust-item span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--slate-700);
}

/* ---------- CONTACT ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form-card {
    background: var(--white);
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.3s ease;
}

.contact-form-card:hover {
    box-shadow: var(--shadow-card-hover);
}

.contact-form-card h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-size: 0.9rem;
    color: var(--slate-700);
    outline: none;
    transition: border-color var(--transition-fast);
    background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--slate-400);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--orange-500);
    box-shadow: 0 0 0 3px rgba(58,167,190,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Contact info cards */
.contact-info-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-card {
    display: flex;
    align-items: start;
    gap: 16px;
    background: var(--white);
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: all var(--transition-base);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--orange-200);
}

.cic-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 4px;
}

.contact-info-card p {
    font-size: 0.85rem;
    color: var(--slate-500);
    line-height: 1.5;
    margin: 0;
}

/* ---------- PRICING PAGE EXTRAS ---------- */
.pricing-full-section {
    padding: 60px 0 100px;
}

.price-tagline {
    font-size: 0.9rem;
    color: var(--slate-500);
    margin-bottom: 20px;
    line-height: 1.5;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-grid.reverse {
        direction: ltr;
    }

    .founder-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .founder-right {
        text-align: left;
    }

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

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 60px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .founder-card {
        padding: 32px 24px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 24px;
    }
}

/* ================================================
   JOURNEY PAGE — ACHIEVEMENTS
   ================================================ */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.achievement-card {
    background: var(--white);
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-card);
}

.achievement-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-3px);
    border-color: rgba(58,167,190,0.12);
}

.achievement-card-wide {
    grid-column: 1 / -1;
}

.achievement-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--orange-50);
    color: var(--orange-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.achievement-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 10px;
}

.achievement-card p {
    font-size: 0.95rem;
    color: var(--slate-500);
    line-height: 1.6;
    margin-bottom: 16px;
}

.achievement-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.achievement-list li {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--slate-600);
    line-height: 1.5;
}

.achievement-list i {
    color: var(--orange-500);
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* ================================================
   JOURNEY PAGE — TIMELINE (Alternating Center Layout)
   ================================================ */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--orange-200), var(--orange-400), var(--orange-200));
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 48px;
    width: 50%;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Odd items = left side */
.timeline-item:nth-child(odd) {
    align-self: flex-start;
    padding-right: 48px;
    text-align: right;
    margin-left: 0;
}

/* Even items = right side */
.timeline-item:nth-child(even) {
    align-self: flex-end;
    padding-left: 48px;
    text-align: left;
    margin-left: 50%;
}

/* Use flexbox on the timeline wrapper for alternation */
.timeline {
    display: flex;
    flex-direction: column;
}

.timeline-dot {
    position: absolute;
    top: 16px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(58,167,190,0.3);
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -22px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -22px;
}

.timeline-date {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--orange-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.timeline-card {
    background: var(--white);
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    transition: all var(--transition-base);
}

.timeline-item:nth-child(odd) .timeline-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(-6px);
}

.timeline-item:nth-child(even) .timeline-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(6px);
}

.timeline-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 8px;
}

.timeline-card p {
    font-size: 0.9rem;
    color: var(--slate-500);
    line-height: 1.6;
    margin: 0;
}

/* Tablet: revert to single-column left-aligned */
@media (max-width: 768px) {
    .timeline {
        padding-left: 45px;
        padding-right: 0;
    }

    .timeline::before {
        left: 18px;
        transform: none;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        width: 100%;
        margin-left: 0;
        padding-left: 0;
        padding-right: 0;
        text-align: left;
    }

    .timeline-dot,
    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: -38px;
        right: auto;
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
    }

    .timeline-item:nth-child(odd) .timeline-card:hover,
    .timeline-item:nth-child(even) .timeline-card:hover {
        transform: translateX(4px);
    }
}

/* ================================================
   LEGAL PAGES (Privacy, Terms)
   ================================================ */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-card {
    background: var(--white);
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.legal-section {
    padding: 28px 0;
    border-bottom: 1px solid var(--slate-100);
}

.legal-section:first-child {
    padding-top: 0;
}

.legal-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.legal-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--orange-50);
    color: var(--orange-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 14px;
}

.legal-section h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 10px;
}

.legal-section p {
    font-size: 0.95rem;
    color: var(--slate-500);
    line-height: 1.7;
    margin: 0;
}

/* ================================================
   SUPPORT PAGE
   ================================================ */
.support-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.support-quick-card {
    background: var(--white);
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-card);
}

.support-quick-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-3px);
    border-color: rgba(58,167,190,0.12);
}

.sqc-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--orange-50);
    color: var(--orange-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 16px;
}

.support-quick-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 8px;
}

.support-quick-card p {
    font-size: 0.9rem;
    color: var(--slate-500);
    line-height: 1.5;
    margin-bottom: 16px;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--orange-100);
}

.faq-category-title i {
    color: var(--orange-500);
    font-size: 1rem;
}

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

.support-contact-card {
    background: var(--white);
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-card);
}

.support-contact-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-3px);
    border-color: rgba(58,167,190,0.12);
}

.scc-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 16px;
}

.support-contact-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 8px;
}

.support-contact-card p {
    font-size: 0.9rem;
    color: var(--slate-600);
    margin-bottom: 6px;
}

.support-contact-card a {
    color: var(--orange-500);
    font-weight: 600;
}

.scc-note {
    font-size: 0.8rem;
    color: var(--slate-400);
}

/* ================================================
   LOGIN PAGE
   ================================================ */
.login-page {
    background: var(--slate-50);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.login-wrapper {
    width: 100%;
    max-width: 980px;
}

.login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    min-height: 600px;
}

.login-visual {
    background: linear-gradient(160deg, var(--orange-600), var(--orange-500), var(--orange-400));
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.login-visual-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.lv-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.lv-shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    top: -100px;
    right: -80px;
}

.lv-shape-2 {
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.08);
    bottom: -80px;
    left: -50px;
}

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

.login-logo {
    display: inline-block;
    margin-bottom: 32px;
}

.login-logo-img {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
}

.login-visual h2 {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.login-visual h2 span {
    color: rgba(255,255,255,0.85);
}

.login-visual > .login-visual-content > p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 32px;
}

.login-benefits {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.login-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.login-benefit i {
    font-size: 0.85rem;
    opacity: 0.7;
}

.login-form-side {
    padding: 48px;
    display: flex;
    align-items: center;
}

.login-form-inner {
    width: 100%;
}

.login-form-inner h1 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 6px;
}

.login-subtitle {
    font-size: 0.9rem;
    color: var(--slate-500);
    margin-bottom: 28px;
}

.login-field {
    margin-bottom: 18px;
}

.login-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate-700);
    margin-bottom: 6px;
}

.login-input-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.login-input-wrap:focus-within {
    border-color: var(--orange-400);
    box-shadow: 0 0 0 3px rgba(58,167,190,0.1);
}

.login-input-wrap i {
    padding: 0 14px;
    color: var(--slate-400);
    font-size: 0.9rem;
}

.login-input-wrap input {
    flex: 1;
    padding: 12px 14px 12px 0;
    border: none;
    outline: none;
    font-family: var(--font-family);
    font-size: 0.9rem;
    color: var(--slate-700);
    background: transparent;
}

.login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.login-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--slate-600);
    cursor: pointer;
}

.login-remember input {
    accent-color: var(--orange-500);
}

.login-forgot {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--orange-500);
}

.login-forgot:hover {
    color: var(--orange-600);
}

.login-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--accent-500), var(--accent-600));
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(249,115,22,0.3);
}

.login-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(249,115,22,0.4);
}

.login-divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--slate-200);
}

.login-divider span {
    padding: 0 14px;
    font-size: 0.8rem;
    color: var(--slate-400);
    font-weight: 500;
}

.login-socials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.login-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px;
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    font-family: var(--font-family);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate-700);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.login-social-btn:hover:not(:disabled) {
    border-color: var(--orange-300);
    background: var(--orange-50);
}

.login-social-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.login-signup-link {
    text-align: center;
    font-size: 0.9rem;
    color: var(--slate-500);
}

.login-signup-link a {
    font-weight: 600;
    color: var(--orange-500);
}

.login-signup-link a:hover {
    color: var(--orange-600);
}

/* ================================================
   GATED BANNER (Tutorials, User Guide sign-in prompt)
   ================================================ */
.gated-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    margin-bottom: 32px;
    background: linear-gradient(135deg, rgba(99,102,241,0.06), rgba(125,208,226,0.08));
    border: 1px solid rgba(99,102,241,0.12);
    border-radius: 12px;
    font-size: 0.95rem;
    color: var(--slate-600);
    flex-wrap: wrap;
}

.gated-banner > i {
    color: var(--violet-500);
    font-size: 1rem;
}

.gated-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: var(--violet-500);
    color: #fff;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    margin-left: 8px;
}

.gated-banner-btn:hover {
    background: var(--violet-600);
    color: #fff;
    transform: translateY(-1px);
}

/* ================================================
   GATED CONTENT (legacy, kept for compatibility)
   ================================================ */
.gated-content {
    max-width: 720px;
    margin: 0 auto;
}

.gated-card {
    background: var(--white);
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.gated-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange-100), var(--orange-200));
    color: var(--orange-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 24px;
}

.gated-card h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 12px;
}

.gated-card > p {
    font-size: 1rem;
    color: var(--slate-500);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.gated-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: left;
    margin-bottom: 36px;
}

.gated-feature {
    display: flex;
    gap: 14px;
    align-items: start;
    padding: 16px;
    background: var(--slate-50);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.gated-feature:hover {
    background: var(--orange-50);
}

.gated-feature > i {
    color: var(--orange-500);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.gated-feature h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 4px;
}

.gated-feature p {
    font-size: 0.8rem;
    color: var(--slate-500);
    line-height: 1.4;
    margin: 0;
}

.gated-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ================================================
   FEATURED ON — About Page
   ================================================ */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.featured-card {
    background: var(--white);
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.featured-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
    border-color: var(--orange-200);
}

.featured-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--orange-50);
    color: var(--orange-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.featured-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 8px;
}

.featured-card p {
    font-size: 0.85rem;
    color: var(--slate-500);
    line-height: 1.5;
    flex: 1;
    margin-bottom: 16px;
}

.featured-card .feature-link {
    margin-top: auto;
}

/* ================================================
   CONTACT MAP (Full-Width Modern)
   ================================================ */
.contact-map-section {
    width: 100%;
    margin-top: 60px;
    height: 450px;
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.contact-map-section iframe {
    width: 100%;
    height: 100%;
    display: block;
    /* Optional: Subtle filter to make it look clean and slightly match the color vibe */
    filter: grayscale(30%) contrast(1.1) sepia(10%);
    transition: filter 0.3s ease;
}

.contact-map-section iframe:hover {
    filter: grayscale(0%) contrast(1) sepia(0%);
}

/* ================================================
   RESPONSIVE — Large screens
   ================================================ */
@media (min-width: 1440px) {
    .achievements-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .featured-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .support-quick-grid {
        grid-template-columns: repeat(5, 1fr) !important;
    }
}

/* ================================================
   RESPONSIVE — New Pages
   ================================================ */
@media (max-width: 1024px) {
    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .achievement-card-wide {
        grid-column: auto;
    }

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

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

    .support-contact-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .login-container {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .login-visual {
        display: none;
    }

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

@media (max-width: 768px) {
    .faq-list {
        grid-template-columns: 1fr;
    }

    .support-quick-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .legal-card {
        padding: 32px 24px;
    }

    .gated-card {
        padding: 36px 24px;
    }
}

@media (max-width: 480px) {
    .login-form-side {
        padding: 32px 24px;
    }

    .login-socials {
        grid-template-columns: 1fr;
    }
}
