/* HOMEPAGE CSS - Extracted from inline styles */

/* Urgency Banner - no top margin so it sits flush under the fixed navbar */
.urgency-banner {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    padding: 0.9rem 0;
    margin-top: 0 !important;
    text-align: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    position: relative;
    z-index: 100;
}

.urgency-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.urgency-banner-icon {
    font-size: 1.4rem;
    animation: pulse 2s infinite;
}

/* Hero Section */
.hero {
    padding: 6rem 0 4rem;
    background: white;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero h1 .highlight {
    color: var(--zoogaboog-blue);
}

.hero-subtitle-large {
    font-size: 1.5rem;
    color: #64748b;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle-bold {
    margin-top: 1.5rem;
    font-size: 1.4rem;
    color: #1e293b;
    font-weight: 700;
}

.hero-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--zoogaboog-blue);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(1, 170, 222, 0.3);
}

.hero-cta:hover {
    background: var(--zoogaboog-dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(1, 170, 222, 0.4);
    color: white;
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: transparent;
    color: var(--zoogaboog-blue);
    border: 2px solid var(--zoogaboog-blue);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.hero-cta-secondary:hover {
    background: var(--zoogaboog-blue);
    color: white;
    transform: translateY(-2px);
}

.product-word, .service-word {
    color: #0ea5e9;
    display: inline-block;
    min-width: 180px;
}

.highlight-blue {
    color: #0ea5e9;
}

/* Hero Section 1 - Mobile responsive (reduce font, prevent overflow) */
@media (max-width: 992px) {
    .hero {
        padding: 4rem 0 3rem;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1.2rem !important;
    }
    .hero .subtitle {
        font-size: 1.15rem !important;
    }
    .product-word, .service-word {
        min-width: 140px;
    }
    .hero-cta, .hero-cta-secondary {
        padding: 1rem 1.75rem;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 2.5rem 0 2rem;
        overflow-x: hidden;
    }
    .hero .container-custom {
        max-width: 100%;
    }
    .hero h1 {
        font-size: 1.85rem;
        line-height: 1.25;
        margin-bottom: 1rem;
    }
    .hero p {
        font-size: 1rem !important;
        line-height: 1.5;
        margin-bottom: 1rem !important;
    }
    .hero .subtitle {
        font-size: 0.95rem !important;
        margin-top: 1rem !important;
    }
    .hero #product-word,
    .hero #service-word {
        min-width: 0;
        display: inline;
    }
    .product-word, .service-word {
        min-width: 0;
        display: inline;
    }
    .hero-cta-wrapper {
        gap: 1rem;
        margin-bottom: 0.75rem;
    }
    .hero-cta, .hero-cta-secondary {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }
    .trust-signals-wrapper {
        margin-top: 2rem;
        gap: 2rem;
    }
    .trust-signal-icon {
        font-size: 1.5rem;
    }
    .trust-signal-title {
        font-size: 0.9rem;
    }
    .trust-signal-subtitle {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 1.75rem 0 1.5rem;
    }
    .hero h1 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    .hero p {
        font-size: 0.9rem !important;
    }
    .hero .subtitle {
        font-size: 0.9rem !important;
    }
    .hero-cta, .hero-cta-secondary {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Trust Signals */
.trust-signals-wrapper {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.9;
}

.trust-signal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-signal-icon {
    font-size: 2rem;
    color: var(--zoogaboog-blue);
}

.trust-signal-icon.orange {
    color: #F59E0B;
}

.trust-signal-icon.green {
    color: #10B981;
}

.trust-signal-content {
    text-align: left;
}

.trust-signal-title {
    font-weight: 700;
    color: #1e293b;
    font-size: 0.95rem;
}

.trust-signal-subtitle {
    font-size: 0.85rem;
    color: #64748b;
}

.trusted-by-text {
    margin-top: 2.5rem;
    text-align: center;
    color: #64748b;
    font-size: 1rem;
}

.trusted-by-text strong {
    color: #1e293b;
}

/* Instant Value Section */
.instant-value-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 4rem 0;
    border-top: 3px solid #0ea5e9;
}

.instant-value-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 1rem;
}

.instant-value-title .highlight {
    color: #0ea5e9;
}

.instant-value-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #64748b;
    margin-bottom: 3rem;
    font-weight: 600;
}

.value-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 5px solid #0ea5e9;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.value-card.blue {
    border-left-color: #0ea5e9;
}

.value-card.green {
    border-left-color: #10B981;
}

.value-card.orange {
    border-left-color: #F59E0B;
}

.value-card-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.value-card-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.value-card-description {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.05rem;
}

.value-card-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e2e8f0;
    font-weight: 700;
    color: #0ea5e9;
}

.value-card-footer.green {
    color: #10B981;
}

.value-card-footer.orange {
    color: #F59E0B;
}

.value-summary-box {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255,255,255,0.6);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.value-summary-text {
    font-size: 1.3rem;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.value-summary-text .muted {
    color: #64748b;
}

.value-summary-text .highlight {
    color: #0ea5e9;
}

.value-summary-separator {
    color: #64748b;
    margin: 0 1rem;
}

/* Testimonial Banner */
.testimonial-banner {
    background: #f8fafc;
    padding: 2rem 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.testimonial-banner-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial-card {
    max-width: 350px;
    text-align: center;
}

.testimonial-stars {
    margin-bottom: 0.75rem;
}

.testimonial-star {
    color: #F59E0B;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #1e293b;
    font-style: italic;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 700;
    color: #1e293b;
    font-size: 0.9rem;
}

.testimonial-role {
    font-size: 0.85rem;
    color: #64748b;
}

/* Video Section */
.video-section {
    padding: 6rem 0;
    background: white;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.video-embed video {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(1, 170, 222, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-play-button i {
    font-size: 3rem;
    color: white;
    margin-left: 5px;
}

.video-play-button:hover {
    background: var(--zoogaboog-blue);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-button.playing {
    opacity: 0;
    pointer-events: none;
}

.video-placeholder {
    display: none;
}

/* Comparison Section */
.comparison-section {
    padding: 6rem 0;
    background: white;
}

.comparison-title {
    font-size: 3rem;
    font-weight: 900;
    color: #1e293b;
    text-align: center;
    margin-bottom: 1rem;
}

.comparison-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 3rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--zoogaboog-blue) 0%, var(--zoogaboog-dark-blue) 100%);
    color: white;
}

.comparison-table th {
    padding: 1.5rem;
    text-align: left;
    font-weight: 800;
    font-size: 1.1rem;
}

.comparison-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    color: #64748b;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr.comparison-highlight-row {
    background: #f0f9ff;
}

.comparison-table tr.comparison-summary-row {
    background: #f8fafc;
    font-weight: 700;
}

.comparison-old {
    color: #ef4444;
}

.comparison-new {
    color: var(--green);
    font-weight: 700;
}

.comparison-cta {
    text-align: center;
    margin-top: 3rem;
}

.comparison-tagline {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.comparison-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--zoogaboog-blue);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(1, 170, 222, 0.3);
    margin-bottom: 1rem;
}

.comparison-btn:hover {
    background: var(--zoogaboog-dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(1, 170, 222, 0.4);
    color: white;
}

.comparison-subtext {
    font-size: 1rem;
    color: #64748b;
    margin-top: 1rem;
}

/* Comparison Section */
.comparison-teaser {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

.comparison-teaser-text {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.comparison-teaser-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--zoogaboog-blue);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Vendor Chaos Calculator */
.chaos-calculator-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.chaos-calculator-title {
    font-size: 3rem;
    font-weight: 900;
    color: #1e293b;
    text-align: center;
    margin-bottom: 1rem;
}

.chaos-calculator-subtitle {
    font-size: 1.4rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 4rem;
}

.chaos-calculator-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.chaos-calculator-field {
    margin-bottom: 2rem;
}

.chaos-calculator-label {
    font-weight: 700;
    color: #1e293b;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.75rem;
}

.chaos-calculator-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
}

.chaos-calculator-button {
    width: 100%;
    padding: 1.25rem;
    background: var(--zoogaboog-blue);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chaos-calculator-result {
    display: none;
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--zoogaboog-blue) 0%, #0085ae 100%);
    border-radius: 16px;
    color: white;
    text-align: center;
}

.chaos-calculator-result.show {
    display: block;
}

.chaos-result-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.chaos-result-monthly {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.chaos-result-text {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.chaos-result-yearly {
    font-size: 2.5rem;
    font-weight: 900;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(255,255,255,0.3);
}

.chaos-result-cta {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--zoogaboog-blue);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Competitive Comparison */
.competitive-comparison-section {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.comparison-badge-wrapper {
    text-align: center;
    margin-bottom: 1.5rem;
}

.comparison-badge {
    display: inline-block;
    background: rgba(120, 53, 15, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.comparison-badge-text {
    color: #78350f;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.competitive-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    color: #78350f;
    margin-bottom: 1rem;
}

.competitive-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #92400e;
    margin-bottom: 4rem;
    font-weight: 600;
}

.competitor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.competitor-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: transform 0.3s ease;
}

.competitor-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.competitor-icon {
    font-size: 2.5rem;
    color: #6b7280;
}

.competitor-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.competitor-features {
    color: #64748b;
    font-size: 1rem;
    line-height: 2;
    text-align: left;
}

.competitor-feature {
    margin-bottom: 0.75rem;
}

.competitor-feature-icon {
    color: #dc2626;
    font-weight: 700;
}

.competitor-price {
    padding-top: 1rem;
    border-top: 2px solid #e5e7eb;
    font-weight: 800;
    color: #1e293b;
    font-size: 1.1rem;
}

.zoogaboog-card {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 4px solid #0369a1;
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.4);
    position: relative;
    transform: scale(1.05);
}

.zoogaboog-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #F59E0B;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.5);
}

.zoogaboog-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 1rem auto 1.5rem;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoogaboog-icon {
    font-size: 2.5rem;
    color: white;
}

.zoogaboog-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
}

.zoogaboog-features {
    color: white;
    font-size: 1rem;
    line-height: 2;
    text-align: left;
    font-weight: 600;
}

.zoogaboog-feature-icon {
    font-weight: 900;
}

.zoogaboog-price {
    padding-top: 1rem;
    border-top: 2px solid rgba(255,255,255,0.3);
    font-weight: 900;
    color: white;
    font-size: 1.1rem;
}

.comparison-cta-wrapper {
    text-align: center;
    margin-top: 3rem;
}

.comparison-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: #0ea5e9;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
}

/* Common Fears Section */
.fears-section {
    background: white;
    padding: 5rem 0;
}

.fears-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 1rem;
}

.fears-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #64748b;
    margin-bottom: 4rem;
    font-weight: 600;
}

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

.fear-card {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 5px solid #dc2626;
    position: relative;
}

.fear-badge {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: #dc2626;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
}

.fear-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.fear-description {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.fear-highlight {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 3px solid #10B981;
}

.fear-highlight-text {
    color: #059669;
    font-weight: 700;
    margin: 0;
}

.fears-cta-box {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.3);
}

.fears-cta-title {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.fears-cta-text {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    font-weight: 600;
}

.fears-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.fears-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #0ea5e9;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.fears-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.fears-cta-box {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.3);
}

.fears-cta-title {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.fears-cta-text {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    font-weight: 600;
}

.fears-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.fears-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #0ea5e9;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Video Testimonials */
.video-testimonials-section {
    padding: 6rem 0;
    background: white;
}

.video-testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.video-testimonials-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 1rem;
}

.video-testimonials-subtitle {
    font-size: 1.3rem;
    color: #64748b;
}

.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.video-testimonial-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.video-testimonial-card.yellow {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.video-testimonial-card.purple {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
}

.video-testimonial-player {
    aspect-ratio: 16/9;
    background: #1e293b;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-testimonial-placeholder {
    text-align: center;
    color: white;
}

.video-testimonial-play-icon {
    font-size: 5rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    display: block;
}

.video-testimonial-placeholder-text {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.video-testimonial-duration {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    padding: 0.3rem 0.7rem;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 700;
}

.video-testimonial-content {
    padding: 1.5rem;
}

.video-testimonial-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.video-testimonial-description {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.video-testimonial-author-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.video-testimonial-avatar {
    width: 45px;
    height: 45px;
    background: #cbd5e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-testimonial-avatar-icon {
    font-size: 1.3rem;
    color: #64748b;
}

.video-testimonial-author-name {
    font-weight: 700;
    color: #1e293b;
    font-size: 0.95rem;
}

.video-testimonial-author-role {
    font-size: 0.8rem;
    color: #64748b;
}

.video-testimonials-cta {
    text-align: center;
    margin-top: 4rem;
}

.video-testimonials-cta-text {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.video-testimonials-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--zoogaboog-blue);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(1, 170, 222, 0.3);
}

.video-testimonials-cta-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #94a3b8;
}

/* Final CTA */
.final-cta-note {
    margin-top: 2rem;
    font-size: 1rem;
    opacity: 0.85;
}

/* Bottles Image */
.bottles-image-wrapper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.bottles-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.bottles-image-wrapper.margin-top {
    margin-top: 2rem;
}

/* Comparison Teaser */
.comparison-teaser-wrapper {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

.comparison-teaser-text {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.comparison-teaser-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--zoogaboog-blue);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Chaos Calculator - Additional Styles */
.chaos-calculator-label {
    font-weight: 700;
    color: #1e293b;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.75rem;
}

.chaos-calculator-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
}

.chaos-result-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.chaos-result-monthly {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.chaos-result-text {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.chaos-result-yearly {
    font-size: 2.5rem;
    font-weight: 900;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(255,255,255,0.3);
}

.chaos-result-yearly-text {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.chaos-result-cta {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--zoogaboog-blue);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Competitive Comparison - Additional Styles */
.comparison-badge-wrapper {
    text-align: center;
    margin-bottom: 1.5rem;
}

.comparison-badge {
    display: inline-block;
    background: rgba(120, 53, 15, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.comparison-badge-text {
    color: #78350f;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Fears Section - Additional Styles */
.fears-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.fear-card {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 5px solid #dc2626;
    position: relative;
}

.fear-badge {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: #dc2626;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
}

.fear-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.fear-description {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.fear-highlight {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 3px solid #10B981;
}

.fear-highlight-text {
    color: #059669;
    font-weight: 700;
    margin: 0;
}

/* Video Testimonials - Additional Styles */
.video-testimonial-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.video-testimonial-card.yellow {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.video-testimonial-card.purple {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
}

.video-testimonial-player {
    aspect-ratio: 16/9;
    background: #1e293b;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-testimonial-placeholder {
    text-align: center;
    color: white;
}

.video-testimonial-play-icon {
    font-size: 5rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    display: block;
}

.video-testimonial-placeholder-text {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.video-testimonial-placeholder-small {
    font-size: 0.75rem;
    opacity: 0.6;
}

.video-testimonial-duration {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    padding: 0.3rem 0.7rem;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 700;
}

.video-testimonial-content {
    padding: 1.5rem;
}

.video-testimonial-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.video-testimonial-description {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.video-testimonial-author-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.video-testimonial-avatar {
    width: 45px;
    height: 45px;
    background: #cbd5e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-testimonial-avatar-icon {
    font-size: 1.3rem;
    color: #64748b;
}

.video-testimonial-author-name {
    font-weight: 700;
    color: #1e293b;
    font-size: 0.95rem;
}

.video-testimonial-author-role {
    font-size: 0.8rem;
    color: #64748b;
}

/* Responsive */
@media (max-width: 768px) {
    .fears-grid {
        grid-template-columns: 1fr;
    }
    
    .competitor-grid {
        grid-template-columns: 1fr;
    }
    
    .zoogaboog-card {
        transform: scale(1);
    }
}

