/* ===================================
   Smart Majority Free Trial Landing Page
   Modern, Premium, Wellness-Centered Design
   =================================== */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
/* Helvetica Font Face */
@font-face {
    font-family: 'Helvetica';
    src: url('../fonts/Helvetica.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables for Brand Consistency */
:root {
    /* Primary Colors */
    --primary-green: #609DE6;
    --primary-green-light: #7DB3F0;
    --primary-green-dark: #4A8AD6;

    /* Accent Colors */
    --accent-gold: #609DE6;
    --accent-cream: #E8F1FC;
    --accent-sage: #B8D4F5;

    /* Neutral Colors */
    --text-dark: #2D3436;
    --text-medium: #636E72;
    --text-light: #B2BEC3;
    --white: #FFFFFF;
    --off-white: #ffffff;
    --bg-light: #EDF4FC;
    --bg-section-alt: #E0ECFA;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #609DE6 0%, #4A8AD6 100%);
    --gradient-cta: linear-gradient(135deg, #609DE6 0%, #4A8AD6 100%);
    --gradient-soft: linear-gradient(180deg, #E8F1FC 0%, #FFFFFF 100%);

    /* Typography */
    --font-primary: 'Open Sans', Helvetica, sans-serif;
    --font-secondary: 'Open Sans', Helvetica, sans-serif;
    --font-helvetica: 'Helvetica', sans-serif;
    --font-open-sans: 'Open Sans', sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-max: 1200px;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(96, 157, 230, 0.15);
    --shadow-medium: 0 8px 40px rgba(96, 157, 230, 0.2);
    --shadow-strong: 0 20px 60px rgba(96, 157, 230, 0.25);
}
/* Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}
a:hover{
    text-decoration: none !important;
}
body {
    font-family: var(--font-secondary);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: 1.1rem;
    color: var(--text-medium);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.section-padding {
    padding: var(--section-padding) 0;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition-fast);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 500;
    color: #FFFFFF;
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--text-dark);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--primary-green);
}

.nav-cta {
    background: var(--gradient-cta);
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.nav-cta::after {
    display: none !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-fast);
}

.navbar.scrolled .mobile-toggle span {
    background: var(--text-dark);
}

/* When nav-links is active (mobile menu open), links should be black */
.nav-links.active a {
    color: var(--text-dark);
}

.nav-links.active a:hover {
    color: var(--primary-green);
}

/* ===================================
   Hero Section - Full Background Image
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgb(0 0 0 / 65%));
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.hero-content-centered {
    max-width: 900px;
    text-align: center;
    animation: fadeInUp 1s ease forwards;
}

.hero-content-centered h1 {
    margin-bottom: 25px;
    color: var(--primary-green) !important;
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content-centered h1 span {
    color: var(--primary-green);
}

.hero-content-centered .hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.8;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-content-centered .hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
}

.hero-content-centered .micro-copy {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.hero-content-centered .trust-badge {
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.hero-content-centered .trust-badge .stars {
    color: var(--accent-gold);
}

/* Legacy hero styles (kept for reference) */
.hero-content {
    animation: fadeInUp 1s ease forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-green);
    box-shadow: var(--shadow-soft);
    margin-bottom: 30px;
}

.hero-badge span {
    font-size: 1.2rem;
}

.hero h1 {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero h1 span {
    color: var(--primary-green);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 15px;
    line-height: 1.8;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline;
    vertical-align: middle;
    justify-content: center;
    gap: 10px;
    background: var(--gradient-cta);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-medium);
    width: fit-content;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.btn-primary .arrow {
    transition: var(--transition-fast);
}

.btn-primary:hover .arrow {
    transform: translateX(5px);
}

.micro-copy {
    font-size: 0.9rem;
    color: var(--text-light);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.trust-badge .stars {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease forwards;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 15px;
}

.floating-card.card-1 {
    top: 20%;
    left: -40px;
}

.floating-card.card-2 {
    bottom: 20%;
    right: -40px;
}

.floating-card .icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-cta);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.floating-card .text h4 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.floating-card .text p {
    font-size: 0.85rem;
    margin: 0;
}

/* ===================================
   Section Titles
   =================================== */
.section-header {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 60px;
}

.section-header .subtitle {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 20px;
    border: 1px solid var(--primary-green);
}

.section-header h2 {
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.15rem;
}

/* ===================================
   Video Section
   =================================== */
.video-section {
    padding: 80px 0 100px;
    background: var(--off-white);
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    aspect-ratio: 16/9;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: var(--transition-fast);
}

.video-placeholder:hover::before {
    background: rgba(0, 0, 0, 0.4);
}

.play-button {
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-strong);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.play-button::before {
    content: '';
    position: absolute;
    inset: -15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

.play-button svg {
    width: 40px;
    height: 40px;
    fill: var(--primary-green);
    margin-left: 5px;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
}

/* ===================================
   Why Section
   =================================== */
.why-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
    position: relative;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(96, 157, 230, 0.3), transparent);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-text h2 {
    margin-bottom: 25px;
    line-height: 1.4;
}

.why-text .intro {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: var(--text-medium);
    line-height: 1.8;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.benefits-list li .icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: var(--gradient-cta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.8rem;
    margin-top: 2px;
}

.why-note {
    margin-top: 35px;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    border-left: 4px solid var(--primary-green);
    font-style: italic;
    color: var(--text-medium);
}

.why-image {
    position: relative;
}

.why-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

/* Section 2 - Full width header for headline */
.section-header-wide {
    max-width: 100%;
    margin-bottom: 40px;
}

.section-header-wide h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    line-height: 1.4;
}

/* Why content with aligned text/image tops */
.why-content-aligned {
    align-items: flex-start;
}

.why-content-aligned .why-text {
    padding-top: 0;
}

.why-content-aligned .why-image {
    padding-top: 0;
}

/* ===================================
   What You Get Section
   =================================== */
.features-section {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--primary-green);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 20px;
    display: flex;
    color: var(--white);
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-cta);
}

.feature-card:hover .feature-icon span {
    filter: brightness(10);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.7;
}

.membership-benefits {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 25px;
    margin-top: 60px;
}

.membership-benefits h3 {
    text-align: center;
    margin-bottom: 35px;
    font-size: 1.8rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 20px 25px;
    border-radius: 15px;
    transition: var(--transition-fast);
}

.benefit-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-soft);
}

.benefit-item .check {
    width: 30px;
    height: 30px;
    min-width: 30px;
    background: var(--gradient-cta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
}

.benefit-item span {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* ===================================
   Who This Is For Section
   =================================== */
.audience-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--off-white) 100%);
}

.audience-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.audience-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: var(--shadow-medium);
}

.audience-list {
    list-style: none;
    display: grid;
    gap: 18px;
}

.audience-list li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.audience-list li:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.audience-list li .icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: var(--gradient-cta);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.audience-list li span {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 600;
}

.audience-note {
    margin-top: 40px;
    padding: 30px;
    background: var(--accent-cream);
    border-radius: 20px;
    text-align: center;
}

.audience-note p {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-style: italic;
    margin: 0;
}

/* Section 4 - Balanced dual-image layout */
.audience-content-balanced {
    align-items: flex-start;
}

.audience-image-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.audience-image-wrapper .audience-image {
    position: relative;
}

.audience-image-wrapper .audience-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.audience-image-wrapper .audience-image:hover img {
    transform: scale(1.02);
    box-shadow: var(--shadow-strong);
}

.audience-image-top img {
    aspect-ratio: 4/3;
    object-fit: cover;
}

.audience-image-bottom img {
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* ===================================
   Popular Courses Section
   =================================== */
.courses-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.course-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid rgba(74, 124, 89, 0.1);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.course-image {
    height: auto;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.course-card:hover .course-image img {
    transform: scale(1.05);
}

.course-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-gold);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.course-content {
    padding: 25px;
}

.course-content h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.course-content p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 15px;
}

.course-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--accent-sage);
    opacity: 0.5;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonial-stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--gradient-cta);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
}

.testimonial-info h5 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.testimonials-link {
    text-align: center;
    margin-top: 50px;
}

.testimonials-link a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonials-link a:hover {
    gap: 15px;
}

/* ===================================
   Why Join Today Section
   =================================== */
.join-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.join-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.join-content h2 {
    margin-bottom: 25px;
}

.join-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.join-content .highlight {
    color: var(--primary-green);
    font-weight: 600;
}

/* Join section CTA button */
.join-cta-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

/* Clickable course cards */
a.course-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* ===================================
   Final CTA Section
   =================================== */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
    background-size: 80px 80px;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: clamp(2rem, 4vw, 2.5rem);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 35px;
}

.cta-content .btn-primary {
    background: var(--white);
    color: var(--primary-green);
    padding: 20px 50px;
    font-size: 1.2rem;
}

.cta-content .btn-primary:hover {
    background: var(--accent-cream);
}

.cta-trust {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(74, 124, 89, 0.3);
    z-index: 999;
}

#backToTop:hover {
    background: var(--primary-green-dark);
    box-shadow: var(--shadow-medium);
}

#backToTop i {
    font-size: 1.2rem;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand img {
    height: 45px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    margin-bottom: 20px;
    /* Removed brightness filter for PNG logo */
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(74, 124, 89, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(74, 124, 89, 0);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .features-grid,
    .courses-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 80px;
    }

    /* Hero responsive */
    .hero-content-centered {
        padding: 0 20px;
    }

    .hero-content-centered h1 {
        font-size: 2.5rem;
    }

    .hero-content-centered .hero-description {
        font-size: 1.1rem;
    }

    /* Section 2 responsive */
    .section-header-wide {
        text-align: center;
    }

    .section-header-wide h2 {
        font-size: 1.6rem;
    }

    .why-content,
    .audience-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-image,
    .audience-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    /* Footer responsive */
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: var(--shadow-medium);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
    }

    .features-grid,
    .courses-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .membership-benefits {
        padding: 30px 20px;
    }

    .cta-trust {
        flex-direction: column;
        gap: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .btn-primary {
        padding: 16px 30px;
        font-size: 1rem;
        width: 100%;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .audience-list li {
        padding: 15px 20px;
    }
}

nav#navbar {
    display: none;
}
section:not(.unpad):not(.imagebg):not([class*='bg--']):not(.imageblock):not(.unpad--bottom):not(.border--bottom):not(.space--xxs) + section:not(.unpad):not(.imagebg):not([class*='bg--']):not(.imageblock):not(.border--bottom):not(.space--xxs) {
     padding: 80px 0 100px;
}
img {
    max-width: 100%;
    margin-bottom: 0px !important;
}