/* ===========================
   RESET E VARIÁVEIS GLOBAIS
   =========================== */

:root {
    /* Paleta SONINHO — Noturna, Serena, Premium */
    --primary:       #2d3a8c;   /* Azul índigo profundo */
    --primary-dark:  #1a2460;   /* Azul escuro hover */
    --primary-light: #eef0fb;   /* Azul muito claro (fundos) */
    --accent:        #7c5cbf;   /* Roxo/lavanda */
    --accent-light:  #f3eeff;   /* Roxo claro */
    --gold:          #f5c842;   /* Dourado/estrelas */
    --white:         #ffffff;
    --off-white:     #f9f9fc;
    --gray-dark:     #1e1e2e;
    --gray-medium:   #555570;
    --gray-light:    #e8e8f0;
    --border:        #d8d8ea;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --shadow-sm: 0 2px 8px rgba(45, 58, 140, 0.08);
    --shadow-md: 0 6px 24px rgba(45, 58, 140, 0.12);
    --shadow-lg: 0 12px 40px rgba(45, 58, 140, 0.18);

    --transition: all 0.25s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    color: var(--gray-dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===========================
   CONTAINER
   =========================== */

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===========================
   BANNER SUPERIOR
   =========================== */

.top-banner {
    background: linear-gradient(90deg, #1a2460 0%, #2d3a8c 50%, #7c5cbf 100%);
    color: #fff;
    text-align: center;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.top-banner strong { color: var(--gold); }

/* ===========================
   HEADER
   =========================== */

.header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 200;
    transition: box-shadow 0.3s;
}

.header.scrolled { box-shadow: var(--shadow-md); }

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

.logo {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-shrink: 0;
}

.logo-moon { font-size: 22px; }

.logo-text {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
}

.logo-brand {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.header-nav {
    display: flex;
    gap: 28px;
}

.header-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-medium);
    transition: var(--transition);
}

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

.cta-link {
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition);
}

.cta-link:hover { background: var(--primary-dark); }

/* ===========================
   HERO SECTION
   =========================== */

.hero {
    padding: 64px 0;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--primary-light) 100%);
}

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

.hero-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    font-size: 13px;
}

.badge-icon { font-size: 22px; }

.hero-badge strong {
    display: block;
    font-size: 13px;
    color: var(--primary);
}

.hero-badge small { color: var(--gray-medium); }

.promo-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--gray-dark);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 44px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-text > p {
    font-size: 17px;
    color: var(--gray-medium);
    line-height: 1.75;
    margin-bottom: 28px;
}

.ratings {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

.stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }
.rating-text { font-size: 14px; color: var(--gray-medium); }

.hero-trust {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.trust-item {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
}

/* ===========================
   BOTÕES CTA
   =========================== */

.cta-button {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    max-width: 360px;
    letter-spacing: 0.01em;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-button.secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.cta-button.secondary:hover {
    background: var(--primary-light);
}

/* ===========================
   SEÇÕES DE BENEFÍCIOS
   =========================== */

.benefit-section {
    padding: 80px 0;
    background: var(--white);
}

.benefit-section-alt {
    background: var(--primary-light);
}

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

.benefit-content-reverse { direction: rtl; }
.benefit-content-reverse > * { direction: ltr; }

.benefit-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 4px;
}

.benefit-number {
    font-size: 80px;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.08;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -4px;
}

.benefit-text h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.benefit-text p {
    font-size: 16px;
    color: var(--gray-medium);
    line-height: 1.8;
    margin-bottom: 16px;
}

.benefit-images img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* ===========================
   SEÇÃO LOVED BY CUSTOMERS
   =========================== */

.loved-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2460 0%, #2d3a8c 60%, #7c5cbf 100%);
    color: var(--white);
}

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

.loved-text .benefit-label { color: var(--gold); }
.loved-text .benefit-number { color: var(--white); opacity: 0.1; }

.loved-text h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.loved-text > p {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 32px;
}

.loved-stats {
    display: flex;
    gap: 32px;
}

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

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--gold);
}

.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
}

.loved-images img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* ===========================
   SEÇÃO DE TESTES
   =========================== */

.testing-section {
    padding: 80px 0;
    background: var(--off-white);
}

.testing-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--gray-dark);
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 40px;
}

.testing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.testing-visual img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/3;
    object-fit: cover;
    margin-bottom: 24px;
}

.testing-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: var(--gray-medium);
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testing-info h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.testing-info > p {
    font-size: 16px;
    color: var(--gray-medium);
    line-height: 1.8;
    margin-bottom: 28px;
}

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

.cert-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--white);
    padding: 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.cert-icon { font-size: 24px; flex-shrink: 0; }

.cert-item strong {
    display: block;
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 2px;
}

.cert-item p {
    font-size: 13px;
    color: var(--gray-medium);
    margin: 0;
}

/* ===========================
   SEÇÃO DE COMPRA
   =========================== */

.purchase-section {
    padding: 80px 0;
    background: var(--primary-light);
}

.purchase-section h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    text-align: center;
    margin-bottom: 12px;
}

.purchase-section > .container > p {
    text-align: center;
    color: var(--gray-medium);
    font-size: 17px;
    margin-bottom: 48px;
}

.purchase-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}

.purchase-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 3/4;
    object-fit: cover;
    margin-bottom: 20px;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pf-item {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
}

.purchase-ratings { margin-bottom: 24px; }

.option-group { margin-bottom: 24px; }

.option-group > label {
    display: block;
    font-weight: 700;
    color: var(--gray-dark);
    font-size: 15px;
    margin-bottom: 12px;
}

.quantity-selector {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quantity-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-size: 15px;
    font-weight: 500;
}

.quantity-option:hover { border-color: var(--primary); }

.quantity-option input[type="radio"] { accent-color: var(--primary); cursor: pointer; }

.discount-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    margin-left: 8px;
}

.discount-badge.best {
    background: var(--gold);
    color: var(--gray-dark);
}

.pricing-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.pricing-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 2px solid var(--border);
    transition: var(--transition);
}

.pricing-card.popular {
    border-color: var(--primary);
    border-width: 3px;
    box-shadow: var(--shadow-md);
}

.popular-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.03em;
}

.pricing-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 4px;
}

.frequency {
    font-size: 13px;
    color: var(--gray-medium);
    margin-bottom: 16px;
}

.price-display {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.price-now {
    font-size: 30px;
    font-weight: 800;
    color: var(--primary);
}

.price-original {
    font-size: 16px;
    color: var(--gray-medium);
    text-decoration: line-through;
}

.price-per-day {
    font-size: 13px;
    color: var(--gray-medium);
}

.benefits-list {
    margin-bottom: 20px;
}

.benefits-list li {
    padding: 4px 0;
    font-size: 13px;
    color: var(--gray-medium);
}

.benefits-list li::before {
    content: "✓ ";
    color: var(--primary);
    font-weight: 700;
}

.note {
    font-size: 13px;
    color: var(--gray-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

.trust-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.badge {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
    text-align: center;
}

/* ===========================
   SEÇÃO DE ACORDEÕES
   =========================== */

.accordion-section {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary);
    text-align: center;
    margin-bottom: 48px;
}

.accordion {
    max-width: 760px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 18px 24px;
    background: var(--primary-light);
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font);
}

.accordion-header:hover { background: #dde2f8; }

.accordion-header::after {
    content: "+";
    font-size: 22px;
    font-weight: 300;
    color: var(--accent);
}

.accordion-item.active .accordion-header::after { content: "−"; }

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.accordion-item.active .accordion-content { max-height: 1200px; }

.accordion-body {
    padding: 20px 24px;
    background: var(--white);
    color: var(--gray-medium);
    font-size: 15px;
    line-height: 1.8;
}

.accordion-body h4 {
    color: var(--primary);
    font-size: 15px;
    font-weight: 700;
    margin: 16px 0 8px;
}

.accordion-body h4:first-child { margin-top: 0; }

.accordion-body p { margin-bottom: 10px; }

/* ===========================
   SEÇÃO DE FEATURES
   =========================== */

.features-section {
    padding: 80px 0;
    background: var(--primary-light);
}

.features-section h2 {
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 48px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.feature-item {
    text-align: center;
    padding: 24px 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon { font-size: 40px; margin-bottom: 12px; }

.feature-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 12px;
    color: var(--gray-medium);
}

/* ===========================
   SEÇÃO DE DEPOIMENTOS
   =========================== */

.testimonials-section {
    padding: 80px 0;
    background: var(--white);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 48px;
}

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

.testimonial-card {
    background: var(--primary-light);
    padding: 28px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.testimonial-quote {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.testimonial-card > p {
    font-size: 14px;
    color: var(--gray-medium);
    line-height: 1.75;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 14px;
    color: var(--gray-dark);
}

.testimonial-author small { color: var(--gray-medium); font-weight: 400; }

/* ===========================
   SEÇÃO DE NEWSLETTER
   =========================== */

.newsletter-section {
    padding: 72px 0;
    background: linear-gradient(135deg, #1a2460 0%, #2d3a8c 60%, #7c5cbf 100%);
}

.newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.newsletter-text h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.newsletter-text p {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}

.form-row {
    display: flex;
    gap: 10px;
}

.form-input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-sm);
    font-size: 15px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-family: var(--font);
    transition: var(--transition);
}

.form-input::placeholder { color: rgba(255,255,255,0.5); }

.form-input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,0.15);
}

.form-button {
    background: var(--gold);
    color: var(--gray-dark);
    border: none;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.form-button:hover { background: #e6b800; transform: scale(1.05); }

.form-note {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-top: 12px;
    line-height: 1.6;
}

.form-note a { color: rgba(255,255,255,0.7); text-decoration: underline; }

.form-link {
    display: inline-block;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    margin-top: 12px;
    text-decoration: underline;
    cursor: pointer;
    transition: var(--transition);
}

.form-link:hover { color: var(--white); }

/* ===========================
   FOOTER
   =========================== */

.footer {
    background: var(--gray-dark);
    color: var(--white);
    padding: 64px 0 32px;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 40px;
}

.footer-logo .logo-text { color: var(--white); }
.footer-logo .logo-brand { color: rgba(255,255,255,0.5); }

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 32px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 32px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column li { margin-bottom: 10px; }

.footer-column a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

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

.social-links { display: flex; gap: 16px; }

.footer-bottom { text-align: center; }

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

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

.footer-copyright {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
}

.footer-disclaimer {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===========================
   STICKY CTA (MOBILE)
   =========================== */

.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 12px 20px;
    z-index: 300;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.sticky-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.sticky-cta-text {
    font-size: 14px;
    color: var(--gray-dark);
}

.sticky-btn {
    padding: 12px 24px;
    font-size: 14px;
    max-width: none;
    width: auto;
}

/* ===========================
   RESPONSIVIDADE
   =========================== */

@media (max-width: 900px) {
    .hero-content,
    .benefit-content,
    .loved-content,
    .testing-content,
    .purchase-wrapper,
    .newsletter-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefit-content-reverse { direction: ltr; }

    .hero-text h1 { font-size: 34px; }
    .benefit-text h2 { font-size: 28px; }
    .loved-text h2 { font-size: 28px; }

    .header-nav { display: none; }

    .pricing-options { grid-template-columns: 1fr; }
    .certifications { grid-template-columns: 1fr; }

    .sticky-cta { display: block; }
    body { padding-bottom: 80px; }
}

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

    .hero { padding: 40px 0; }
    .benefit-section { padding: 56px 0; }

    .hero-text h1 { font-size: 28px; }
    .benefit-text h2 { font-size: 24px; }

    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .testimonials-carousel { grid-template-columns: 1fr; }

    .trust-badges { grid-template-columns: 1fr; }

    .loved-stats { gap: 20px; }
    .stat-number { font-size: 22px; }

    .footer-links { gap: 12px; }
    .footer-content { grid-template-columns: 1fr 1fr; }

    .cta-button { max-width: 100%; }
}

@media (max-width: 400px) {
    .hero-text h1 { font-size: 24px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .logo-text { font-size: 22px; }
}
