/* ============================================================
   CSS Variables
   ============================================================ */
:root {
    --purple: #7B2FFF;
    --purple-dark: #6B1FEF;
    --purple-light: #f3e8ff;
    --purple-pale: #faf7ff;
    --blue-accent: #4F46E5;
    --dark-bg: #0a0f1e;
    --dark-card: #141b2d;
    --dark-card-hover: #1a2440;
    --text-primary: #111827;
    --text-secondary: #4B5563;
    --text-light: #9CA3AF;
    --red-icon: #EF4444;
    --red-bg: #2a1010;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gradient-cta: linear-gradient(135deg, #7B2FFF 0%, #4F46E5 100%);
    --gradient-text: linear-gradient(135deg, #7B2FFF 0%, #4F46E5 60%, #06b6d4 100%);
    --max-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow-md: 0 4px 20px rgba(0,0,0,.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
    --shadow-purple: 0 8px 32px rgba(123,47,255,.25);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

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

ul {
    list-style: none;
}

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

.centered {
    text-align: center;
}

/* ============================================================
   Typography
   ============================================================ */
.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    line-height: 1.15;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-title.white {
    color: var(--white);
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 52px;
    line-height: 1.7;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.highlight {
    color: var(--purple);
}

.purple {
    color: var(--purple);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-family: inherit;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    border: none;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn-gradient {
    background: var(--gradient-cta);
    color: var(--white);
    box-shadow: var(--shadow-purple);
}

.btn-gradient:hover {
    box-shadow: 0 12px 40px rgba(123,47,255,.35);
    opacity: 0.95;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.btn-full {
    width: 100%;
    padding: 18px 32px;
    font-size: 17px;
    font-weight: 700;
    border-radius: var(--radius-full);
}

/* ============================================================
   Navbar
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 1px 20px rgba(0,0,0,.08);
    border-bottom-color: var(--gray-200);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.navbar-cta {
    padding: 10px 22px;
    font-size: 14px;
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
    padding-top: 70px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 55%, #f0e8ff 100%);
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 48px;
    padding-bottom: 72px;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    background: var(--purple-light);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--purple);
    margin-bottom: 28px;
    border: 1px solid rgba(123,47,255,.15);
}

/* Hero Title */
.hero-title {
    font-size: clamp(42px, 5.5vw, 68px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-guarantee {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-secondary);
}

.check-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--purple);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
}

.hero-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 6/5;
    background: linear-gradient(135deg, var(--purple-light) 0%, #e0d4ff 100%);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.hero-img-fallback-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #c9b8ff 0%, #a78bfa 50%, #7c3aed 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: -1;
}

/* Floating Card */
.hero-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: white;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: 0 8px 40px rgba(0,0,0,.16);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
    animation: floatCard 3s ease-in-out infinite;
}

.hero-card-icon {
    width: 40px;
    height: 40px;
    background: var(--purple-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-card-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-card-info strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
}

.hero-card-info span {
    font-size: 11px;
    color: var(--text-secondary);
}

.hero-card-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    margin-left: auto;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

/* ============================================================
   Pain Section
   ============================================================ */
.pain-section {
    background: #0d1117;
    padding: 96px 0;
}

.pain-section .section-title {
    max-width: 720px;
    margin: 0 auto 52px;
}

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

.pain-card {
    background: var(--dark-card);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.pain-card:hover {
    background: var(--dark-card-hover);
    transform: translateY(-4px);
}

.pain-icon-wrap {
    width: 48px;
    height: 48px;
    background: var(--red-bg);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pain-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.pain-card p {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.7;
}

/* ============================================================
   Product Section
   ============================================================ */
.product-section {
    padding: 96px 0;
    background: var(--white);
}

.product-section .section-title {
    max-width: 700px;
    margin: 0 auto 16px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 56px;
}

.product-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 14/11;
    background: linear-gradient(135deg, var(--purple-light) 0%, #ddd4ff 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-img-fallback-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #c4b5fd 0%, #a78bfa 60%, #7c3aed 100%);
    pointer-events: none;
    z-index: -1;
}

.product-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(10,10,25,0.88) 0%, transparent 100%);
    padding: 32px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.caption-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--purple-light);
    letter-spacing: -0.01em;
}

.caption-sub {
    font-size: 13px;
    color: rgba(255,255,255,.8);
}

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

.feature-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.feature-icon {
    width: 46px;
    height: 46px;
    background: var(--purple-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.feature-text p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ============================================================
   How It Works Section
   ============================================================ */
.how-section {
    padding: 96px 0;
    background: linear-gradient(135deg, var(--purple-pale) 0%, var(--purple-light) 100%);
}

.step-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 28px 32px;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,.12);
}

.step-number {
    width: 44px;
    height: 44px;
    background: var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.step-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================================
   Pricing Section
   ============================================================ */
.pricing-section {
    padding: 96px 0;
    background: linear-gradient(135deg, #0a0f1e 0%, #1a0a2e 100%);
}

.pricing-sub {
    color: rgba(255,255,255,.65) !important;
}

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

.pricing-card {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 24px 80px rgba(0,0,0,.3);
}

.pricing-card--popular {
    border: 2px solid var(--purple);
    transform: scale(1.04);
    box-shadow: 0 32px 100px rgba(123,47,255,.28);
    z-index: 1;
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--purple);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.pricing-badge--gold {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.pricing-badge--neutral {
    background: #6B7280;
}

.pricing-plan-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.pricing-plan-sub {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.pricing-price {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 12px;
}

.price-currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.price-value {
    font-size: 64px;
    font-weight: 900;
    color: var(--purple);
    line-height: 1;
    letter-spacing: -0.04em;
}

.check-icon--gold {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 15px;
    border: 2px solid var(--purple);
    color: var(--purple);
    background: transparent;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    width: 100%;
    text-align: center;
}

.btn-outline:hover {
    background: var(--purple);
    color: var(--white);
}

.price-period {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.pricing-trial-link {
    display: block;
    font-size: 14px;
    color: var(--purple);
    margin-bottom: 28px;
    font-weight: 500;
    transition: opacity 0.2s;
}

.pricing-trial-link:hover {
    opacity: 0.75;
    text-decoration: underline;
}

.pricing-features {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 500;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--purple);
    border-radius: 50%;
    flex-shrink: 0;
}

.pricing-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-light);
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.4;
}

.pricing-guarantee .check-circle {
    width: 18px;
    height: 18px;
}

/* Pricing compare table — desktop only */
.pricing-compare {
    display: none;
}

@media (min-width: 1024px) {
    .pricing-compare {
        display: block;
        margin-top: 64px;
        background: var(--white);
        border-radius: 20px;
        padding: 40px 48px;
        box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
    }

    .pricing-compare-title {
        text-align: center;
        font-size: 24px;
        font-weight: 800;
        color: var(--text-primary);
        letter-spacing: -0.02em;
        margin-bottom: 28px;
    }

    .pricing-compare-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 15px;
    }

    .pricing-compare-table thead th {
        background: #f9fafb;
        color: var(--text-primary);
        font-weight: 700;
        font-size: 16px;
        padding: 16px 12px;
        text-align: center;
        border-bottom: 2px solid #e5e7eb;
    }

    .pricing-compare-table thead th:first-child {
        text-align: left;
        background: transparent;
        border-bottom: 2px solid #e5e7eb;
    }

    .pricing-compare-table .pricing-compare-popular {
        background: linear-gradient(135deg, rgba(123, 47, 255, 0.1), rgba(107, 70, 254, 0.1));
        color: var(--purple);
        position: relative;
    }

    .pricing-compare-table .pricing-compare-popular::before {
        content: "MAIS POPULAR";
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--purple);
        color: var(--white);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.08em;
        padding: 4px 12px;
        border-radius: var(--radius-full);
        white-space: nowrap;
    }

    .pricing-compare-price {
        display: block;
        font-size: 13px;
        font-weight: 500;
        color: var(--text-secondary);
        margin-top: 4px;
    }

    .pricing-compare-table tbody td {
        padding: 14px 12px;
        text-align: center;
        border-bottom: 1px solid #f3f4f6;
        color: var(--text-primary);
    }

    .pricing-compare-table tbody td:first-child {
        text-align: left;
        font-weight: 500;
        color: var(--text-secondary);
    }

    .pricing-compare-table tbody tr:last-child td {
        border-bottom: none;
    }

    .pricing-compare-table .ok {
        color: var(--purple);
        font-weight: 800;
        font-size: 18px;
    }

    .pricing-compare-table .no {
        color: #d1d5db;
        font-weight: 600;
    }

    .pricing-compare-feature {
        width: 40%;
    }
}

/* ============================================================
   FAQ Section
   ============================================================ */
.faq-section {
    padding: 96px 0;
    background: var(--white);
}

.faq-container {
    max-width: 720px;
}

.faq-section .section-title {
    margin-bottom: 48px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-item.open {
    border-color: var(--purple);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: color 0.2s ease;
}

.faq-item.open .faq-question {
    color: var(--purple);
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-secondary);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--purple);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer.open {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.75;
    border-top: 1px solid var(--gray-100);
    padding-top: 16px;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
    background: var(--dark-bg);
    padding: 48px 0;
}

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

.footer-tagline {
    font-size: 13px;
    color: #6b7280;
    margin-top: 8px;
    margin-left: 46px;
}

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

.footer-copy p {
    font-size: 13px;
    color: #6b7280;
}

.footer-links {
    display: flex;
    gap: 24px;
    justify-content: flex-end;
}

.footer-links a {
    font-size: 14px;
    color: var(--white);
    font-weight: 500;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 0.7;
}

/* ============================================================
   Animations
   ============================================================ */
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   Sticky mobile CTA
   ============================================================ */
.cta-sticky-mobile {
    display: none;
}

@media (max-width: 900px) {
    .cta-sticky-mobile {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.12);
        z-index: 99;
        transform: translateY(110%);
        transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        pointer-events: none;
    }

    .cta-sticky-mobile.visible {
        transform: translateY(0);
        pointer-events: auto;
    }

    .cta-sticky-mobile .btn {
        width: 100%;
        font-size: 16px;
        padding: 14px 20px;
    }

    body.has-sticky-cta {
        padding-bottom: 84px;
    }
}

/* ============================================================
   Responsive — 768px
   ============================================================ */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .hero-image-wrapper {
        order: -1;
    }

    .hero-image {
        max-height: 380px;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .pricing-card--popular {
        transform: scale(1);
    }

    .pricing-card {
        padding: 36px 28px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 16px;
    }

    .footer-tagline {
        margin-left: 0;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-brand .logo {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .navbar-inner {
        padding: 0 16px;
    }

    .section-title {
        font-size: clamp(24px, 6vw, 36px);
    }

    .hero-title {
        font-size: clamp(36px, 8vw, 52px);
    }

    .btn-lg {
        padding: 16px 28px;
        font-size: 16px;
    }

    .pricing-badge {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }

    .price-value {
        font-size: 64px;
    }

    .faq-question {
        font-size: 14px;
        padding: 16px 18px;
    }

    .faq-answer p {
        padding: 0 18px 16px;
        padding-top: 12px;
    }
}

/* ============================================================
   Trust Bar
   ============================================================ */
.trust-bar {
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 36px 0;
}

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

.trust-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
    text-align: center;
}

.trust-metric-value {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 900;
    color: var(--purple);
    letter-spacing: -0.03em;
    line-height: 1;
}

.trust-metric-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    max-width: 120px;
    line-height: 1.4;
}

.trust-divider {
    width: 1px;
    height: 48px;
    background: var(--gray-200);
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .trust-bar-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
    .trust-divider {
        display: none;
    }
}

/* ============================================================
   Testimonials Section
   ============================================================ */
.testimonials-section {
    padding: 96px 0;
    background: var(--gray-50);
}

.testimonials-section .section-title {
    max-width: 640px;
    margin: 0 auto 16px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,.1);
}

.testimonial-stars {
    color: #FBBF24;
    font-size: 16px;
    letter-spacing: 2px;
}

.testimonial-quote {
    font-size: 15px;
    color: var(--text-primary);
    line-height: 1.7;
    flex: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
    letter-spacing: 0.02em;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-info strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.testimonial-info span {
    font-size: 12px;
    color: var(--text-secondary);
}

/* ============================================================
   For Who Section
   ============================================================ */
.forwho-section {
    padding: 96px 0;
    background: var(--white);
}

.forwho-section .section-title {
    max-width: 680px;
    margin: 0 auto 16px;
}

.forwho-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.forwho-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 28px 20px;
    background: var(--purple-pale);
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    text-align: center;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
    cursor: default;
}

.forwho-item:hover {
    border-color: rgba(123, 47, 255, 0.25);
    background: var(--purple-light);
    transform: translateY(-3px);
}

.forwho-icon {
    font-size: 32px;
    line-height: 1;
}

.forwho-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

.forwho-footer-note {
    text-align: center;
    margin-top: 36px;
    font-size: 15px;
    color: var(--text-secondary);
}

.forwho-footer-note strong {
    color: var(--purple);
}

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

@media (max-width: 480px) {
    .forwho-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .forwho-item {
        padding: 20px 12px;
    }
    .forwho-icon {
        font-size: 26px;
    }
}
