/*
Theme Name: Vamos Lá Farma
Theme URI: https://vamoslafarma.com.br
Author: Vamos Lá Farma
Author URI: https://vamoslafarma.com.br
Description: Tema de landing page profissional para o programa de formação Vamos Lá Farma. Inclui seções de hero, cursos, benefícios, depoimentos, preços e FAQ.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vamos-la-farma
Tags: landing-page, one-page, education, pharmacy, responsive
*/

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #1a2b4a;
    --navy-dark: #0f1e35;
    --navy-light: #2a3f6a;
    --gold: #C8A94A;
    --gold-light: #e0c06e;
    --gold-dark: #a88930;
    --white: #ffffff;
    --off-white: #f8f9fc;
    --light-gray: #f0f2f7;
    --mid-gray: #e2e6ef;
    --text-dark: #1a2b4a;
    --text-mid: #4a5568;
    --text-light: #718096;
    --red: #e53e3e;
    --green: #38a169;
    --teal: #319795;
    --purple: #805ad5;
    --blue: #3182ce;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.18);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
    font-weight: 700;
}

.text-highlight-gold { color: var(--gold); }
.text-highlight-navy { color: var(--navy); }

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

.section {
    padding: 96px 0;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-xl {
    padding: 20px 48px;
    font-size: 1.15rem;
    border-radius: var(--radius-md);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn-primary:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline-navy {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-outline-navy:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-dark);
    border-color: var(--gold);
    font-weight: 700;
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200,169,74,0.4);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}
.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* =====================================================
   SECTION HEADERS
   ===================================================== */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(26,43,74,0.08);
    color: var(--navy);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-badge--light {
    background: rgba(200,169,74,0.12);
    color: var(--gold-dark);
}

.section-badge--white {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* =====================================================
   TOP BAR
   ===================================================== */
.topbar {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    color: var(--white);
    padding: 10px 0;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.topbar span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar .topbar-right {
    color: rgba(255,255,255,0.85);
}

.topbar i {
    color: var(--gold);
}

/* =====================================================
   HEADER / NAVBAR
   ===================================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--mid-gray);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
    gap: 24px;
}

.nav-brand .brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    font-size: 1.6rem;
    color: var(--gold);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
}

.brand-tagline {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--navy);
    background: var(--light-gray);
}

.nav-cta {
    background: var(--gold);
    color: var(--navy-dark) !important;
    font-weight: 700;
    padding: 10px 20px;
}

.nav-cta:hover {
    background: var(--gold-dark);
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    padding: 100px 0 80px;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(200,169,74,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 40%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200,169,74,0.15);
    border: 1px solid rgba(200,169,74,0.3);
    color: var(--gold-light);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-actions .btn-outline {
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.hero-actions .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--gold);
    font-size: 0.9rem;
}

.trust-divider {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.2);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-card-main {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-card-header {
    background: var(--light-gray);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.hero-card-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--mid-gray);
}

.hero-card-dots span:nth-child(1) { background: #ff5f57; }
.hero-card-dots span:nth-child(2) { background: #febc2e; }
.hero-card-dots span:nth-child(3) { background: #28c840; }

.hero-card-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
}

.hero-card-body {
    padding: 0;
}

.hero-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.hero-card-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 20px;
    gap: 16px;
    border-top: 1px solid var(--mid-gray);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
}

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

/* Floating badges */
.hero-float-badge {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.hero-float-badge i {
    color: var(--gold);
}

.hero-float-1 {
    top: -16px;
    right: -16px;
    animation-delay: 0s;
}

.hero-float-2 {
    bottom: 80px;
    left: -24px;
    animation-delay: 1.5s;
}

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

/* Hero shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(200,169,74,0.05);
    top: -100px;
    right: -100px;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.03);
    bottom: -80px;
    left: -60px;
}

/* =====================================================
   STATS STRIP
   ===================================================== */
.stats-strip {
    background: var(--navy);
    padding: 48px 0;
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.stats-item {
    text-align: center;
    padding: 16px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stats-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stats-symbol {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stats-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-top: 4px;
}

.stats-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.12);
}

/* =====================================================
   CHALLENGES SECTION
   ===================================================== */
.challenges-section {
    background: var(--off-white);
}

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

.challenge-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--mid-gray);
    transition: var(--transition);
}

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

.challenge-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.challenge-icon--red { background: rgba(229,62,62,0.1); color: var(--red); }
.challenge-icon--blue { background: rgba(49,130,206,0.1); color: var(--blue); }
.challenge-icon--gold { background: rgba(200,169,74,0.1); color: var(--gold-dark); }
.challenge-icon--green { background: rgba(56,161,105,0.1); color: var(--green); }
.challenge-icon--purple { background: rgba(128,90,213,0.1); color: var(--purple); }
.challenge-icon--teal { background: rgba(49,151,149,0.1); color: var(--teal); }

.challenge-card h3 {
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.challenge-card p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.6;
}

/* =====================================================
   COURSES SECTION
   ===================================================== */
.courses-section {
    background: var(--white);
}

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

.course-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--mid-gray);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}

.course-card:hover {
    border-color: var(--navy);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.course-card--featured {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.course-card--featured:hover {
    border-color: var(--gold-dark);
    box-shadow: var(--shadow-xl);
}

.course-featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 1;
}

.course-card-top {
    padding: 32px;
    flex: 1;
}

.course-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.course-label--blue {
    background: rgba(49,130,206,0.1);
    color: var(--blue);
}

.course-label--gold {
    background: rgba(200,169,74,0.12);
    color: var(--gold-dark);
}

.course-title {
    font-size: 1.35rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.course-desc {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 20px;
}

.course-image-wrapper {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 20px;
}

.course-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.course-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    display: flex;
    justify-content: flex-end;
}

.course-duration {
    background: rgba(0,0,0,0.5);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.course-topics {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.course-topics li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-mid);
}

.course-topics li i {
    color: var(--green);
    margin-top: 2px;
    flex-shrink: 0;
}

.course-card-bottom {
    padding: 24px 32px;
    border-top: 1px solid var(--mid-gray);
    background: var(--off-white);
}

.course-price {
    margin-bottom: 16px;
}

.price-original {
    font-size: 0.85rem;
    color: var(--text-light);
    text-decoration: line-through;
    display: block;
    margin-bottom: 4px;
}

.price-current {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.price-currency {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
}

.price-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.price-cents {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
}

/* =====================================================
   BENEFITS SECTION
   ===================================================== */
.benefits-section {
    background: var(--off-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

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

.benefit-text h4 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.benefit-text p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.6;
}

/* Bonus cards */
.benefits-extras {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefits-extras-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefits-extras-title i {
    color: var(--gold);
}

.bonus-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--mid-gray);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.bonus-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.bonus-icon {
    width: 44px;
    height: 44px;
    background: rgba(200,169,74,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.bonus-content {
    flex: 1;
}

.bonus-content h4 {
    font-size: 0.92rem;
    color: var(--navy);
    margin-bottom: 2px;
}

.bonus-content p {
    font-size: 0.82rem;
    color: var(--text-mid);
    line-height: 1.5;
}

.bonus-badge {
    background: linear-gradient(135deg, var(--green), #2f855a);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

/* =====================================================
   TESTIMONIALS SECTION
   ===================================================== */
.testimonials-section {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(200,169,74,0.06) 0%, transparent 60%);
    pointer-events: none;
}

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

.testimonial-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 28px;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(200,169,74,0.3);
    transform: translateY(-4px);
}

.testimonial-card--featured {
    background: rgba(200,169,74,0.1);
    border-color: rgba(200,169,74,0.3);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: var(--gold);
    font-size: 0.85rem;
}

.testimonial-text {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
    quotes: "\201C" "\201D";
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.author-avatar--1 { background: linear-gradient(135deg, #667eea, #764ba2); }
.author-avatar--2 { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.author-avatar--3 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.author-avatar--4 { background: linear-gradient(135deg, #f093fb, #f5576c); }
.author-avatar--5 { background: linear-gradient(135deg, #4CAF50, #2e7d32); }
.author-avatar--6 { background: linear-gradient(135deg, #ff9a9e, #fecfef); }

.author-info strong {
    display: block;
    font-size: 0.88rem;
    color: var(--white);
    font-weight: 600;
}

.author-info span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
}

.testimonial-course-tag {
    display: inline-block;
    background: rgba(200,169,74,0.15);
    color: var(--gold-light);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* =====================================================
   PRICING SECTION
   ===================================================== */
.pricing-section {
    background: var(--off-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--mid-gray);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: var(--navy);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.pricing-card--featured {
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}

.pricing-card--featured:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.pricing-popular {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-dark);
    text-align: center;
    padding: 8px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pricing-header {
    padding: 28px 28px 0;
}

.pricing-label {
    display: inline-block;
    background: rgba(26,43,74,0.08);
    color: var(--navy);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.pricing-label--gold {
    background: rgba(200,169,74,0.12);
    color: var(--gold-dark);
}

.pricing-header h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 6px;
}

.pricing-header p {
    font-size: 0.85rem;
    color: var(--text-mid);
}

.pricing-body {
    padding: 24px 28px 28px;
}

.pricing-price {
    margin-bottom: 24px;
}

.pricing-old {
    font-size: 0.85rem;
    color: var(--text-light);
    text-decoration: line-through;
    display: block;
    margin-bottom: 4px;
}

.pricing-current {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.pricing-currency {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
}

.pricing-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.pricing-cents {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
}

.pricing-economy {
    display: block;
    margin-top: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--green);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-mid);
}

.pricing-features li i {
    color: var(--green);
    flex-shrink: 0;
}

.pricing-guarantee {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.pricing-guarantee i {
    color: var(--green);
}

/* Trust strip */
.trust-strip {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 56px;
    padding-top: 48px;
    border-top: 1px solid var(--mid-gray);
}

.trust-element {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-element > i {
    font-size: 1.8rem;
    color: var(--gold);
}

.trust-element strong {
    display: block;
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 2px;
}

.trust-element span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* =====================================================
   FAQ SECTION
   ===================================================== */
.faq-section {
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.faq-sidebar .section-title {
    margin-top: 12px;
    margin-bottom: 16px;
}

.faq-sidebar p {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 24px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--mid-gray);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--gold-dark);
}

.faq-icon {
    color: var(--gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

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

.faq-answer.open {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* =====================================================
   FINAL CTA SECTION
   ===================================================== */
.final-cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 100px 0;
    overflow: hidden;
    text-align: center;
}

.final-cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(200,169,74,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(200,169,74,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.final-cta-icon {
    width: 72px;
    height: 72px;
    background: rgba(200,169,74,0.15);
    border: 2px solid rgba(200,169,74,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold);
    margin: 0 auto 24px;
}

.final-cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--white);
    margin-bottom: 16px;
}

.final-cta-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 36px;
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.final-cta-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.final-cta-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
}

.final-cta-trust span i {
    color: var(--gold);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--navy-dark);
    padding: 64px 0 0;
}

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

.footer-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-top: 16px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--navy-dark);
}

.footer-links h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

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

.footer-links ul li a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

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

/* =====================================================
   SCROLL TO TOP
   ===================================================== */
.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--navy-dark);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { max-width: 480px; margin: 0 auto; }
    .challenges-grid { grid-template-columns: repeat(2, 1fr); }
    .courses-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .pricing-card--featured { transform: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .faq-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .section { padding: 64px 0; }
    .topbar .container { flex-direction: column; gap: 4px; text-align: center; }
    .topbar-right { display: none; }

    .nav-toggle { display: flex; }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px 24px;
        border-bottom: 1px solid var(--mid-gray);
        box-shadow: var(--shadow-md);
        gap: 4px;
    }
    .nav-menu.open { display: flex; }
    .nav-link { width: 100%; padding: 12px 16px; }

    .hero { padding: 64px 0 48px; }
    .hero-title { font-size: 2.4rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }

    .stats-grid { flex-direction: column; gap: 8px; }
    .stats-divider { width: 80%; height: 1px; }
    .stats-item { padding: 12px 24px; }

    .challenges-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; gap: 40px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .trust-strip { gap: 24px; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
    .hero-float-1, .hero-float-2 { display: none; }
    .hero-trust { flex-direction: column; align-items: flex-start; gap: 8px; }
    .trust-divider { display: none; }
}
