/* ============================================
   SM360 MENTORIA - PREMIUM LANDING PAGE
   Design System & Styles
   ============================================ */

/* CSS Variables - Design Tokens */
:root {
    /* Colors - Elegant Beige/Champagne Gold Palette */
    --gold-primary: #C5A572;
    --gold-light: #D4C4A8;
    --gold-dark: #A68B5B;
    --gold-soft: #CBBEA0;
    --gold-champagne: #BFA980;
    --black-primary: #0D0D0D;
    --black-secondary: #141414;
    --black-tertiary: #1E1E1E;
    --white: #ffffff;
    --white-soft: #f8f8f8;
    --gray-100: #e5e5e5;
    --gray-200: #cccccc;
    --gray-300: #999999;
    --gray-400: #666666;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 40%, var(--gold-light) 100%);
    --gradient-gold-soft: linear-gradient(135deg, var(--gold-champagne) 0%, var(--gold-primary) 100%);
    --gradient-dark: linear-gradient(180deg, var(--black-primary) 0%, var(--black-secondary) 100%);
    --gradient-radial: radial-gradient(ellipse at center, var(--black-tertiary) 0%, var(--black-primary) 70%);

    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Sizing */
    --container-max: 1200px;
    --section-padding: 100px;
    --section-padding-mobile: 60px;

    /* Effects */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 4px 30px rgba(184, 134, 11, 0.25);
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    --border-radius: 12px;
    --border-radius-lg: 24px;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--black-primary);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 500;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 500;
}

p {
    font-size: 1rem;
    color: var(--gray-200);
}

.lead {
    font-size: 1.125rem;
    color: var(--white);
    font-weight: 400;
}

.gold {
    color: var(--gold-primary);
}

/* Logo Image Styles */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 45px;
    width: auto;
    transition: opacity var(--transition-fast);
    filter: sepia(30%) saturate(150%) brightness(95%) hue-rotate(-5deg);
}

.logo-img:hover {
    opacity: 0.9;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 8px;
    filter: sepia(30%) saturate(150%) brightness(95%) hue-rotate(-5deg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-medium);
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--black-primary);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(184, 134, 11, 0.35);
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.125rem;
}

.btn-header {
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 12px 24px;
    font-size: 0.875rem;
}

.btn-header:hover {
    background: var(--gold-primary);
    color: var(--black-primary);
}

/* Section Styles */
section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-primary);
    margin-bottom: 16px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-medium);
}

.header.scrolled {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--gray-200);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-fast);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-radial);
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 50%, rgba(184, 134, 11, 0.06) 0%, transparent 60%);
}

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

.hero-text {
    z-index: 2;
}

.badge {
    display: inline-block;
    background: rgba(184, 134, 11, 0.12);
    border: 1px solid rgba(184, 134, 11, 0.25);
    color: var(--gold-primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero h1 {
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-200);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-note {
    font-size: 0.875rem;
    color: var(--gray-300);
    font-style: italic;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-frame {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.image-frame img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold-primary);
    border-radius: var(--border-radius-lg);
    z-index: 1;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0.6;
}

.hero-scroll span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-300);
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--gray-400);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 4px;
    animation: scroll 2s infinite;
}

@keyframes scroll {

    0%,
    100% {
        opacity: 1;
        top: 8px;
    }

    50% {
        opacity: 0.3;
        top: 20px;
    }
}

/* ============================================
   PROBLEMS SECTION
   ============================================ */
.problems {
    background: var(--black-secondary);
}

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

.problem-card {
    background: var(--black-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 32px;
    transition: all var(--transition-medium);
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: rgba(184, 134, 11, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: rgba(184, 134, 11, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--gold-primary);
}

.problem-card h3 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1.125rem;
}

.problem-card p {
    font-size: 0.95rem;
    color: var(--gray-300);
}

/* ============================================
   SOLUTION SECTION
   ============================================ */
.solution {
    background: var(--black-primary);
}

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

.solution-text p {
    margin-bottom: 16px;
}

.solution-highlights {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.highlight-icon {
    width: 28px;
    height: 28px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: var(--black-primary);
    font-weight: 700;
    flex-shrink: 0;
}

.highlight-item span {
    font-size: 0.9rem;
    color: var(--gray-200);
}

.solution-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
}

/* ============================================
   WHO IS FOR SECTION
   ============================================ */
.who-is-for {
    background: var(--gradient-dark);
}

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

.who-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    padding: 40px 24px;
    text-align: center;
    transition: all var(--transition-medium);
}

.who-card:hover {
    background: rgba(184, 134, 11, 0.05);
    border-color: rgba(184, 134, 11, 0.2);
    transform: translateY(-5px);
}

.who-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-primary);
    opacity: 0.3;
    margin-bottom: 16px;
}

.who-card h3 {
    color: var(--white);
    margin-bottom: 12px;
}

.who-card p {
    font-size: 0.9rem;
}

/* ============================================
   WHAT YOU GET SECTION
   ============================================ */
.what-you-get {
    background: var(--black-secondary);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.module-card {
    background: var(--black-primary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 32px;
    transition: all var(--transition-medium);
}

.module-card:hover {
    border-color: rgba(184, 134, 11, 0.2);
}

.module-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.module-number {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--black-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.module-header h3 {
    color: var(--white);
}

.module-list {
    list-style: none;
}

.module-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--gray-200);
    font-size: 0.95rem;
}

.module-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
}

/* Deliverables Section */
.deliverables-section {
    background: var(--black-tertiary);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    margin-bottom: 60px;
}

.deliverables-header {
    text-align: center;
    margin-bottom: 40px;
}

.deliverables-header h3 {
    color: var(--white);
    font-size: 1.75rem;
}

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

.deliverable-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform var(--transition-medium);
}

.deliverable-item:hover {
    transform: scale(1.02);
}

.deliverable-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Bonus Section */
.bonus-section {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1) 0%, rgba(184, 134, 11, 0.02) 100%);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 48px;
}

.bonus-header {
    text-align: center;
    margin-bottom: 40px;
}

.gold-tag {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-header h3 {
    color: var(--white);
    font-size: 1.5rem;
}

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

.bonus-card {
    text-align: center;
    padding: 24px;
}

.bonus-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.bonus-card h4 {
    color: var(--white);
    margin-bottom: 8px;
    font-size: 1rem;
}

.bonus-card p {
    font-size: 0.875rem;
    color: var(--gray-300);
}

/* ============================================
   AI SECTION
   ============================================ */
.ai-section {
    background: var(--black-primary);
    border-top: 1px solid rgba(184, 134, 11, 0.1);
    border-bottom: 1px solid rgba(184, 134, 11, 0.1);
}

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

.ai-text p {
    margin-bottom: 16px;
}

.ai-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ai-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.ai-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.ai-feature h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 4px;
    font-family: var(--font-body);
    font-weight: 600;
}

.ai-feature p {
    font-size: 0.875rem;
    color: var(--gray-300);
    margin: 0;
}

.ai-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
}

/* ============================================
   MENTOR SECTION
   ============================================ */
.mentor {
    background: var(--black-secondary);
}

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

.mentor-image {
    position: relative;
}

.mentor-image img {
    width: 100%;
    max-width: 450px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
}

.mentor-decoration {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    border: 2px solid var(--gold-primary);
    border-radius: var(--border-radius-lg);
    z-index: -1;
    opacity: 0.3;
}

.mentor-text p {
    margin-bottom: 16px;
}

.mentor-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-300);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    background: var(--black-primary);
}

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

.result-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform var(--transition-medium);
}

.result-item:hover {
    transform: scale(1.02);
}

.result-item img {
    width: 100%;
    height: auto;
    display: block;
}

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

.result-small {
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform var(--transition-medium);
}

.result-small:hover {
    transform: scale(1.02);
}

.result-small img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   INVESTMENT SECTION
   ============================================ */
.investment {
    background: var(--gradient-radial);
    padding: 120px 0;
}

.investment-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--black-secondary);
    border: 2px solid var(--gold-primary);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    position: relative;
    text-align: center;
}

.investment-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--black-primary);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.investment-header {
    margin-bottom: 32px;
}

.investment-header h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 8px;
}

.investment-header p {
    color: var(--gray-300);
}

.investment-includes {
    text-align: left;
    margin-bottom: 40px;
}

.investment-includes h4 {
    color: var(--gold-primary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.investment-includes ul {
    list-style: none;
}

.investment-includes li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--gray-200);
}

.investment-includes li svg {
    color: var(--gold-primary);
    flex-shrink: 0;
}

.investment-card .btn {
    width: 100%;
    margin-bottom: 20px;
}

.investment-note {
    font-size: 0.85rem;
    color: var(--gray-400);
    font-style: italic;
}

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

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

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--white);
}

.faq-question svg {
    color: var(--gold-primary);
    transition: transform var(--transition-fast);
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--gray-300);
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.12) 0%, rgba(184, 134, 11, 0.02) 100%);
    padding: 100px 0;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 24px;
}

.cta-content>p {
    font-size: 1.125rem;
    color: var(--gray-200);
    margin-bottom: 40px;
}

.cta-content .btn {
    margin-bottom: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black-primary);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin-top: 12px;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

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

.footer-social a {
    color: var(--gray-300);
    transition: color var(--transition-fast);
}

.footer-social a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.footer-bottom a {
    color: var(--gold-primary);
    text-decoration: none;
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black-primary);
    box-shadow: var(--shadow-gold);
    z-index: 999;
    transition: all var(--transition-medium);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(184, 134, 11, 0.4);
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-aos] {
    opacity: 0;
    transition: all 0.6s ease;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .ai-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ai-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    section {
        padding: var(--section-padding-mobile) 0;
    }

    .nav,
    .btn-header {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .image-frame {
        max-width: 300px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        align-items: center;
    }

    .hero-scroll {
        display: none;
    }

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

    .solution-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .solution-image {
        order: -1;
    }

    .solution-highlights {
        grid-template-columns: 1fr;
    }

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

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

    .deliverables-section {
        padding: 32px 20px;
    }

    .deliverables-gallery {
        grid-template-columns: 1fr;
    }

    .bonus-section {
        padding: 32px 20px;
    }

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

    .mentor-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .mentor-image img {
        margin: 0 auto;
    }

    .mentor-stats {
        justify-content: center;
    }

    .results-gallery {
        grid-template-columns: 1fr;
    }

    .more-results {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 1rem;
    }

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

    .mentor-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

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

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