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

:root {
    --primary: #0ea5e9;
    --secondary: #22c55e;
    --accent: #06b6d4;
    --dark: #0f172a;
    --darker: #020617;
    --card-bg: #1e293b;
    --white: #ffffff;
    --text-light: #cbd5e1;
    --success: #22c55e;
    --whatsapp: #25D366;
    --telegram: #0088cc;
    --gradient-primary: linear-gradient(135deg, #0ea5e9 0%, #22c55e 100%);
    --gradient-accent: linear-gradient(135deg, #06b6d4 0%, #10b981 100%);
    --shadow-neon: 0 0 25px rgba(14, 165, 233, 0.4);
    --shadow-neon-hover: 0 0 40px rgba(14, 165, 233, 0.6);
    --radius: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    overflow-x: hidden;
    background: var(--darker);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.98) 0%, rgba(5, 150, 105, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(34, 197, 94, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.anchor-icon {
    font-size: 2.2rem;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    transition: all 0.3s;
    font-size: 0.95rem;
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    box-shadow: 0 0 10px var(--white);
    transition: width 0.3s;
}

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

.nav a:hover::after {
    width: 100%;
}

.header-contacts {
    display: flex;
    gap: 0.8rem;
}

.header-contact-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: var(--shadow-neon);
}

.header-contact-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-neon-hover);
}

.header-contact-btn.whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}

.header-contact-btn.telegram {
    background: var(--telegram);
    color: var(--white);
}

.header-contact-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero {
    position: relative;
    background: var(--dark);
    color: var(--white);
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 217, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 0, 128, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(0,217,255,0.05)"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    padding-right: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 217, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid var(--primary);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

.highlight {
    color: var(--primary);
    text-shadow: 0 0 40px rgba(0, 217, 255, 0.8);
}

.hero-tagline {
    font-size: 2rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 2rem;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.hero-benefits {
    list-style: none;
    margin-bottom: 2.5rem;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(0, 217, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.check-icon {
    width: 28px;
    height: 28px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.check-icon svg {
    color: var(--dark);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1rem;
}

.whatsapp-cta {
    background: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    border: 1px solid transparent;
}

.telegram-cta {
    background: var(--telegram);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
    border: 1px solid transparent;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.5);
    border-color: var(--primary);
}

/* Hero Card Form */
.hero-right {
    position: relative;
}

.hero-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-neon);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0, 217, 255, 0.3);
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.card-header h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
}

.card-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.phone-field {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.country-code {
    position: absolute;
    left: 1.2rem;
    font-weight: 600;
    color: var(--white);
    z-index: 1;
}

.phone-field input {
    padding-left: 4rem !important;
}

.form-field input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid rgba(0, 217, 255, 0.2);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
    color: var(--white);
    background: rgba(0, 217, 255, 0.05);
}

.form-field input::placeholder {
    color: var(--text-light);
}

.form-field input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
    background: rgba(0, 217, 255, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    border: none;
    padding: 1.2rem;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    box-shadow: var(--shadow-neon);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-neon-hover);
}

.form-success-inline {
    text-align: center;
    padding: 2rem;
    background: #ecfdf5;
    border-radius: var(--radius);
}

.success-check {
    width: 60px;
    height: 60px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.form-success-inline p {
    color: var(--text-dark);
    font-weight: 500;
}

/* Hero Stats */
.hero-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Tests Section */
.tests-section {
    padding: 80px 0;
    background: var(--dark);
    position: relative;
}

.tests-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 0, 128, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.tests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.test-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid rgba(0, 217, 255, 0.2);
}

.test-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-neon-hover);
    border-color: var(--primary);
    background: rgba(0, 217, 255, 0.05);
}

.test-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
}

.test-icon svg {
    color: var(--dark);
}

.test-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.test-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--darker);
}

.section-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 0 30px rgba(0, 217, 255, 0.4);
}

.about-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    gap: 1.5rem;
}

.highlight-box {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: var(--radius);
    transition: all 0.3s;
    border: 2px solid rgba(0, 217, 255, 0.2);
}

.highlight-box:hover {
    transform: translateX(10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-neon);
}

.highlight-icon {
    flex-shrink: 0;
}

.highlight-icon svg {
    color: var(--primary);
}

.highlight-content h4 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.highlight-content p {
    color: var(--text-light);
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: var(--dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 4rem;
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.step-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all 0.3s;
    text-align: center;
    border: 2px solid rgba(0, 217, 255, 0.2);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-neon-hover);
    border-color: var(--primary);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
}

.step-content h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.step-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.step-icon {
    margin-top: 1rem;
}

.step-icon svg {
    color: var(--primary);
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary);
    font-weight: bold;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--darker);
}

.testimonials-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-image-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
    cursor: pointer;
    border: 3px solid rgba(0, 217, 255, 0.3);
}

.testimonial-image-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-neon-hover);
    border-color: var(--primary);
}

.review-screenshot {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--dark);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(0, 217, 255, 0.2) 0%, transparent 70%),
        radial-gradient(circle at 0% 100%, rgba(0, 255, 136, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 0 40px rgba(0, 217, 255, 0.6);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.cta-buttons-large {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
    color: var(--white);
    border: 2px solid transparent;
}

.cta-btn-large.whatsapp {
    background: var(--whatsapp);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.cta-btn-large.telegram {
    background: var(--telegram);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
}

.cta-btn-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 217, 255, 0.6);
    border-color: var(--primary);
}

/* Footer */
.footer {
    background: var(--darker);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(0, 217, 255, 0.2);
}

/* Thank You Page Styles */
.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.success-animation {
    margin-bottom: 2rem;
}

.success-circle {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.3);
    animation: successPulse 2s ease-in-out infinite;
}

.success-circle svg {
    color: white;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(37, 99, 235, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(37, 99, 235, 0.5);
    }
}

.thank-you-content h1 {
    font-size: 3.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.thank-you-content h2 {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 400;
}

.thank-you-message {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.next-steps {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
    text-align: left;
}

.next-steps h3 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 2rem;
    text-align: center;
}

.steps-list {
    display: grid;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--light);
    border-radius: var(--radius);
    transition: all 0.3s;
}

.step-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.step-icon-small {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon-small svg {
    color: white;
}

.step-text h4 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.step-text p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-urgently {
    margin-bottom: 3rem;
}

.contact-urgently h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.urgent-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.urgent-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.urgent-btn.whatsapp {
    background: var(--whatsapp);
}

.urgent-btn.telegram {
    background: var(--telegram);
}

.urgent-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.back-home-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--light);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.3s;
}

.back-home-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Responsive for Thank You Page */
@media (max-width: 768px) {
    .thank-you-content h1 {
        font-size: 2.5rem;
    }
    
    .thank-you-content h2 {
        font-size: 1.3rem;
    }
    
    .success-circle {
        width: 120px;
        height: 120px;
    }
    
    .success-circle svg {
        width: 60px;
        height: 60px;
    }
    
    .next-steps {
        padding: 2rem 1.5rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .urgent-buttons {
        flex-direction: column;
    }
    
    .urgent-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Footer */
.footer {
    background: var(--darker);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent);
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-left {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-badge,
    .hero-benefits li {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .step-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .header-right {
        gap: 1rem;
    }
    
    .hero-left h1 {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 60px 0 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-gallery {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons-large {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 1.8rem;
    }
    
    .hero-tagline {
        font-size: 1.3rem;
    }
    
    .hero-benefits li {
        font-size: 1rem;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-card {
        padding: 1.5rem;
    }
}
