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

:root {
    --primary-color: #ff6b35;
    --secondary-color: #f7931e;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --success-color: #27ae60;
    --warning-color: #e74c3c;
    --text-color: #333;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: #fff;
}

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

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

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: #e85a2a;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background: #e08419;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: var(--box-shadow);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo h1 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

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

.nav-links a {
    color: var(--dark-color);
    font-weight: 500;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    color: white;
    padding: 4rem 0;
}

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

.hook {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.benefits-quick {
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.benefit-item .icon {
    font-size: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.social-proof-mini {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

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

.stars {
    color: #ffd700;
    font-size: 1.2rem;
}

.rating-text {
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.verified {
    font-size: 0.9rem;
}

.hero-image {
    position: relative;
}

.image-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stock-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    color: var(--dark-color);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pulse {
    width: 10px;
    height: 10px;
    background: var(--success-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Reviews Top Section */
.reviews-top {
    background: var(--light-color);
    padding: 3rem 0;
}

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

.review-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.review-card.featured {
    border: 2px solid var(--primary-color);
}

.review-card.critical {
    border: 2px solid var(--secondary-color);
}

.review-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    flex-shrink: 0;
}

.review-header h4 {
    margin: 0;
    font-size: 1rem;
}

.verified-badge {
    color: var(--success-color);
    font-size: 0.85rem;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.review-date {
    font-size: 0.8rem;
    color: #666;
}

/* Intro Section */
.intro {
    padding: 4rem 0;
}

.intro h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.intro-text {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.what-you-learn {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    max-width: 800px;
    margin: 0 auto;
}

.what-you-learn h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.what-you-learn ul {
    list-style: none;
}

.what-you-learn li {
    padding: 0.5rem 0;
    font-size: 1rem;
}

/* Main Benefits Section */
.main-benefits {
    background: white;
    padding: 4rem 0;
}

.main-benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

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

.benefit-card {
    background: white;
    border: 2px solid var(--light-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.benefit-card.highlight {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(247, 147, 30, 0.05) 100%);
}

.benefit-number {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.benefit-desc {
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.benefit-why,
.benefit-example,
.pro-tip {
    background: var(--light-color);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin: 1rem 0;
}

.benefit-why strong,
.benefit-example strong,
.pro-tip strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.pro-tip {
    background: #fff3cd;
    border-left: 4px solid var(--secondary-color);
}

/* Story Section */
.story {
    background: var(--light-color);
    padding: 4rem 0;
}

.story h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.story-content {
    display: block;
    max-width: 900px;
    margin: 0 auto;
}

.story-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.story-timeline {
    margin: 2rem 0;
}

.timeline-item {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.timeline-item .year {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline-item h4 {
    margin: 0.5rem 0;
}

.story-quote blockquote {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
    font-style: italic;
    font-size: 1.1rem;
    margin: 2rem 0;
}

.story-quote footer {
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

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

.stat {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* Comparison Table */
.comparison {
    padding: 4rem 0;
}

.comparison h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--light-color);
}

.comparison-table th {
    background: var(--dark-color);
    color: white;
    font-weight: 600;
}

.comparison-table .highlight-col {
    background: rgba(255, 107, 53, 0.1);
    font-weight: 600;
}

.price-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.comparison-summary {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
    text-align: center;
}

.comparison-summary h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Products Section */
.products {
    background: var(--light-color);
    padding: 4rem 0;
}

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

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.product-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.product-badge.best-seller {
    background: var(--secondary-color);
}

.product-badge.premium {
    background: var(--dark-color);
}

.product-images {
    position: relative;
    padding: 1rem;
}

.main-image {
    min-height: 250px;
    margin-bottom: 1rem;
}

.image-thumbnails {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.thumb {
    width: 50px;
    height: 50px;
    background: var(--light-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.thumb:hover {
    border: 2px solid var(--primary-color);
}

.product-card h3 {
    padding: 0 1.5rem;
    margin: 1rem 0;
}

.product-rating {
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.reviews-count {
    color: #666;
    font-size: 0.9rem;
}

.product-price {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    display: block;
}

.price-current {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.price-note {
    font-size: 0.85rem;
    color: #666;
    display: block;
    margin-top: 0.25rem;
}

.product-stock {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stock-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.stock-indicator.in-stock {
    background: var(--success-color);
}

.stock-indicator.low-stock {
    background: var(--warning-color);
    animation: pulse 2s infinite;
}

.product-features {
    padding: 0 1.5rem;
    list-style: none;
    margin-bottom: 1rem;
}

.product-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-color);
}

.product-description {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.product-description h4 {
    margin-top: 1rem;
    color: var(--primary-color);
}

.product-description ul {
    margin-left: 1.5rem;
}

.product-card .btn {
    margin: 1.5rem;
}

.product-help {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 3rem;
}

/* Mistakes Section */
.mistakes {
    padding: 4rem 0;
    background: white;
}

.mistakes h2 {
    text-align: center;
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.mistakes-list {
    max-width: 900px;
    margin: 0 auto;
}

.mistake-card {
    background: white;
    border: 2px solid #fee;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
}

.mistake-number {
    display: inline-block;
    background: var(--warning-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.mistake-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.mistake-problem,
.mistake-solution,
.mistake-example {
    margin: 1rem 0;
    padding: 1rem;
    border-radius: var(--border-radius);
}

.mistake-problem {
    background: #fee;
}

.mistake-cost {
    background: #fff3cd;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin: 1rem 0;
    border-left: 4px solid var(--warning-color);
}

.mistake-solution {
    background: #d4edda;
    border-left: 4px solid var(--success-color);
}

.mistake-example {
    background: var(--light-color);
}

.mistakes-summary {
    background: var(--success-color);
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 3rem;
}

.mistakes-summary h3 {
    color: white;
    margin-bottom: 1rem;
}

/* Video Section */
.video-section {
    background: var(--light-color);
    padding: 4rem 0;
}

.video-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.video-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.video-placeholder {
    background: #000;
    color: white;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.video-card h4 {
    padding: 1rem;
    margin: 0;
}

/* Reviews Full Section */
.reviews-full {
    padding: 4rem 0;
}

.reviews-full h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.reviews-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.review-stat {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.stat-big {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stars-big {
    font-size: 1.5rem;
    color: #ffd700;
}

.reviews-breakdown {
    max-width: 600px;
    margin: 0 auto 3rem;
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.reviews-breakdown h3 {
    margin-bottom: 1rem;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.rating-bar .bar {
    flex: 1;
    height: 8px;
    background: var(--light-color);
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar .fill {
    height: 100%;
    background: var(--secondary-color);
}

.reviews-grid {
    max-width: 900px;
    margin: 0 auto;
}

.review-card-full {
    background: white;
    border: 2px solid var(--light-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
}

.review-card-full.critical {
    border-color: var(--secondary-color);
}

.review-title {
    font-weight: 700;
    margin-bottom: 1rem;
}

.review-helpful {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

.review-helpful button {
    background: var(--light-color);
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.review-helpful button:hover {
    background: var(--primary-color);
    color: white;
}

.company-response {
    background: #f0f8ff;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
    border-left: 4px solid var(--primary-color);
}

/* FAQ Section */
.faq {
    background: var(--light-color);
    padding: 4rem 0;
}

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

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-color);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

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

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

.faq-item.active .faq-answer {
    max-height: 2000px;
}

.faq-answer p,
.faq-answer ul {
    padding: 0 1.5rem 1.5rem;
}

.faq-answer ul {
    margin-left: 1.5rem;
}

.price-breakdown {
    background: var(--light-color);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin: 1rem 0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}

.price-row.optional {
    font-style: italic;
}

.price-row.total {
    border-top: 2px solid var(--primary-color);
    border-bottom: none;
    font-size: 1.2rem;
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.green {
    color: var(--success-color);
}

/* Booking Section */
.booking {
    padding: 4rem 0;
    background: white;
}

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

.booking-form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-form {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--light-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: #666;
    font-size: 0.85rem;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
}

.price-calculator {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.price-calculator h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.price-calc-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}

.price-calc-row.total {
    border-top: 2px solid var(--primary-color);
    border-bottom: none;
    font-size: 1.3rem;
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.form-footer {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
}

.booking-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-box,
.social-proof-box,
.urgency-box {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.trust-box h4,
.social-proof-box h4,
.urgency-box h4 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.trust-box ul,
.mini-reviews {
    list-style: none;
}

.trust-box li {
    padding: 0.5rem 0;
}

.mini-reviews p {
    font-style: italic;
    padding: 0.5rem 0;
    color: #666;
}

.rating-mini {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-color);
}

.urgency-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe8a1 100%);
    border: 2px solid var(--secondary-color);
}

.urgency-warning {
    color: var(--warning-color);
    font-weight: 700;
}

/* Risk Reversal Section */
.risk-reversal {
    background: var(--light-color);
    padding: 4rem 0;
}

.risk-reversal h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

.guarantee-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.guarantee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.guarantee-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.guarantee-summary {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 3rem;
}

/* Lead Magnet Section */
.lead-magnet {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    color: white;
    padding: 4rem 0;
}

.lead-magnet-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.lead-magnet h2 {
    color: white;
    margin-bottom: 0.5rem;
}

.lead-magnet h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.lead-magnet ul {
    list-style: none;
    margin: 1.5rem 0;
}

.lead-magnet li {
    padding: 0.5rem 0;
}

.lead-magnet-value {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 1rem;
}

.lead-magnet-form {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
}

.lead-magnet-form h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.lead-magnet-form input {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--light-color);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.form-note {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    margin-top: 0.5rem;
}

.lead-magnet-preview {
    margin-top: 2rem;
    text-align: center;
}

.pdf-preview {
    background: var(--light-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.download-count {
    color: #666;
    font-size: 0.9rem;
}

/* Final CTA Section */
.final-cta {
    padding: 4rem 0;
    background: white;
}

.final-cta h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.cta-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.cta-option {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.cta-option h3 {
    margin-bottom: 1rem;
}

.cta-option p {
    margin-bottom: 1.5rem;
}

.cta-note {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.final-reminder {
    max-width: 700px;
    margin: 0 auto 3rem;
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.final-reminder ul {
    list-style: none;
    margin-top: 1rem;
}

.final-reminder li {
    padding: 0.5rem 0;
}

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

.testimonial-final blockquote {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    font-style: italic;
    font-size: 1.1rem;
}

.testimonial-final footer {
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-column p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-column a {
    color: white;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

/* Sticky Mobile CTA */
.sticky-cta-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content,
    .story-content,
    .lead-magnet-content {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .products-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }

    .reviews-slider {
        grid-template-columns: 1fr;
    }

    .guarantees-grid {
        grid-template-columns: 1fr;
    }

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

    .booking-form-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .story-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .sticky-cta-mobile {
        display: block;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    .hero-title { font-size: 2rem; }
}

@media (max-width: 640px) {
    .cta-buttons {
        flex-direction: column;
    }

    .social-proof-mini {
        flex-direction: column;
        gap: 1rem;
    }

    .reviews-stats,
    .story-stats {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .container {
        padding: 0 15px;
    }
}
