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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.highlight {
    color: #2563eb;
    background: linear-gradient(120deg, #dbeafe 0%, #dbeafe 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.2em;
    background-position: 0 88%;
    transition: background-size 0.25s ease-in;
}

/* Buttons */
.cta-button, .cta-button-large, .cta-button-main, .cta-button-final {
    display: inline-block;
    padding: 16px 32px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.cta-button:hover, .cta-button-large:hover, .cta-button-main:hover, .cta-button-final:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.cta-button-large {
    padding: 20px 40px;
    font-size: 1.3rem;
    border-radius: 12px;
}

.cta-button-main {
    padding: 24px 48px;
    font-size: 1.4rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.cta-button-main:hover {
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.cta-button-final {
    padding: 24px 48px;
    font-size: 1.4rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
    animation: pulse 2s infinite;
}

.cta-button-final:hover {
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.logo h1 {
    font-size: 1.5rem;
    color: #2563eb;
    margin: 0;
}

.logo .tagline {
    font-size: 0.8rem;
    color: #6b7280;
}

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

.nav a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #2563eb;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.badge {
    display: inline-block;
    background: #dbeafe;
    color: #1e40af;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.benefit {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 12px;
}

.check {
    color: #059669;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.hero-cta {
    text-align: left;
}

.guarantee-text {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.video-container {
    position: relative;
    background: #f3f4f6;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    text-align: center;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

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

.proof-item {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.proof-item strong {
    display: block;
    font-size: 1.5rem;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.proof-item span {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header .subtitle {
    color: #6b7280;
    font-weight: 400;
}

.section-header p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: #fef2f2;
}

.problem-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.intro {
    font-size: 1.3rem;
    color: #374151;
    margin-bottom: 2rem;
}

.problem-list {
    margin-bottom: 2rem;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 12px;
    font-size: 1.1rem;
}

.x {
    color: #dc2626;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.truth-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #dc2626;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.truth-box h3 {
    color: #dc2626;
    margin-bottom: 1rem;
}

.cost-calculator {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.cost-calculator h3 {
    color: #dc2626;
    margin-bottom: 1.5rem;
    text-align: center;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.cost-item:last-of-type {
    border-bottom: none;
}

.cost-item strong {
    color: #dc2626;
    font-weight: 700;
}

.total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #dc2626;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}

.total strong {
    color: #dc2626;
    font-size: 1.2rem;
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background: #f0fdf4;
}

.solution-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.solution-benefits {
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 16px;
}

.benefit-item .check {
    color: #059669;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-item strong {
    color: #1f2937;
    display: block;
    margin-bottom: 0.25rem;
}

.benefit-item p {
    color: #6b7280;
    margin: 0;
    font-size: 1rem;
}

.reveal-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #059669;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.reveal-box h3 {
    color: #059669;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.phone-mockup {
    background: #1f2937;
    border-radius: 20px;
    padding: 20px;
    position: relative;
}

.screen {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    min-height: 300px;
}

.search-result {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.business-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    position: relative;
}

.business-card.featured {
    border: 2px solid #059669;
    background: #f0fdf4;
}

.business-info h4 {
    margin: 0 0 4px 0;
    font-size: 1rem;
}

.rating {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 4px;
}

.business-info p {
    margin: 0;
    font-size: 0.8rem;
    color: #6b7280;
}

.position-badge {
    background: #2563eb;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.business-card.featured .position-badge {
    background: #059669;
}

.caption {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6b7280;
}

/* Differential Section */
.differential {
    padding: 80px 0;
    background: white;
}

.science-box {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.science-header h3 {
    color: #1e40af;
    text-align: center;
    margin-bottom: 2rem;
}

.science-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stat {
    text-align: center;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stat strong {
    display: block;
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat span {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.4;
}

.gpt-exclusive {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.gpt-exclusive h3 {
    color: #7c3aed;
    text-align: center;
    margin-bottom: 1rem;
}

.gpt-exclusive > p {
    text-align: center;
    margin-bottom: 2rem;
    color: #374151;
}

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

.feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.feature .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature strong {
    display: block;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.feature p {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
}

.gpt-value {
    text-align: center;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.gpt-value p {
    margin: 0;
    color: #7c3aed;
    font-size: 1.1rem;
}

.comparison {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
}

.comparison h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1f2937;
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.comparison-column {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.comparison-column h4 {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    border-radius: 6px;
}

.others h4 {
    background: #fef2f2;
    color: #dc2626;
}

.ours h4 {
    background: #f0fdf4;
    color: #059669;
}

.item {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 6px;
    font-size: 0.95rem;
}

.item.negative {
    background: #fef2f2;
    color: #374151;
}

.item.positive {
    background: #f0fdf4;
    color: #374151;
}

/* Social Proof Section */
.social-proof {
    padding: 80px 0;
    background: #f8fafc;
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    margin: 0;
    color: #1f2937;
}

.client-info p {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
}

.result-badge {
    background: #059669;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.testimonial-content h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.before, .after {
    padding: 1rem;
    border-radius: 8px;
}

.before {
    background: #fef2f2;
}

.after {
    background: #f0fdf4;
}

.before h5, .after h5 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.before h5 {
    color: #dc2626;
}

.after h5 {
    color: #059669;
}

.before ul, .after ul {
    list-style: none;
    padding: 0;
}

.before li, .after li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

blockquote {
    background: #f9fafb;
    padding: 1.5rem;
    border-left: 4px solid #2563eb;
    border-radius: 8px;
    font-style: italic;
    color: #374151;
    margin: 0;
}

.video-testimonials {
    text-align: center;
}

.video-testimonials h3 {
    margin-bottom: 2rem;
    color: #1f2937;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.video-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-thumbnail:hover {
    background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
}

.video-thumbnail .play-button {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.video-thumbnail p {
    margin: 0;
    text-align: center;
    font-size: 0.9rem;
}

.video-thumbnail small {
    color: #d1d5db;
}

/* Course Content Section */
.course-content {
    padding: 80px 0;
    background: white;
}

.modules {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.module {
    background: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.module:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.module.featured {
    border: 2px solid #7c3aed;
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
}

.module-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    cursor: pointer;
    position: relative;
}

.module.featured .module-header {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
}

.module-number {
    background: #2563eb;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.module.featured .module-number {
    background: #7c3aed;
}

.module-header h3 {
    flex: 1;
    margin: 0;
    color: #1f2937;
}

.module-duration {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

.exclusive-badge {
    background: #7c3aed;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.module-content {
    padding: 0 1.5rem 1.5rem;
}

.module-content ul {
    list-style: none;
    padding: 0;
}

.module-content li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
    position: relative;
    padding-left: 1.5rem;
}

.module-content li:last-child {
    border-bottom: none;
}

.module-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: 700;
}

.course-format {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
}

.course-format h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1f2937;
}

.format-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.format-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.format-item .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.format-item strong {
    display: block;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.format-item p {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
}

/* Bonus Section */
.bonus {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

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

.bonus-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.bonus-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.bonus-item.featured {
    border: 2px solid #7c3aed;
    transform: scale(1.02);
}

.bonus-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f9fafb;
}

.bonus-item.featured .bonus-header {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
}

.bonus-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.bonus-header h3 {
    flex: 1;
    margin: 0;
    color: #1f2937;
    font-size: 1.2rem;
}

.bonus-value {
    background: #059669;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.bonus-content {
    padding: 1.5rem;
}

.bonus-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bonus-content li {
    padding: 0.5rem 0;
    color: #374151;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.bonus-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: 700;
}

/* Guarantee Section */
.guarantee {
    padding: 80px 0;
    background: #f0fdf4;
}

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

.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.shield {
    font-size: 3rem;
}

.guarantee-badge h2 {
    margin: 0;
    color: #059669;
}

.guarantee-badge p {
    margin: 0;
    color: #6b7280;
}

.guarantee-text {
    text-align: left;
}

.guarantee-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #059669;
    margin: 2rem 0;
    text-align: center;
}

.guarantee-box h3 {
    color: #059669;
    margin-bottom: 1rem;
}

.why-guarantee {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.why-guarantee h4 {
    color: #059669;
    margin-bottom: 1rem;
}

/* Offer Section */
.offer {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
}

.offer .section-header h2 {
    color: white;
}

.offer-content {
    max-width: 900px;
    margin: 0 auto;
}

.cost-comparison {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.cost-comparison h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #fbbf24;
}

.cost-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.cost-item strong {
    color: #fbbf24;
}

.total-cost {
    text-align: center;
    padding: 1.5rem;
    background: rgba(220, 38, 38, 0.2);
    border-radius: 8px;
    border: 2px solid #dc2626;
}

.total-cost strong {
    color: #fbbf24;
    font-size: 1.3rem;
}

.main-offer {
    background: white;
    color: #1f2937;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.offer-badge {
    background: #dc2626;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.price-comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.old-price {
    text-align: center;
}

.old-price span {
    font-size: 1.5rem;
    color: #6b7280;
    text-decoration: line-through;
    display: block;
}

.old-price small {
    color: #9ca3af;
}

.new-price {
    text-align: center;
}

.new-price span {
    font-size: 3rem;
    color: #dc2626;
    font-weight: 800;
    display: block;
}

.new-price small {
    color: #059669;
    font-weight: 600;
}

.installments {
    margin-bottom: 2rem;
}

.installments p {
    font-size: 1.2rem;
    color: #6b7280;
    margin: 0;
}

.includes {
    margin-bottom: 2rem;
}

.includes h4 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.include-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
    text-align: left;
}

.include-item {
    color: #374151;
    font-size: 0.95rem;
}

.value-summary {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.value-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.value-item.highlight {
    font-size: 1.2rem;
    font-weight: 700;
    color: #dc2626;
    border-top: 2px solid #e5e7eb;
    border-bottom: 2px solid #e5e7eb;
    margin: 1rem 0;
    padding: 1rem 0;
}

.value-item.savings {
    color: #059669;
    font-weight: 600;
}

.urgency {
    background: #fef2f2;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #dc2626;
    margin-bottom: 2rem;
}

.urgency-text {
    text-align: center;
    margin-bottom: 1rem;
}

.urgency-text p {
    color: #dc2626;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.countdown-item {
    background: #dc2626;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    min-width: 80px;
}

.countdown-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.urgency-note, .scarcity {
    text-align: center;
    color: #374151;
    margin: 0.5rem 0;
}

.scarcity strong {
    color: #dc2626;
}

.cta-section {
    margin-top: 2rem;
}

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

.badge {
    background: #f0fdf4;
    color: #059669;
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-question h3 {
    margin: 0;
    color: #1f2937;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #6b7280;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    text-align: center;
}

.final-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-content h2 {
    color: white;
    margin-bottom: 2rem;
}

.competitor-warning {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.competitor-warning p {
    margin-bottom: 1.5rem;
}

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

.warning-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
}

.question {
    font-size: 1.2rem;
    margin: 0;
}

.final-urgency {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.urgency-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.countdown-mini {
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
    margin-top: 0.5rem;
}

.scarcity-warning {
    text-align: center;
    margin-bottom: 1.5rem;
}

.scarcity-warning strong {
    color: #fbbf24;
}

.consequences {
    margin-bottom: 1.5rem;
}

.consequence-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.consequence {
    background: rgba(220, 38, 38, 0.2);
    padding: 0.75rem;
    border-radius: 6px;
    border-left: 4px solid #dc2626;
}

.final-message {
    text-align: center;
}

.final-cta-button {
    margin-bottom: 2rem;
}

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

.guarantee-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.9rem;
}

.final-call {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 40px 0 20px;
}

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

.footer-info h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

.footer-info p {
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.footer-links h4, .footer-contact h4, .footer-legal h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-links ul, .footer-legal ul {
    list-style: none;
    padding: 0;
}

.footer-links li, .footer-legal li {
    margin-bottom: 0.5rem;
}

.footer-links a, .footer-legal a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover, .footer-legal a:hover {
    color: #2563eb;
}

.footer-contact p {
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .problem-content,
    .solution-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cost-calculator {
        position: static;
    }
    
    .science-stats {
        grid-template-columns: 1fr;
    }
    
    .gpt-features {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        grid-template-columns: 1fr;
    }
    
    .before-after {
        grid-template-columns: 1fr;
    }
    
    .format-items {
        grid-template-columns: 1fr;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .price-comparison {
        flex-direction: column;
        gap: 1rem;
    }
    
    .include-items {
        grid-template-columns: 1fr;
    }
    
    .countdown {
        gap: 0.5rem;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 0.75rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .security-badges {
        grid-template-columns: 1fr;
    }
    
    .warning-items {
        grid-template-columns: 1fr;
    }
    
    .final-guarantees {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .cta-button-large,
    .cta-button-main,
    .cta-button-final {
        padding: 16px 24px;
        font-size: 1.1rem;
    }
    
    .new-price span {
        font-size: 2.5rem;
    }
    
    .social-proof {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .header,
    .cta-button,
    .cta-button-large,
    .cta-button-main,
    .cta-button-final,
    .countdown,
    .video-container,
    .video-testimonials {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}

