/* ============================================
   AI for All Landing Page Styles
   ============================================ */

:root {
    --afa-navy: #1a2b4a;
    --afa-dark-blue: #0d1b3e;
    --afa-pink: #e91e8c;
    --afa-magenta: #d6006e;
    --afa-cyan: #00bcd4;
    --afa-light-bg: #f5f7fa;
    --afa-white: #ffffff;
    --afa-gray-100: #f8f9fa;
    --afa-gray-200: #e9ecef;
    --afa-gray-600: #6c757d;
    --afa-text: #1a2b4a;
    --afa-gradient: linear-gradient(135deg, #e91e8c 0%, #7b2ff7 50%, #00bcd4 100%);
    --afa-gradient-horizontal: linear-gradient(to right, #e91e8c 0%, #7b2ff7 50%, #00bcd4 100%);
}

html {
    scroll-behavior: smooth;
}

.afa-landing {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--afa-text);
    overflow-x: hidden;
}

.afa-landing h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--afa-navy);
    margin-bottom: 0.5rem;
}

.afa-landing .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   SECTION 1: HERO BANNER
   ============================================ */
.afa-hero {
    background: url('/assets/ai-for-all/banner/banner.png') center center / cover no-repeat;
    min-height: 420px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 60px 0;
}

.afa-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(213, 0, 110, 0.75) 0%, rgba(123, 47, 247, 0.45) 40%, transparent 70%);
    z-index: 1;
}

.afa-hero .container {
    position: relative;
    z-index: 2;
}

.afa-hero-content {
    max-width: 550px;
}

.afa-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--afa-white);
    margin: 0 0 16px 0;
    line-height: 1.1;
}

.afa-hero-tagline {
    display: inline-block;
    background: rgba(255, 255, 0, 0.85);
    color: #1a1a1a;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 6px 16px;
    margin-bottom: 16px;
    border-radius: 2px;
}

.afa-hero-subtitle {
    color: var(--afa-white);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.afa-hero-subtitle strong {
    color: #ffd700;
}

.afa-hero-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.afa-btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #e91e8c, #d6006e);
    color: var(--afa-white);
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 9px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}

.afa-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 140, 0.4);
    color: var(--afa-white);
    text-decoration: none;
}

.afa-btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--afa-white);
    font-size: 1rem;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 9px;
    border: 2px solid var(--afa-white);
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
}

.afa-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    color: var(--afa-white);
    text-decoration: none;
}

.afa-hero-note {
    color: var(--afa-white);
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ============================================
   SECTION 2: AI IS ALREADY PART OF YOUR LIFE
   ============================================ */
.afa-already-part {
    padding: 70px 0 50px;
    text-align: center;
    background: var(--afa-white);
}

.afa-section-subtitle {
    color: var(--afa-gray-600);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.afa-icons-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.afa-icon-card {
    background: var(--afa-white);
    border: 1px solid var(--afa-gray-200);
    border-radius: 16px;
    padding: 30px 36px;
    text-align: center;
    min-width: 160px;
    max-width: 200px;
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.afa-icon-card.afa-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.afa-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.afa-icon-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.afa-icon-card p {
    font-size: 0.95rem;
    color: var(--afa-navy);
    margin: 0;
}

.afa-icon-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.afa-simple-text {
    font-size: 1.1rem;
    color: var(--afa-gray-600);
}

/* ============================================
   SECTION 3: AI IS SIMPLE STRIP
   ============================================ */
.afa-strip {
    background: var(--afa-gradient-horizontal);
    padding: 18px 0;
    text-align: center;
}

.afa-strip p {
    color: var(--afa-white);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

/* ============================================
   SECTION 4: BUILT FOR EVERYDAY USE
   ============================================ */
.afa-built-for {
    padding: 70px 0;
    background: var(--afa-light-bg);
}

.afa-built-for-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.afa-built-for-image {
    flex: 0 0 45%;
    max-width: 45%;
}

.afa-built-for-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.afa-built-for-content {
    flex: 1;
}

.afa-built-for-content h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.afa-built-for-content > p {
    color: var(--afa-gray-600);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.afa-audience-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.afa-audience-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 8px 0;
    color: var(--afa-navy);
}

.afa-check-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* ============================================
   SECTION 5: 5 SIMPLE SESSIONS
   ============================================ */
.afa-sessions {
    padding: 70px 0;
    background: var(--afa-white);
    text-align: center;
}

.afa-sessions h2 {
    margin-bottom: 40px;
}

.afa-sessions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.afa-session-card {
    background: var(--afa-white);
    border: 1px solid var(--afa-gray-200);
    border-radius: 16px;
    padding: 28px 16px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.afa-session-card.afa-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.afa-session-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.afa-session-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #26abe0, #d41e81);
    border-radius: 50%;
    padding: 16px;
}

.afa-session-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.afa-session-card p {
    font-size: 0.9rem;
    color: var(--afa-navy);
    margin: 0;
    line-height: 1.4;
}

/* ============================================
   SECTION 6: PRICING
   ============================================ */
.afa-pricing {
    padding: 70px 0;
    background: var(--afa-white);
    text-align: center;
}

.afa-pricing h2 {
    margin-bottom: 8px;
}

.afa-pricing .afa-section-subtitle {
    margin-bottom: 40px;
}

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

.afa-pricing-card-link {
    display: block;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.afa-pricing-card-link.afa-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.afa-pricing-card-link:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.afa-pricing-card-link.afa-popular {
    transform: scale(1.05);
    z-index: 2;
}

.afa-pricing-card-link.afa-popular.afa-visible {
    transform: scale(1.05);
}

.afa-pricing-card-link.afa-popular:hover {
    transform: scale(1.08) translateY(-4px);
}

.afa-pricing-card-link img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   SECTION 7: THE BEST TIME TO START IS NOW
   ============================================ */
.afa-best-time {
    padding: 40px 0;
    position: relative;
}

.afa-best-time-inner {
    display: flex;
    align-items: stretch;
    background-image: url('/assets/ai-for-all/best-time/best-time-bg.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    overflow: hidden;
    min-height: 240px;
    position: relative;
    margin: 0 auto;
    max-width: 1100px;
}

.afa-best-time-text {
    flex: 1;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.afa-best-time-text h2 {
    color: var(--afa-white);
    font-size: 2rem;
    margin-bottom: 8px;
}

.afa-best-time-underline {
    width: 80px;
    height: 4px;
    background: #ff8c00;
    border-radius: 2px;
    margin-bottom: 16px;
}

.afa-best-time-text p {
    color: var(--afa-white);
    font-size: 1rem;
    margin: 4px 0;
    opacity: 0.95;
}

.afa-best-time-image {
    flex: 0 0 280px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.afa-best-time-image img {
    max-height: 260px;
    width: auto;
    object-fit: contain;
    margin-bottom: -4px;
}

/* ============================================
   SECTION 8: THIS IS NOT A TECHNICAL COURSE
   ============================================ */
.afa-not-technical {
    padding: 70px 0;
    background: var(--afa-white);
}

.afa-not-technical-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.afa-not-technical-image {
    flex: 0 0 280px;
    text-align: center;
}

.afa-not-technical-image img {
    max-width: 260px;
    width: 100%;
    height: auto;
}

.afa-not-technical-content {
    flex: 1;
}

.afa-not-technical-content h2 {
    margin-bottom: 12px;
}

.afa-not-technical-content > p {
    color: var(--afa-gray-600);
    font-size: 1.05rem;
    margin-bottom: 28px;
    max-width: 520px;
}

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

.afa-focus-item {
    display: flex;
    align-items: center;
    gap: 14px;
    opacity: 0;
    transform: translateY(20px);
}

.afa-focus-item.afa-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.afa-focus-item img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.afa-focus-blue img,
.afa-focus-pink img {
    border-radius: 50%;
    padding: 10px;
}

.afa-focus-blue img {
    background: #26abe0;
}

.afa-focus-pink img {
    background: #e91e8c;
}

.afa-focus-item span {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--afa-navy);
}

/* ============================================
   SECTION 9: BY THE END OF THIS PROGRAMME
   ============================================ */
.afa-by-end {
    padding: 70px 0;
    background: var(--afa-light-bg);
}

.afa-by-end-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.afa-by-end-content {
    flex: 1;
}

.afa-by-end-content h2 {
    margin-bottom: 24px;
}

.afa-outcomes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.afa-outcomes-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 10px 0;
    color: var(--afa-navy);
}

.afa-outcomes-list .afa-check-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

.afa-by-end-image {
    flex: 0 0 320px;
    text-align: center;
    position: relative;
}

.afa-by-end-image img {
    max-width: 300px;
    width: 100%;
    height: auto;
}

/* Decorative dots around robot */
.afa-by-end-image::before,
.afa-by-end-image::after {
    content: '';
    position: absolute;
    border-radius: 50%;
}

.afa-by-end-image::before {
    width: 14px;
    height: 14px;
    background: var(--afa-pink);
    bottom: 30%;
    left: -10px;
}

.afa-by-end-image::after {
    width: 10px;
    height: 10px;
    background: var(--afa-cyan);
    top: 15%;
    right: 10px;
}

/* ============================================
   SECTION 10: WHY THIS PROGRAMME WORKS
   ============================================ */
.afa-why-works {
    padding: 60px 0;
    background: var(--afa-dark-blue);
    color: var(--afa-white);
}

.afa-why-works-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.afa-why-works-title h2 {
    color: var(--afa-white);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.3;
    white-space: nowrap;
}

.afa-why-works-divider {
    width: 4px;
    min-height: 120px;
    background: linear-gradient(to bottom, var(--afa-pink), var(--afa-cyan));
    border-radius: 2px;
    flex-shrink: 0;
}

.afa-why-works-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    flex: 1;
}

.afa-why-works-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
}

.afa-why-works-item.afa-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.afa-why-works-item img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 10px;
    filter: brightness(0) invert(1);
}

.afa-why-works-item p {
    color: var(--afa-white);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

/* ============================================
   SECTION 11: FAQ
   ============================================ */
.afa-faq {
    padding: 70px 0;
    background: var(--afa-light-bg);
}

.afa-faq-inner {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.afa-faq-image {
    flex: 0 0 38%;
    max-width: 38%;
}

.afa-faq-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.afa-faq-content {
    flex: 1;
}

.afa-faq-content h2 {
    margin-bottom: 8px;
}

.afa-faq-subtitle {
    color: var(--afa-gray-600);
    font-size: 1rem;
    margin-bottom: 24px;
}

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

.afa-faq-item {
    border: 1px solid var(--afa-gray-200);
    border-radius: 10px;
    overflow: hidden;
    background: var(--afa-white);
    opacity: 0;
    transform: translateY(10px);
}

.afa-faq-item.afa-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

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

.afa-faq-question:hover {
    background: var(--afa-gray-100);
}

.afa-faq-question.active {
    background: var(--afa-dark-blue);
    color: var(--afa-white);
}

.afa-faq-toggle {
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
    margin-left: 12px;
}

.afa-faq-toggle::before,
.afa-faq-toggle::after {
    content: '';
    position: absolute;
    background: currentColor;
    transition: transform 0.2s;
}

.afa-faq-toggle::before {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.afa-faq-toggle::after {
    width: 2px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.afa-faq-question.active .afa-faq-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.afa-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.afa-faq-answer.open {
    max-height: 200px;
    padding: 12px 20px 16px;
}

.afa-faq-answer p {
    color: var(--afa-gray-600);
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================
   SECTION 12: FINAL CTA
   ============================================ */
.afa-final-cta {
    padding: 60px 0 0 0;
    text-align: center;
    background: var(--afa-white);
}

.afa-final-cta h2 {
    font-size: 2.2rem;
    color: var(--afa-navy);
    margin-bottom: 28px;
    line-height: 1.35;
}

.afa-btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, #00bcd4 0%, #7b2ff7 50%, #e91e8c 100%);
    color: var(--afa-white);
    font-size: 1.15rem;
    font-weight: 700;
    padding: 16px 48px;
    border-radius: 9px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.afa-btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(123, 47, 247, 0.35);
    color: var(--afa-white);
    text-decoration: none;
}

/* ============================================
   PRICING HIGHLIGHT ANIMATION
   ============================================ */
@keyframes afa-blink-border {
    0%, 100% { box-shadow: 0 0 0 3px var(--afa-pink); }
    50% { box-shadow: 0 0 16px 4px var(--afa-pink); }
}

.afa-pricing-card-link.afa-highlight {
    animation: afa-blink-border 0.7s ease-in-out 4;
    border-radius: 20px;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.afa-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.2s, box-shadow 0.2s;
}

.afa-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.afa-whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: var(--afa-white);
}

/* Red notification dot */
.afa-whatsapp-float::after {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #ff3b30;
    border-radius: 50%;
    border: 2px solid var(--afa-white);
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

/* Tablets */
@media (max-width: 1024px) {
    .afa-sessions-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .afa-pricing-card-link.afa-popular {
        transform: scale(1.02);
    }

    .afa-pricing-card-link.afa-popular.afa-visible {
        transform: scale(1.02);
    }

    .afa-why-works-inner {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .afa-why-works-title h2 {
        white-space: normal;
    }

    .afa-why-works-divider {
        width: 80%;
        height: 4px;
        min-height: auto;
    }
}

/* Mobile Landscape / Small Tablets */
@media (max-width: 768px) {
    .afa-landing h2 {
        font-size: 1.75rem;
    }

    .afa-hero {
        min-height: 360px;
        padding: 40px 0;
    }

    .afa-hero-content h1 {
        font-size: 2.5rem;
    }

    .afa-hero-tagline {
        font-size: 1rem;
    }

    .afa-hero-subtitle {
        font-size: 1rem;
    }

    .afa-already-part {
        padding: 50px 0 40px;
    }

    .afa-icons-grid {
        gap: 20px;
    }

    .afa-icon-card {
        padding: 20px 24px;
        min-width: 140px;
    }

    .afa-built-for-inner {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .afa-built-for-image {
        flex: none;
        max-width: 80%;
        margin: 0 auto;
    }

    .afa-audience-list li {
        justify-content: start;
    }

    .afa-sessions-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .afa-best-time {
        padding: 20px 0;
    }

    .afa-best-time-inner {
        flex-direction: column;
        border-radius: 16px;
        margin: 0 20px;
        min-height: auto;
    }

    .afa-best-time-text {
        padding: 32px 24px;
        text-align: left;
    }

    .afa-best-time-image {
        flex: none;
        justify-content: center;
        padding: 0 20px 10px;
    }

    .afa-best-time-image img {
        max-height: 200px;
        max-width: 100%;
    }

    .afa-not-technical-inner {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .afa-not-technical {
        padding: 50px 0;
    }

    .afa-not-technical-image {
        flex: none;
        max-width: 200px;
        margin: 0 auto;
    }

    .afa-not-technical-image img {
        max-width: 100%;
    }

    .afa-not-technical-content > p {
        max-width: 100%;
        text-align: center;
    }

    .afa-not-technical-content h2 {
        text-align: center;
    }

    .afa-focus-grid {
        justify-items: center;
    }

    .afa-by-end {
        padding: 50px 0;
    }

    .afa-by-end-inner {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .afa-by-end-image {
        flex: none;
        order: -1;
        max-width: 200px;
        margin: 0 auto;
    }

    .afa-by-end-image img {
        max-width: 100%;
    }

    .afa-by-end-content h2 {
        text-align: center;
    }

    .afa-outcomes-list li {
        justify-content: flex-start;
        text-align: left;
    }

    .afa-faq-inner {
        flex-direction: column;
        gap: 30px;
    }

    .afa-faq-image {
        flex: none;
        max-width: 100%;
    }

    .afa-faq-image img {
        max-height: 300px;
        width: auto;
        margin: 0 auto;
        display: block;
    }
}

/* Mobile Portrait */
@media (max-width: 576px) {
    .afa-landing h2 {
        font-size: 1.5rem;
    }

    .afa-hero {
        min-height: 300px;
        padding: 36px 0;
    }

    .afa-hero-content h1 {
        font-size: 2rem;
    }

    .afa-hero-tagline {
        font-size: 0.9rem;
        padding: 5px 12px;
    }

    .afa-hero-subtitle {
        font-size: 0.9rem;
    }

    .afa-hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .afa-btn-primary,
    .afa-btn-outline {
        text-align: center;
        padding: 11px 24px;
        font-size: 0.95rem;
    }

    .afa-hero-note {
        font-size: 0.85rem;
    }

    .afa-icons-grid {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .afa-icon-card {
        min-width: auto;
        max-width: 100%;
        width: 220px;
    }

    .afa-strip p {
        font-size: 1rem;
    }

    .afa-sessions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .afa-session-card {
        padding: 20px 12px;
    }

    .afa-session-icon {
        width: 56px;
        height: 56px;
    }

    .afa-session-card p {
        font-size: 0.82rem;
    }

    .afa-pricing-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .afa-pricing-card-link.afa-popular {
        transform: scale(1);
    }

    .afa-pricing-card-link.afa-popular.afa-visible {
        transform: scale(1);
    }

    .afa-best-time {
        padding: 16px 0;
    }

    .afa-best-time-inner {
        margin: 0 16px;
        border-radius: 14px;
    }

    .afa-best-time-text {
        padding: 24px 20px;
        margin-top: 6rem;
    }

    .afa-best-time-text h2 {
        font-size: 1.4rem;
    }

    .afa-best-time-text p {
        font-size: 0.88rem;
    }

    .afa-best-time-image {
        padding: 0 16px 8px;
    }

    .afa-best-time-image img {
        max-height: 180px;
    }

    .afa-not-technical {
        padding: 40px 0;
    }

    .afa-not-technical-image {
        max-width: 160px;
    }

    .afa-not-technical-content > p {
        font-size: 0.95rem;
    }

    .afa-focus-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .afa-focus-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .afa-focus-item img {
        width: 44px;
        height: 44px;
    }

    .afa-focus-item span {
        font-size: 0.9rem;
    }

    .afa-by-end {
        padding: 40px 0;
    }

    .afa-by-end-image {
        max-width: 180px;
    }

    .afa-outcomes-list li {
        font-size: 0.95rem;
        padding: 8px 0;
    }

    .afa-outcomes-list .afa-check-icon {
        width: 24px;
        height: 24px;
    }

    .afa-why-works-grid {
        gap: 20px;
    }

    .afa-why-works-item img {
        width: 44px;
        height: 44px;
    }

    .afa-why-works-item p {
        font-size: 0.85rem;
    }

    .afa-final-cta h2 {
        font-size: 1.6rem;
    }

    .afa-btn-cta {
        font-size: 1rem;
        padding: 14px 36px;
    }

    .afa-whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
    }

    .afa-whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Extra small screens */
@media (max-width: 400px) {
    .afa-hero-content h1 {
        font-size: 1.7rem;
    }

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

    .afa-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }

    .afa-focus-grid {
        grid-template-columns: 1fr;
    }

    .afa-best-time {
        padding: 12px 0;
    }

    .afa-best-time-inner {
        margin: 0 12px;
        border-radius: 12px;
    }

    .afa-best-time-text {
        padding: 20px 16px;
    }

    .afa-best-time-text h2 {
        font-size: 1.25rem;
    }

    .afa-best-time-image img {
        max-height: 160px;
    }

    .afa-not-technical-image {
        max-width: 140px;
    }

    .afa-by-end-image {
        max-width: 160px;
    }

    .afa-outcomes-list li {
        font-size: 0.88rem;
        gap: 10px;
    }

    .afa-why-works-grid {
        grid-template-columns: 1fr;
    }
}
