/* CSS Variables for Theme */
:root {
    --primary-green: #e83e8c; /* Vibrant Pink */
    --primary-green-hover: #d81b60;
    --primary-green-light: #fce4ec;
    
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-dark: #1a1a1a;
    
    --text-main: #333333;
    --text-muted: #6c757d;
    --text-light-muted: #a0a0a0;
    --text-white: #ffffff;
    
    --accent: #e83e8c;
    --danger: #e74c3c;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --radius: 8px;
    --radius-lg: 16px;
    --shadow: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.08);
    
    --transition: all 0.3s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: #111;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section {
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}



.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w { max-width: 800px; }

/* Colors */
.bg-light { background-color: var(--bg-light); }
.bg-white { background-color: var(--bg-white); }
.bg-dark { background-color: var(--bg-dark); }
.text-white { color: var(--text-white) !important; }
.text-muted { color: var(--text-muted); }
.text-light-muted { color: var(--text-light-muted); }
.text-primary { color: var(--primary-green); }
.highlight-text { color: var(--primary-green); font-weight: 600; }
.text-bold { font-weight: 600; }
.text-small { font-size: 0.85rem; }

/* Typography */
.pre-headline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.main-headline {
    font-size: 2.5rem;
    font-weight: 800;
}

.highlight {
    color: var(--primary-green);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--primary-green-light);
    z-index: -1;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: #eee;
    color: #555;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tag-light {
    background-color: rgba(255,255,255,0.1);
    color: #ddd;
}

.tag-green {
    background-color: rgba(232, 62, 140, 0.1);
    color: var(--primary-green);
}

.mb-2 { margin-bottom: 1rem; }

/* Hero Split Layout */
.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.hero-left {
    flex: 1;
    padding: 80px 40px 80px 10%;
    background-color: #fcfcfc;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
    background: linear-gradient(90deg, rgba(252,252,252,1) 0%, rgba(252,252,252,0.85) 100%);
    padding: 20px 20px 20px 0;
}

.hero-content .pre-headline {
    color: var(--primary-green);
    font-weight: 700;
}

.hero-content .main-headline {
    font-size: 3.2rem;
    line-height: 1.1;
    color: #111;
}

.hero-content .text-primary {
    color: var(--primary-green);
}

.hero-right {
    flex: 1;
    background-color: #111;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: -2px;
    width: 250px;
    height: 100%;
    background: linear-gradient(to right, #fcfcfc 0%, transparent 100%);
    z-index: 1;
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: #e0e0e0;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

.floating-whatsapp img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

@media (max-width: 992px) {
    .hero-split {
        flex-direction: column;
    }
    .hero-left {
        padding: 60px 20px;
    }
    .hero-right {
        min-height: 400px;
    }
    .hero-right::before {
        width: 100%;
        height: 150px;
        background: linear-gradient(to bottom, #fcfcfc 0%, transparent 100%);
    }
    .hero-content .main-headline {
        font-size: 2.2rem;
    }
}


/* Buttons */
.cta-button {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 20px rgba(232, 62, 140, 0.25);
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-green), #d81b60);
    color: white;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(232, 62, 140, 0.35);
}

.cta-button:active {
    transform: translateY(1px);
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Placeholders */
.img-placeholder {
    background-color: #e9ecef;
    border: 2px dashed #ced4da;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 20px;
}

.dark-placeholder {
    background-color: #2c2c2c;
    border-color: #444;
}

.vsl-placeholder {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16/9;
    background-color: #000;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.vsl-content {
    text-align: center;
    color: white;
}

.play-icon {
    font-size: 4rem;
    color: var(--primary-green);
    margin-bottom: 10px;
    display: inline-block;
    transition: var(--transition);
}

.vsl-placeholder:hover .play-icon {
    transform: scale(1.1);
}

/* Laptop Mockup & Alpaclass UI */
.mockup-wrapper {
    position: relative;
    max-width: 850px;
    margin: 40px auto 20px;
    display: flex;
    justify-content: center;
    perspective: 1500px;
}

.laptop-mockup {
    position: relative;
    width: 100%;
    max-width: 750px;
    z-index: 1;
    transform: rotateX(8deg) rotateY(-8deg) rotateZ(1deg);
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.laptop-mockup:hover {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
}

.laptop-screen {
    width: 100%;
    aspect-ratio: 16/10;
    background-color: var(--bg-dark);
    border: 15px solid #000;
    border-bottom: 25px solid #000;
    border-radius: 12px 12px 0 0;
    position: relative;
    box-shadow: 
        -2px 2px 0 #555,
        -4px 4px 0 #222,
        0 20px 40px rgba(0,0,0,0.5);
    overflow: hidden;
}

.laptop-screen::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    margin-top: -16px;
    box-shadow: inset 0 0 2px rgba(0,0,0,0.8);
}

.laptop-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    pointer-events: none;
    z-index: 10;
}

.laptop-base {
    width: 110%;
    height: 18px;
    background: linear-gradient(to bottom, #d4d4d4 0%, #8e8e8e 100%);
    margin-left: -5%;
    border-radius: 0 0 16px 16px;
    position: relative;
    box-shadow: 
        inset 0 2px 0 rgba(255,255,255,0.5),
        0 2px 0 #555,
        0 4px 0 #444,
        0 6px 0 #333,
        0 20px 30px rgba(0,0,0,0.4);
}

.browser-header-simple {
    background: #2d2d2d;
    height: 24px;
    display: flex;
    align-items: center;
    padding: 0 12px;
}

.browser-header-simple .dots {
    display: flex;
    gap: 6px;
}

.browser-header-simple .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.alpaclass-container {
    padding: 20px 30px;
    height: calc(100% - 24px);
    overflow-y: auto;
}

.alpaclass-container::-webkit-scrollbar {
    width: 6px;
}
.alpaclass-container::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}

.alpaclass-top {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 25px;
}

.ac-logo {
    color: #fff;
    font-size: 1.1rem;
    font-family: sans-serif;
}
.ac-logo small {
    color: #aaa;
    font-size: 0.8rem;
    margin-left: 5px;
}

.ac-title {
    color: #fff;
    font-size: 0.95rem;
    font-weight: bold;
    text-align: left;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 8px;
    letter-spacing: 1px;
}

.ac-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding-bottom: 20px;
}

.ac-card {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: 0 4px 15px rgba(0,0,0,0.6);
    border: 1px solid #2a2a2a;
    transition: transform 0.2s, border-color 0.2s;
    background: #111;
}

.ac-card:hover {
    transform: scale(1.03) translateY(-5px);
    border-color: #555;
}

.ac-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ac-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ac-card-title {
    color: #ccc;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: left;
}

.phone-mockup {
    position: absolute;
    bottom: -25px;
    right: -20px;
    width: 220px;
    height: 440px;
    background: #0f0f0f;
    border: 12px solid #111;
    border-radius: 35px;
    z-index: 2;
    transform: rotateX(12deg) rotateY(-18deg) rotateZ(-3deg);
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 
        -2px 2px 0 #555,
        -4px 4px 0 #444,
        -6px 6px 0 #333,
        -8px 8px 0 #222,
        -20px 25px 45px rgba(0,0,0,0.6), 
        inset 0 0 8px rgba(0,0,0,0.8), 
        0 0 0 2px #333;
    overflow: hidden;
}

.phone-mockup:hover {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5), inset 0 0 8px rgba(0,0,0,0.8), 0 0 0 2px #333;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
    pointer-events: none;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    position: relative;
    overflow-y: hidden;
    background-color: var(--bg-dark);
}

.phone-screen::-webkit-scrollbar {
    display: none;
}

.phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 20px;
    background: #000;
    border-radius: 20px;
    z-index: 11;
    box-shadow: inset 0 0 4px rgba(255,255,255,0.1);
}

.phone-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
.phone-pad {
    padding: 15px 15px;
}
.phone-mockup .ac-card-title {
    font-size: 0.6rem;
}

/* Social Proof Grid */
.testimonials-masonry {
    column-count: 3;
    column-gap: 20px;
    margin-top: 30px;
}

.testimonial-print {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    border: 1px solid #333;
    transition: transform 0.3s;
    display: block;
}

.testimonial-print:hover {
    transform: scale(1.02);
}

.grid {
    display: grid;
    gap: 20px;
}

.proofs-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.proof-card {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.proof-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.proof-card .img-placeholder {
    height: 300px;
    margin-bottom: 15px;
}

.proof-name {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Mockup */
.mockup-placeholder {
    height: 400px;
    max-width: 800px;
    margin: 0 auto;
}

/* Testimonials Text */
.quote {
    font-size: 1.2rem;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
    color: #e0e0e0;
}

.quote cite {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    font-style: normal;
    color: var(--primary-green);
    font-weight: 600;
}

/* Guarantee Section */
.guarantee-highlight {
    color: var(--primary-green);
    font-size: 1.1rem;
}

.seal-placeholder {
    height: 150px;
    max-width: 300px;
    margin: 0 auto;
    border-radius: 50%;
}

/* Instructor Section */
.instructor-profile {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.instructor-img {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    position: relative;
}

.instructor-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, transparent, #ffffff);
    z-index: 1;
    pointer-events: none;
}

.instructor-img img {
    width: 100%;
    border-radius: var(--radius-lg);
    display: block;
}

.portrait-placeholder {
    height: 450px;
    border-radius: var(--radius-lg);
}

.instructor-bio {
    flex: 2;
    min-width: 300px;
}

/* Table */
/* Module Carousel */
.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 50px;
}

.module-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 15px 5px;
    scrollbar-width: none;
}

.module-carousel::-webkit-scrollbar {
    display: none;
}

.module-card {
    flex: 0 0 calc(50% - 10px);
    scroll-snap-align: start;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #eee;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 1px solid #ddd;
    color: var(--primary-green);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.carousel-btn:hover {
    background: var(--primary-green);
    color: #fff;
    border-color: var(--primary-green);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.9);
}

.prev-btn { left: 0; }
.next-btn { right: 0; }

.module-img-placeholder {
    height: 160px;
    background-color: #fce4ec;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 0.9rem;
    text-align: center;
    padding: 20px;
}

.module-title {
    padding: 15px 20px;
    font-size: 1.1rem;
    color: #333;
    font-weight: 700;
}

/* Offer Section */
.offer-container {
    max-width: 700px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.benefit-card {
    background: #ffffff;
    border: 1px solid #fce4ec;
    border-radius: 12px;
    padding: 25px;
    text-align: left;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 62, 140, 0.08);
    border-color: var(--primary-green);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.benefit-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111;
}

.benefit-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.pricing-box {
    padding: 60px 40px;
    background: #ffffff;
    border-radius: 20px;
    border: 2px solid var(--primary-green);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05), 0 0 40px rgba(232, 62, 140, 0.1);
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.pricing-tag {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(232, 62, 140, 0.3);
}

.clean-seal {
    display: inline-block;
    padding: 10px 30px;
    background-color: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 50px;
    color: #6c757d;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.pricing-seals {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.seal-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.guarantee-highlight {
    color: #27ae60;
    font-weight: 800;
    font-size: 1rem;
    margin-top: 5px;
}

.price-anchor {
    font-size: 1.4rem;
    color: #e74c3c;
    font-weight: 700;
    margin-bottom: 8px;
}

.price-anchor .prefix {
    color: #e74c3c;
}

.price-anchor del {
    text-decoration-thickness: 1.5px;
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.price-prefix, .price-suffix {
    font-size: 1.1rem;
    color: #555;
    font-weight: 600;
    white-space: nowrap;
}

.highlight-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #27ae60;
    line-height: 1;
    letter-spacing: -1.5px;
    white-space: nowrap;
}

.btn-checkout {
    display: inline-block;
    width: 100%;
    background-color: #df216e;
    color: #ffffff;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 18px 0;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(223, 33, 110, 0.35);
    transition: all 0.3s ease;
}

.btn-checkout:hover {
    background-color: #c8165c;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(223, 33, 110, 0.45);
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    background: var(--bg-white);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-green);
}

.faq-question .icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-question {
    color: var(--primary-green);
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px; /* arbitrary max height */
}

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid #eee;
}

.footer-links a {
    color: var(--text-muted);
    transition: var(--transition);
}

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

@media (max-width: 992px) {
    .testimonials-masonry {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .text-left { text-align: center !important; }
    .hero-content .pre-headline { text-align: center; display: block; }
    
    .testimonials-masonry {
        column-count: 1;
    }
    .hero-content .main-headline { font-size: 2.2rem; }
    .section-title { font-size: 1.8rem; }
    .instructor-profile { flex-direction: column; }
    .pricing-box { padding: 20px; }
    .highlight-price { font-size: 2.8rem; }
    
    .mockup-wrapper {
        margin: 20px 0;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        perspective: none;
    }
    
    .laptop-mockup {
        transform: rotateX(10deg);
    }
    .laptop-mockup:hover {
        transform: rotateX(0deg);
    }
    
    .phone-mockup {
        position: relative;
        width: 200px;
        height: 400px;
        right: auto;
        bottom: auto;
        border-width: 10px;
        border-radius: 30px;
        transform: rotateX(15deg);
        box-shadow: 
            0 2px 0 #555,
            0 4px 0 #444,
            0 6px 0 #333,
            0 20px 30px rgba(0,0,0,0.5), 
            inset 0 0 8px rgba(0,0,0,0.8);
    }
    .phone-mockup:hover {
        transform: rotateX(0deg);
    }
    
    .phone-notch {
        width: 60px;
        height: 16px;
        top: 6px;
    }
    
    .phone-pad {
        padding: 15px 10px;
    }
    
    .phone-mockup .ac-logo { font-size: 0.8rem !important; }
    .phone-mockup .ac-title { font-size: 0.75rem !important; margin-bottom: 5px !important; }
    
    .hero-split {
        flex-direction: column;
    }
    .hero-left {
        padding: 60px 20px 40px 20px;
    }
    .hero-content {
        padding: 0;
        background: transparent;
    }
    .hero-right {
        min-height: 400px;
    }
    .hero-right::before {
        background: linear-gradient(to bottom, #fcfcfc 0%, transparent 100%);
        width: 100%;
        height: 150px;
        top: -2px;
        left: 0;
    }
    
    .module-card {
        flex: 0 0 calc(100% - 5px);
    }
    .carousel-container {
        padding: 0 30px;
    }
    .prev-btn { left: -10px; }
    .next-btn { right: -10px; }
}

@media (max-width: 480px) {
    .hero-content .main-headline { font-size: 1.8rem; }
    .section-title { font-size: 1.5rem; }
    .highlight-price { font-size: 2.2rem; }
    
    .hero-left {
        padding: 40px 15px 20px 15px;
    }
    
    .mockup-wrapper {
        margin: 20px 0;
        padding-right: 0;
        gap: 20px;
        perspective: none;
    }
    
    .laptop-mockup {
        transform: rotateX(5deg);
    }
    
    .phone-mockup {
        width: 180px;
        height: 360px;
        border-width: 8px;
        transform: rotateX(10deg);
        box-shadow: 
            0 2px 0 #555,
            0 4px 0 #444,
            0 15px 25px rgba(0,0,0,0.5), 
            inset 0 0 8px rgba(0,0,0,0.8);
    }
    
    .phone-notch {
        width: 50px;
        height: 14px;
        top: 5px;
    }
    
    .phone-pad {
        padding: 10px 5px;
    }
    
    .phone-grid {
        gap: 5px;
    }
    
    .ac-card-wrapper {
        gap: 4px;
    }
    
    .phone-mockup .ac-logo { font-size: 0.7rem !important; }
    .phone-mockup .ac-title { font-size: 0.65rem !important; margin-bottom: 3px !important; }
    .phone-mockup .ac-card-title { font-size: 0.55rem !important; }
}

/* Modalities Grid */
.modalities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.modality-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.modality-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

@media (max-width: 768px) {
    .modalities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
