/* --- ROOT VARIABLES (NEW PALETTE) --- */
:root {
    /* New Palette: Marsala + Vibrant Pink + Cream */
    --primary-color: #A3333D;
    /* Deep Marsala Red - Strong, sophisticated base */
    --secondary-color: #FF4081;
    /* Vibrant Pink - Attention grabber */
    --accent-color: #C0CA33;
    /* Lime Green - Highlights/CTA */
    --accent-blue: #29B6F6;
    /* Soft Blue - Secondary highlights/info */

    --bg-color: #FDFBF7;
    /* Cream/Off-White Paper feel */
    --bg-alt: #FCE4EC;
    /* Very soft pink for alt sections */
    --text-color: #37474F;
    /* Dark Grey for text (softer than black) */
    --text-light: #78909C;

    /* Spacing & Layout */
    --container-width: 1100px;
    /* Bit tighter for focus */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;

    /* Shadows - Soft, paper-like */
    --shadow-sm: 0 2px 4px rgba(163, 51, 61, 0.1);
    --shadow-md: 0 4px 12px rgba(163, 51, 61, 0.15);
    --shadow-lg: 0 10px 25px rgba(163, 51, 61, 0.2);
}

/* --- RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    /* Body Text */
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Outfit', sans-serif;
    /* Headlines */
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
    /* Marsala for headlines */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Handwritten / Script Accents */
.script-font {
    font-family: 'Caveat', cursive;
    color: var(--secondary-color);
}

/* --- BUTTONS (CTA) --- */
.btn {
    display: inline-block;
    padding: 20px 40px;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-family: 'Outfit', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #DCE775);
    /* Lime Gradient */
    color: #37474F;
    /* Dark text on bright button for contrast */
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(192, 202, 51, 0.4);
}

/* --- SECTIONS DECORATION (Diagonal Cuts) --- */
section {
    position: relative;
    /* Diagonal cuts can be done with clip-path or pseudos. Pseudos are safer for content. */
}

/* Pattern Overlay for Texture */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#A3333D 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    opacity: 0.03;
    pointer-events: none;
    z-index: -1;
}

/* --- HERO SECTION --- */
.hero-section {
    padding: 60px 0 100px;
    background: radial-gradient(circle at top right, #fff0f3, transparent 70%),
        linear-gradient(180deg, #fff 0%, var(--bg-alt) 100%);
    position: relative;
    overflow: visible;
    /* Allow elements to pop out */
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-subhead-top {
    display: inline-block;
    background-color: var(--bg-alt);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px dashed var(--secondary-color);
    /* Stitching effect */
}

.hero-headline {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.05);
}

.hero-subheadline {
    font-size: 1.3rem;
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    margin-bottom: 30px;
    font-weight: 400;
}

/* CTA Group Styling */
/* --- HERO CTA REDESIGN --- */
.hero-cta-card {
    background: white !important;
    padding: 30px 20px 20px 20px !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    border: 2px solid #F8BBD0 !important;
    /* Pink border */
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    max-width: 400px !important;
    margin: 20px auto 0 auto !important;
    /* Center in visual column */
    width: 100% !important;
    text-align: center !important;
}

/* Custom Hero Button */
.btn-hero-custom {
    background-color: #D4E157 !important;
    /* Lime Green */
    color: #283593 !important;
    /* Dark Indigo Text */
    border-radius: 50px !important;
    padding: 15px 30px !important;
    font-weight: 900 !important;
    font-size: 1.1rem !important;
    width: 100% !important;
    text-transform: uppercase !important;
    border: none !important;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.1) !important;
    margin-bottom: 20px !important;
    line-height: 1.2 !important;
    font-family: 'Outfit', sans-serif !important;
    display: block !important;
    text-decoration: none !important;
    transition: transform 0.2s !important;
    white-space: normal !important;
    /* Force wrap */
}

.btn-hero-custom:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.1);
    background-color: #CDDC39;
    color: #283593;
}

/* Discount Badge */
.discount-badge-hero {
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-80%);
    /* Move up a bit to overlap button area */
    background-color: #FF4081;
    /* Pink */
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid white;
    box-shadow: 0 4px 10px rgba(255, 64, 129, 0.3);
    z-index: 10;
    animation: pulse-badge 2s infinite;
}

.discount-badge-hero .badge-text {
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.1;
    transform: rotate(-10deg);
}

@keyframes pulse-badge {
    0% {
        transform: translateY(-80%) scale(1);
    }

    50% {
        transform: translateY(-80%) scale(1.05);
    }

    100% {
        transform: translateY(-80%) scale(1);
    }
}

/* Price Stack */
.price-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.price-from {
    font-size: 0.9rem;
    color: #78909C;
    /* Gray Blue */
    text-decoration: none;
    /* Reset if needed */
}

.price-from .strikethrough {
    text-decoration: line-through;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 5px;
    color: #BF360C;
    /* Deep Orange/Brown */
    font-weight: 800;
}

.price-main .currency {
    font-size: 1.2rem;
}

.price-main .amount {
    font-size: 2.8rem;
    line-height: 1;
}

.price-main .payment-type {
    font-size: 1.1rem;
    color: #E91E63;
    /* Pink */
    font-weight: 600;
}

.price-installments {
    font-size: 0.9rem;
    color: #78909C;
    margin-top: -5px;
}

/* Override existing cta-group if conflicting */
.hero-cta-card.cta-group {
    background: white;
    /* reinforce */
    gap: 0;
    /* control gap manually */
}

color: white;
width: 90px;
height: 90px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
text-align: center;
transform: rotate(15deg);
box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
z-index: 10;
line-height: 1.2;
font-size: 0.9rem;
border: 3px solid white;
/* Sticker border */
}

/* Visibility Logic */
.cta-mobile {
    display: none;
    margin-top: 30px;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

.cta-desktop {
    position: relative;
}

@media (max-width: 992px) {
    .cta-desktop {
        display: none !important;
    }

    .cta-mobile {
        display: flex !important;
        flex-direction: column;
        gap: 15px;
    }

    .cta-mobile .hero-badge {
        top: 60px;
        right: 0;
        width: 70px;
        height: 70px;
        font-size: 0.8rem;
    }
}

.hero-visual {
    flex: 1;
    position: relative;
}

.hero-image-placeholder {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: rotate(2deg);
    /* Organic feel */
    border: 8px solid white;
}

/* --- SECTION 2: CONTRAST --- */
.contrast-section {
    padding: 80px 0;
    background-color: white;
    /* Diagonal top */
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 100%);
    margin-top: -50px;
    padding-top: 100px;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 6px;
    background-color: var(--accent-color);
    /* Lime underline */
    margin: 10px auto 0;
    border-radius: 3px;
}

.contrast-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contrast-card {
    padding: 40px;
    border-radius: var(--radius-md);
    background: white;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid #eee;
}

.contrast-card.negative {
    border-left: 6px solid #9E9E9E;
    background: #fafafa;
}

.contrast-card.positive {
    border-left: 6px solid var(--accent-color);
    background: #F1F8E9;
    /* Very light green hint */
    transform: scale(1.02);
    /* Slight pop */
}

.icon-header {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.result-box {
    margin-top: 20px;
    padding: 15px;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.negative-result {
    background-color: #eee;
    color: #666;
}

.positive-result {
    background-color: rgba(192, 202, 51, 0.2);
    color: #827717;
    border: 1px dashed var(--accent-color);
}

/* Contrast Images Split */
.contrast-image-wrapper {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    border: 1px solid #ddd;
}

.contrast-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}



.contrast-card:hover .contrast-img {
    transform: scale(1.1);
}

.contrast-card:hover .contrast-img {
    transform: scale(1.1);
}

.contrast-card p {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* --- SOCIAL PROOF --- */
.social-proof-section {
    padding: 80px 0;
    background-color: var(--bg-alt);
    /* Soft Pink BG */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
    margin-bottom: 60px;
}

.stat-item {
    background: white;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    /* Pink numbers */
    font-family: 'Outfit', sans-serif;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    padding-top: 100px;
    /* Space for floating image */
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    text-align: center;
    /* Center everything */
    margin-top: 90px;
    /* Space for the top part of the floating image outside */
    overflow: visible;
    /* Allow image to float out */
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testi-img-wrapper {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testi-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testi-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 15px;
    margin-top: 15px;
    font-family: 'Outfit', sans-serif;
}

.testimonial-card .stars {
    color: #FFC107;
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: block;
    /* Ensure it takes full width/centers */
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.9rem;
    display: block;
    text-align: center;
}

.quote-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 2rem;
    color: rgba(0, 0, 0, 0.05);
    /* Very subtle */
}

/* Remove old pseudo-element quote if present */
.testimonial-card::before {
    display: none;
}

/* --- MODULES --- */
.modules-section {
    padding: 120px 0 80px;
    /* Increased top padding to clear the cut */
    background: white;
    clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
    /* Fixed pixel cut instead of % to prevent cutting text */
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.module-card {
    background: white;
    border: 2px solid #eee;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.3s;
}

.module-card:hover {
    transform: translateY(-5px);
}

.module-header {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    position: relative;
}

.module-header h3 {
    color: white;
    /* Override global h3 primary color */
}

.card-blue .module-header {
    background: var(--secondary-color);
}

/* Pink */
.card-rose .module-header {
    background: var(--accent-blue);
}

/* Blue */
.card-orange .module-header {
    background: var(--accent-color);
}

/* Lime */

.module-number {
    font-size: 4rem;
    opacity: 0.7;
    position: absolute;
    top: 0;
    right: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.module-list {
    padding: 20px;
}

.module-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.module-list li i {
    color: var(--accent-color);
    margin-top: 5px;
}

.card-blue .module-list li i {
    color: var(--secondary-color);
}

.card-rose .module-list li i {
    color: var(--accent-blue);
}

/* --- OFFER BREAKDOWN --- */
.offer-breakdown-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF8E1, #FFF3E0);
    /* Soft warm bg */
}

.offer-box {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border: 2px dashed var(--primary-color);
    /* Ticket/Coupon look */
}

.offer-mockup-wrapper {
    margin: -20px -20px 30px -20px;
    /* Slight scale out to hug borders if wanted, or just normal margin */
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.offer-img {
    width: 100%;
    height: auto;
    display: block;
}

.offer-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.item-value {
    font-weight: 700;
    color: var(--text-light);
}

.check-icon {
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 10px;
}

.bonus-section {
    background: var(--bg-alt);
    padding: 20px;
    border-radius: var(--radius-md);
    margin: 30px 0;
    border: 1px solid var(--secondary-color);
}

.bonus-section h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.total-value-box {
    text-align: center;
    margin-top: 30px;
}

.total-label {
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 10px;
}

.strikethrough {
    text-decoration: line-through;
    color: #999;
}

.final-offer {
    background: var(--primary-color);
    color: white;
    padding: 30px;
    border-radius: var(--radius-md);
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.final-offer::after {
    content: "";
    /* Shinny effect */
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.big-price {
    font-size: 4rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    margin: 10px 0;
}

.small-text {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
}

.discount-badge {
    background: var(--accent-color);
    color: #333;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* --- AUTHOR BIO --- */
.auth-section {
    padding: 80px 0;
    background: white;
}

.auth-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.auth-image {
    flex: 1;
}

.image-wrapper {
    border-radius: 50%;
    /* Circle profile */
    overflow: hidden;
    border: 8px solid var(--bg-alt);
    box-shadow: var(--shadow-md);
    max-width: 400px;
    margin: 0 auto;
}

.auth-content {
    flex: 1;
}

.auth-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.auth-list {
    margin: 20px 0;
}

.auth-list li {
    margin-bottom: 15px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
}

.auth-list li i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.highlight-text {
    background: var(--bg-alt);
    color: var(--primary-color);
    font-weight: 700;
    padding: 2px 5px;
}

/* --- GUARANTEE --- */
.guarantee-section {
    background: var(--primary-color);
    color: white;
    padding: 60px 0;
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.guarantee-img-badge {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.guarantee-content h2 {
    color: white;
    margin-bottom: 25px;
}

.guarantee-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* --- FAQ & FOOTER --- */
.faq-section {
    padding: 80px 0;
    background: var(--bg-color);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    gap: 15px;
    display: flex;
    flex-direction: column;
}

.faq-item {
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    background: white;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: none;
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    background: #fafafa;
}

.faq-answer.active {
    max-height: 300px;
    padding-bottom: 20px;
}

.final-cta-section {
    padding: 80px 0;
    text-align: center;
    background: var(--bg-alt);
}

.alert-title {
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.final-subtitle {
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 500;
}

.motivational-text {
    margin-bottom: 30px;
    line-height: 1.6;
}

footer {
    background: #333;
    color: white;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* --- ANIMATIONS (PRESERVED) --- */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(192, 202, 51, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(192, 202, 51, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(192, 202, 51, 0);
    }
}

.reveal {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-up {
    transform: translateY(50px);
}

.fade-left {
    transform: translateX(-50px);
}

.fade-right {
    transform: translateX(50px);
}

.zoom-in {
    transform: scale(0.9);
}

.reveal.active.fade-up {
    transform: translateY(0);
}

.reveal.active.fade-left {
    transform: translateX(0);
}

.reveal.active.fade-right {
    transform: translateX(0);
}

.reveal.active.zoom-in {
    transform: scale(1);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* --- SECONDARY CTA --- */
.cta-sec-section {
    padding: 80px 0;
    background-color: var(--bg-alt);
    text-align: center;
}

.cta-sec-section .cta-group {
    flex-direction: column;
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
    margin-top: 0;
    gap: 10px;
}

.cta-sec-section h2 {
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 2.2rem;
    color: var(--primary-color);
}

.cta-sec-section .btn {
    padding: 20px 50px;
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: inline-block;
}

.guarantee-text {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #555;
    font-weight: 500;
}

.guarantee-text i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        width: 100%;
        order: 2;
        transform: none;
    }

    .hero-image-placeholder {
        margin: 0 auto;
        transform: none;
    }

    .cta-group {
        justify-content: center;
    }

    .contrast-grid,
    .testimonials-grid,
    .modules-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .auth-container {
        flex-direction: column;
        text-align: center;
    }

    .auth-image {
        order: -1;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2.2rem;
    }

    .btn {
        width: 100%;
        padding: 15px;
        font-size: 1rem;
    }

    .big-price {
        font-size: 3rem;
    }
}