:root {
    /* Colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F7F7F7;
    --text-primary: #1A1A1A;
    --text-secondary: #6B6B6B;
    
    --accent-green: #16A34A;
    --accent-green-hover: #15803d;
    --accent-blue: #2563EB;
    --accent-red: #ef4444;
    
    --border-color: #E5E7EB;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 10px 25px -5px rgba(22, 163, 74, 0.4);

    /* Fonts */
    --font-main: 'Inter', sans-serif;
    
    /* Radius */
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Typography Utility */
h1, h2, h3, h4 {
    color: var(--text-primary);
    line-height: 1.2;
    font-weight: 700;
}

p {
    color: var(--text-secondary);
}

.highlight-green {
    color: var(--accent-green);
}
.highlight-red {
    color: var(--accent-red);
}
.text-center {
    text-align: center;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
}
.bg-secondary {
    background-color: var(--bg-secondary);
}

/* Urgency bar */
.urgency-bar {
    background: #15803d;
    color: #fff;
    text-align: center;
    padding: 10px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    line-height: 1.4;
}
.urgency-bar-icon {
    font-size: 1rem;
    flex-shrink: 0;
}
.urgency-bar-cta {
    background: #fff;
    color: #15803d;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 4px 14px;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.15s;
    flex-shrink: 0;
}
.urgency-bar-cta:hover {
    opacity: 0.85;
}

/* Navbar */
.navbar {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 50;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
}
.brand-accent {
    color: var(--accent-blue);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background-color: var(--accent-green);
    color: white;
}
.btn-primary:hover {
    background-color: var(--accent-green-hover);
    transform: translateY(-2px);
}
.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}
.btn-secondary:hover {
    background-color: var(--bg-secondary);
}
.btn-large {
    padding: 18px 36px;
    font-size: 1.125rem;
    border-radius: var(--radius-lg);
}
.glow-effect {
    box-shadow: var(--shadow-glow);
}
.glow-effect:hover {
    box-shadow: 0 15px 30px -5px rgba(22, 163, 74, 0.5);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--accent-blue);
    margin-bottom: 24px;
}
.badge.green {
    background-color: rgba(22, 163, 74, 0.1);
    color: var(--accent-green);
}

/* Hero Section */
.hero {
    padding: 80px 0 120px;
    overflow: hidden;
}
.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.headline {
    font-size: 3.5rem;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    max-width: 900px;
}
.subheadline {
    font-size: 1.125rem;
    margin-bottom: 32px;
    max-width: 500px;
}
.hero-benefits {
    list-style: none;
    margin-bottom: 40px;
}
.hero-benefits li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}
.check-icon {
    color: var(--accent-green);
    font-size: 1.25rem;
    font-weight: 800;
}
.guarantee-text {
    margin-top: 16px;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.hero-cta-group {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}
.hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
    padding: 20px 32px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    flex-wrap: wrap;
}
.hero-proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.hero-proof-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: #16a34a;
    line-height: 1;
    letter-spacing: -0.02em;
}
.hero-proof-plus {
    font-size: 1.25rem;
}
.hero-proof-label {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.hero-proof-divider {
    width: 1px;
    height: 36px;
    background: #e2e8f0;
}
.hero-delivery {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 20px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #15803d;
}
.hero-delivery-icon {
    font-size: 1rem;
}
@media (max-width: 640px) {
    .hero-proof-divider { display: none; }
    .hero-social-proof { gap: 20px; padding: 16px; }
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.mt-8 {
    margin-top: 32px;
}

/* Video Wrapper */
.hero-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    border: 3px solid var(--accent-green);
    box-shadow: var(--shadow-glow);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000;
    cursor: pointer;
}
.hero-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
.video-thumbnail {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}
.hero-video-wrapper:hover .video-thumbnail {
    opacity: 1;
}
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 56px;
    background-color: #ff0000;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 20px rgba(255,0,0,0.5);
    transition: background-color 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}
.hero-video-wrapper:hover .play-button {
    background-color: #cc0000;
    transform: translate(-50%, -50%) scale(1.1);
}
.play-button::before {
    content: '';
    display: inline-block;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 5px;
}

/* Video Caption */
.video-caption {
    margin-top: 16px;
    font-size: 1.5rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    letter-spacing: 0.01em;
}
.video-caption-highlight {
    color: var(--accent-green);
    font-weight: 600;
}

/* Image Mockups */
.saas-mockup {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    transition: transform 0.5s ease;
}
.saas-mockup:hover {
    transform: scale(1.02);
}

/* Sections */
.section-title {
    margin-bottom: 60px;
}
.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

/* Cards */
.card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.3);
}

/* Problem Section */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}
.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}
.problem-card p {
    font-size: 0.95rem;
}

/* Ideal Profile Section */
.ideal-section {
    padding: 80px 0;
}
.ideal-list {
    list-style: none;
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}
.ideal-list li {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    box-shadow: var(--shadow-sm);
    color: var(--text-primary);
}
.ideal-list-highlight {
    background: #f0fdf4 !important;
    border-color: #86efac !important;
    border-width: 2px !important;
    font-weight: 600;
    color: #14532d !important;
}

/* Solution Cards Grid */
.solution-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.solution-cards-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.how-title {
    margin-bottom: 26px;
}
.no-image-card .card-body {
    padding-top: 36px;
}
.solution-card {
    border: 3px solid var(--accent-green);
    border-radius: var(--radius-lg);
    background-color: #f3f4f6;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.solution-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.card-image-wrapper {
    background-color: #ffffff;
    padding: 30px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #e5e7eb;
}
.card-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.card-body {
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.card-body h3 {
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 500;
}
.card-body p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}
.card-feature-list {
    list-style: none;
    margin-top: -10px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: var(--text-primary);
}
.card-feature-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.card-feature-list li::before {
    content: '✅';
    font-size: 0.85em;
}
.btn-card-buy {
    align-self: center;
    background-color: #65a30d;
    color: #ffffff;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-top: auto;
    width: 100%;
    max-width: 220px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #4d7c0f;
    display: block;
}
.btn-card-buy:hover {
    background-color: #4d7c0f;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 1024px) {
    .headline { font-size: 3rem; }
    .hero-container {
        text-align: center;
    }
    .hero-cta-group {
        align-items: center;
    }
    .pdf-preview-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .pdf-preview-images {
        display: none;
    }
    .pdf-mobile-carousel {
        display: block;
    }
    .pdf-benefits {
        display: inline-block;
        text-align: left;
    }
    .desktop-only-btn {
        display: none;
    }
    .mobile-only-btn {
        display: block;
    }
}
@media (max-width: 768px) {
    .headline { font-size: 2.25rem; }
    .section-title h2 { font-size: 2rem; }
}

/* End Solution */
.report-image {
    margin-top: 24px;
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}
.carousel-real-img {
    border-radius: var(--radius-md);
}

/* PDF Mobile Carousel */
.pdf-mobile-carousel {
    display: none; /* oculto no desktop */
    width: 100%;
    margin-top: 32px;
}
.mobile-only-btn {
    display: none; /* oculto no desktop */
}
.pdf-carousel-track-container {
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    background: #fff;
}
.pdf-carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}
.pdf-carousel-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: #fff;
}
.pdf-carousel-slide img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: block;
    margin: 0 auto;
}
.pdf-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 16px;
}
.pdf-carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: white;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
    color: var(--text-primary);
}
.pdf-carousel-btn:hover {
    background: var(--accent-green);
    color: white;
    border-color: var(--accent-green);
}
.pdf-carousel-dots {
    display: flex;
    gap: 8px;
}
.pdf-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}
.pdf-dot.active {
    background: var(--accent-green);
    transform: scale(1.3);
}

/* Carousel Section */
.carousel-section {
    padding: 100px 0;
}
.carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-track-container {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    height: 100%;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}
.carousel-track {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    height: 100%;
    transition: transform 0.4s ease-in-out;
}
.carousel-slide {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 24px;
    background-color: var(--bg-primary);
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
    transition: all 0.2s ease;
}
.carousel-btn:hover {
    background: var(--accent-green);
    color: white;
    border-color: var(--accent-green);
}
.carousel-btn.prev {
    left: -24px;
}
.carousel-btn.next {
    right: -24px;
}
@media (max-width: 768px) {
    .carousel-wrapper {
        height: 300px;
    }
    .carousel-btn.prev {
        left: -10px;
    }
    .carousel-btn.next {
        right: -10px;
    }
}

/* PDF Preview Section */
.pdf-preview-section {
    padding: 100px 0;
    overflow: hidden;
    background-color: var(--bg-primary);
}
.pdf-preview-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.pdf-preview-images {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pdf-page {
    position: absolute;
    width: 320px;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    background: white;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.pdf-page.page-1 {
    z-index: 2;
    transform: rotate(-4deg) translateX(-50px);
}
.pdf-page.page-2 {
    z-index: 1;
    transform: rotate(8deg) translateX(120px) translateY(80px);
    opacity: 1;
}
.pdf-preview-images:hover .page-1 {
    transform: rotate(-6deg) translateX(-90px) translateY(-20px) scale(1.05);
}
.pdf-preview-images:hover .page-2 {
    transform: rotate(12deg) translateX(160px) translateY(120px) scale(1.05);
}
.pdf-preview-content h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
    line-height: 1.2;
}
.pdf-preview-content p {
    font-size: 1.125rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
}
.pdf-benefits {
    list-style: none;
    margin-bottom: 30px;
}
.pdf-benefits li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}
.outline-pdf {
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}
.outline-pdf:hover {
    background-color: rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.feature-card {
    text-align: center;
    padding: 40px 30px;
}
.feature-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    position: relative;
}
.feature-icon-green {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.18);
}
.feature-icon-blue {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.18);
}
.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

/* Offer & Pricing Section */
.offer-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}
.offer-stack h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
}
.offer-stack > p {
    font-size: 1.125rem;
    margin-bottom: 40px;
}
.bonus-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.bonus-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-primary);
    padding: 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.bonus-icon {
    font-size: 1.5rem;
}
.bonus-text {
    display: flex;
    flex-direction: column;
}
.bonus-text strong {
    color: var(--text-primary);
    font-weight: 600;
}
.bonus-text span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}
.value-strike {
    text-decoration: line-through;
    color: var(--accent-red) !important;
}

/* Countdown */
.countdown-wrapper {
    background: #fefce8;
    border: 1px solid #fde68a;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    margin-bottom: 24px;
}
.countdown-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #92400e;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}
.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.countdown-value {
    font-size: 2rem;
    font-weight: 800;
    color: #b45309;
    line-height: 1;
    min-width: 52px;
    text-align: center;
    background: #fff;
    border-radius: 8px;
    padding: 6px 8px;
    border: 1px solid #fde68a;
    font-variant-numeric: tabular-nums;
}
.countdown-unit-label {
    font-size: 0.7rem;
    color: #a16207;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.countdown-sep {
    font-size: 1.75rem;
    font-weight: 800;
    color: #b45309;
    margin-bottom: 14px;
    line-height: 1;
}

/* Pricing Card */
.pricing-card {
    padding: 40px;
    text-align: center;
    border: 2px solid var(--accent-green);
    position: relative;
    overflow: hidden;
}
.pricing-header {
    margin-bottom: 30px;
}
.original-price {
    font-size: 1rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}
.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 10px 0;
}
.price-value {
    font-size: 3.75rem;
    color: var(--accent-green);
    letter-spacing: -0.05em;
}
.cash-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}
.price-renewal-note {
    font-size: 0.8125rem;
    line-height: 1.45;
    color: var(--text-secondary);
    margin: 14px 0 0;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
}
.urgency-note {
    font-size: 0.875rem;
    margin-top: 12px;
    color: var(--accent-red);
}
.btn-block {
    display: flex;
    width: 100%;
}
.guarantee-box {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    text-align: left;
    gap: 16px;
}
.guarantee-icon {
    font-size: 2rem;
}
.guarantee-info {
    display: flex;
    flex-direction: column;
}
.guarantee-info strong {
    font-size: 0.9rem;
}
.guarantee-info span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* WhatsApp social proof gallery */
.whatsapp-proofs {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.whatsapp-proof-item {
    margin: 0;
    flex: 1 1 200px;
    max-width: 260px;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.13));
    transition: transform 0.2s ease, filter 0.2s ease;
}
.whatsapp-proof-item:hover {
    transform: translateY(-4px) scale(1.02);
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.18));
}
.whatsapp-proof-item img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}
@media (max-width: 640px) {
    .whatsapp-proof-item {
        max-width: 100%;
        flex: 1 1 100%;
    }
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.testimonial-card {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
}
.testimonial-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
    line-height: 1;
}
.testimonial-quote {
    font-size: 2rem;
    line-height: 1;
    color: #d1d5db;
    font-family: Georgia, serif;
    margin-top: -4px;
}
.testimonial-text {
    font-size: 0.97rem;
    color: var(--text-primary);
    line-height: 1.6;
    flex: 1;
    margin: 0;
}
.testimonial-highlight {
    background: #d1fae5;
    color: #065f46;
    border-radius: 3px;
    padding: 1px 4px;
    font-style: normal;
}
.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.07);
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e5e7eb;
    color: #374151;
    font-weight: 700;
    font-size: 0.9rem;
    overflow: hidden;
    border: 2px solid #e2e8f0;
}
.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.testimonial-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
}
.testimonial-role {
    font-size: 0.82rem;
    color: var(--text-secondary);
}
.testimonial-badge {
    font-size: 0.78rem;
    color: #0f766e;
    font-weight: 500;
}
.placeholder-note {
    font-size: 0.9rem;
}

/* Comparison */
.comparison-table-wrapper {
    overflow-x: auto;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 740px;
}
.comparison-table th,
.comparison-table td {
    border: 1px solid var(--border-color);
    padding: 14px;
    text-align: left;
    vertical-align: top;
}
.comparison-table th {
    background: var(--bg-secondary);
}

/* Creator (editorial layout) */
.creator-editorial {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 36px;
    align-items: stretch;
}
.creator-content h2 {
    font-size: 2.45rem;
    line-height: 1.15;
    margin-bottom: 18px;
}
.creator-content p {
    margin-bottom: 14px;
    font-size: 1.08rem;
    color: #374151;
}
.creator-kicker {
    text-transform: uppercase;
    font-size: 0.92rem;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: #6b7280;
    margin-bottom: 10px;
}
.creator-quote {
    margin-top: 18px;
    border-left: 3px solid var(--accent-blue);
    padding: 14px 16px;
    background: #f9fafb;
    font-style: italic;
    color: #374151;
}
.creator-photo-wrap {
    border-radius: 18px;
    overflow: hidden;
    background: #e5e7eb;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    min-height: 560px;
    display: flex;
}
.creator-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.creator-photo-fallback-content {
    display: none;
    width: 100%;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 800;
    color: #1f2937;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
}
.creator-photo-fallback .creator-photo-fallback-content {
    display: flex;
}

/* Pain bridge */
.pain-bridge-section {
    padding: 64px 0;
    background: #f0fdf4;
    border-top: 1px solid #bbf7d0;
    border-bottom: 1px solid #bbf7d0;
}
.pain-bridge-text {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.6;
    color: #14532d;
}
.pain-bridge-hook {
    display: inline-block;
    margin-top: 8px;
    font-size: 1.55rem;
    font-weight: 800;
    color: #16a34a;
    letter-spacing: -0.01em;
}

/* Expanded Guarantee */
.guarantee-section {
    padding: 80px 0;
}
.guarantee-card-expanded {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}
.guarantee-icon-large {
    font-size: 2.8rem;
    margin-bottom: 14px;
}
.guarantee-card-expanded h2 {
    margin-bottom: 16px;
}
.guarantee-card-expanded p {
    margin-bottom: 10px;
}

/* FAQ */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}
.faq-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px 16px;
}
.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--text-primary);
}
.faq-item p {
    margin-top: 10px;
    color: var(--text-secondary);
}

/* Final CTA */
.final-cta-section {
    padding: 90px 0;
}
.final-cta-section h2 {
    max-width: 860px;
    margin: 0 auto 14px;
}
.final-cta-section p {
    margin-bottom: 22px;
}

/* Footer extras */
.footer-id,
.footer-links,
.footer-disclaimer {
    max-width: 760px;
    font-size: 0.9rem;
}
.footer-links a {
    color: var(--accent-blue);
    text-decoration: none;
}
.footer-links a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}
.copyright {
    font-size: 0.875rem;
}

/* Responsive remaining */
@media (max-width: 1024px) {
    .offer-container {
        grid-template-columns: 1fr;
    }
    .creator-editorial {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .creator-content h2 {
        font-size: 2rem;
    }
    .creator-content p {
        font-size: 1rem;
    }
    .creator-photo-wrap {
        min-height: 420px;
    }
}
