/* CSS Reset & Variables */
:root {
    --primary-color: #0d3b66;
    /* Deep Trust Blue - Authority & Stability */
    --secondary-color: #0056b3;
    /* Vibrant Blue */
    --accent-color: #e65100;
    /* Urgency Orange/Red - Action */
    --cta-gradient: linear-gradient(135deg, #ff6f00 0%, #ff3d00 100%);
    /* High conversion gradient */
    --text-color: #2c3e50;
    /* Dark Blue-Grey - easier on eyes than black */
    --text-light: #546e7a;
    --bg-white: #ffffff;
    --bg-light: #f4f6f8;
    /* Professional Light Grey */
    --bg-dark: #1a252f;
    --success-color: #27ae60;
    --warning-color: #f39c12;

    --font-heading: 'Merriweather', serif;
    --font-body: 'Inter', sans-serif;

    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 32px;
    --spacing-lg: 80px;
    /* Increased for premium whitespace */

    --border-radius: 12px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.06);
    --box-shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.12);
    /* Deeper lift */
    --box-shadow-card: 0 2px 15px rgba(0, 0, 0, 0.04);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-white);
    line-height: 1.7;
    /* Improved readability = Trust */
    -webkit-font-smoothing: antialiased;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    /* Heavier headings for authority */
    margin-bottom: var(--spacing-sm);
    line-height: 1.25;
    color: var(--primary-color);
    /* Headings in Trust Blue */
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Utilities */
.container {
    width: 100%;
    /* Ensure full width capability */
    max-width: 1140px;
    /* Standard readable width */
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.narrow-container {
    width: 100%;
    max-width: 800px;
}

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

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

.mt-3 {
    margin-top: var(--spacing-sm);
}

.mt-4 {
    margin-top: var(--spacing-md);
}

.mt-5 {
    margin-top: 48px;
}

.mb-2 {
    margin-bottom: var(--spacing-xs);
}

.mb-3 {
    margin-bottom: var(--spacing-sm);
}

.mb-5 {
    margin-bottom: 48px;
}

.pl-4 {
    padding-left: 24px;
}

.section-padding {
    padding: var(--spacing-lg) 0;
}

.text-alert {
    color: #c0392b;
    font-weight: 600;
}

/* Stronger red for problems */
.text-success {
    color: var(--success-color);
    font-weight: 600;
}

.text-warning {
    color: #e67e22;
}

.text-muted {
    color: var(--text-light);
}

.text-white {
    color: white;
}

.bg-light-gray {
    background-color: var(--bg-light);
}

.bg-blue-light {
    background-color: #f0f7ff;
    border-top: 1px solid #e1e8ed;
    border-bottom: 1px solid #e1e8ed;
}

.bg-dark {
    background-color: var(--bg-dark);
}

.highlight-text {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 193, 7, 0.4);
    /* Gold underline for value/importance */
    z-index: -1;
    transform: rotate(-1deg);
}

.highlight-text-blue {
    color: var(--secondary-color);
    font-weight: 800;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: var(--cta-gradient);
    color: white;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 61, 0, 0.4);
    /* Glowing Action Shadow */
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 1rem;
    border: 2px solid white;
    /* Pop out effect */
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 61, 0, 0.5);
    background: linear-gradient(135deg, #ff8f00 0%, #ff5722 100%);
}

.primary-btn.large-btn {
    font-size: 1.3rem;
    padding: 20px 60px;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(230, 81, 0, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(230, 81, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(230, 81, 0, 0);
    }
}

/* Sections */

/* Hero */
.hero-section {
    padding: 120px 0 100px;
    text-align: center;
    background: radial-gradient(circle at center, #ffffff 0%, #ebf5fb 100%);
}

.hero-title {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    color: #222;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto var(--spacing-md);
}

/* Problem Grid */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Forced 3 columns */
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
    text-align: center;
}

.problem-item {
    padding: var(--spacing-md);
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.problem-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: var(--spacing-sm);
}

/* Reality Check */
.check-list-box {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    /* Ensure left align */
}

/* New Reality Stack Styles */
.reality-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.reality-item {
    padding-left: 15px;
    border-left: 4px solid var(--accent-color);
    /* Visual marker */
}

.reality-item.traditional {
    border-left-color: #999;
}

.reality-item.upgrade {
    border-left-color: var(--success-color);
}

.r-label {
    display: block;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.r-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
}

/* Solution Section */
.solution-section {
    background: radial-gradient(circle at top left, #f8fbff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    align-items: center;
}

.col-text,
.col-image {
    flex: 1;
    min-width: 300px;
}

.feature-list {
    margin-top: 25px;
    margin-bottom: 30px;
}

.feature-list li {
    font-size: 1.15rem;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #edf2f7;
    transition: transform 0.2s ease;
}

.feature-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border-color: #e2e8f0;
}

.feature-list li i {
    font-size: 1.4rem;
    margin-top: 2px;
    /* Visual alignment with text */
    color: var(--success-color);
}

.emphasis-text {
    margin-top: var(--spacing-md);
    font-style: italic;
    background: #e8f5e9;
    padding: 15px 20px;
    border-left: 5px solid var(--success-color);
    border-radius: 4px;
    color: #2e7d32;
    font-weight: 500;
    font-size: 1.1rem;
}

.img-responsive {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Authority */
.authority-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.auth-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.auth-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* Testimonial Slider (Adapted) */
.testimonial-slider-block {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-slider-shell {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px;
    scrollbar-width: none;
    /* Firefox */
}

.testimonial-track::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.t-card {
    flex: 0 0 320px;
    /* Increased width for landscape */
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    aspect-ratio: 16/9;
    /* Landscape */
}

.t-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.t-arrow {
    background: rgba(0, 0, 0, 0.1);
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 0 10px;
    z-index: 2;
    transition: background 0.2s;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.t-arrow:hover {
    background: rgba(0, 0, 0, 0.2);
}

/* Pricing / Product */
.pricing-area {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.course-card {
    border: none;
    /* Remove default border */
    border-top: 6px solid var(--warning-color);
    /* Top Highlight */
    border-radius: 16px;
    overflow: hidden;
    max-width: 380px;
    width: 100%;
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    /* Deep premium shadow */
    transition: transform 0.3s;
    position: relative;
}

.course-card::before {
    content: 'BEST VALUE';
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ffecb3;
    color: #8a6d3b;
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
}

.course-card:hover {
    transform: translateY(-8px);
}

.card-header {
    background: white;
    color: var(--primary-color);
    font-weight: 800;
    padding: 25px 25px 10px;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #eee;
}

.card-body {
    padding: 30px;
}

.card-price {
    display: flex;
    justify-content: center;
    align-items: center;
    /* Center vertically */
    gap: 15px;
    margin-bottom: 25px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.3rem;
    font-weight: 500;
}

.new-price {
    font-size: 3rem;
    color: var(--accent-color);
    font-weight: 800;
    line-height: 1;
}

.card-details {
    text-align: center;
    color: #555;
}

.card-details p {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.buy-btn {
    display: inline-block;
    background: var(--cta-gradient);
    color: white;
    padding: 16px 0;
    width: 100%;
    border-radius: 8px;
    margin-top: 25px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(230, 81, 0, 0.3);
    transition: all 0.3s;
}

.buy-btn:hover {
    box-shadow: 0 8px 20px rgba(230, 81, 0, 0.5);
    background: linear-gradient(135deg, #ff9e00 0%, #ff6d00 100%);
}

.info-box {
    background: #fff8e1;
    /* Subtle warning/attention bg */
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid var(--warning-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Cost Section */
.cost-section h3 {
    color: #ffeb3b;
    /* High Visibility Yellow */
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    /* Contrast against dark bg */
}

.huge-text {
    font-size: 4.5rem;
    /* Larger impact */
    font-weight: 900;
    background: linear-gradient(to right, #f1c40f, #e67e22);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: var(--spacing-sm);
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.divider-white {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: var(--spacing-md) 0;
}

/* Final Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    text-align: center;
}

.step-card {
    padding: var(--spacing-md);
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.link-style {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}

.app-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

/* Footer */
.main-footer {
    background: #111;
    color: #aaa;
    padding: var(--spacing-lg) 0 20px;
}

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

.social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 10px;
    transition: background 0.3s;
}

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

.credentials-col h4,
.contact-col h4,
.social-links-col h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-brand-name {
    color: white;
    font-weight: 800;
    letter-spacing: 1px;
}

.footer-label {
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
        /* Ensure safe padding on mobile */
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .testimonial-track {
        gap: 10px;
    }

    .t-card {
        flex: 0 0 280px;
    }

    /* Adjust for mobile width */

    .course-card {
        max-width: 100%;
    }

    .visual-comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .text-slider-container {
        padding: 30px 20px;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }
}

.thank-you-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Visual Proof Section */
.visual-comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.comparison-col {
    background: #fdfdfd;
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--box-shadow);
    height: 100%;
    border: 1px solid #eee;
}

.linear-col {
    border-top: 5px solid #999;
}

.mindmap-col {
    border-top: 5px solid var(--success-color);
    background: #f0fff4;
}

.comp-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.comp-image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    background: #eee;
}

.comp-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* or cover depending on image */
}

.comp-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 1.05rem;
}

.comp-list li:last-child {
    border-bottom: none;
}

.comp-list li i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.positive-list li {
    color: #2e7d32;
}

.negative-list li {
    color: #555;
}

/* Text Testimonial Slider */
.text-slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px 60px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.text-slider-track {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    width: 100%;
}

.text-slide {
    flex: 0 0 100%;
    text-align: center;
    padding: 10px;
    animation: fadeIn 0.5s ease;
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: #333;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.testimonial-author {
    font-weight: 700;
    color: var(--text-light);
}

.ts-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 3rem;
    color: #ccc;
    cursor: pointer;
    transition: color 0.3s;
}

.ts-arrow:hover {
    color: var(--primary-color);
}

.ts-prev {
    left: 10px;
}

.ts-next {
    right: 10px;
}

@media (max-width: 768px) {
    .visual-comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .text-slider-container {
        padding: 30px 40px;
    }
}

/* FAQ Section */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #eee;
}

.faq-question {
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    list-style: none;
    /* Hide default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question .icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

details[open] .faq-question .icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px 20px;
    border-top: 1px solid #eee;
    color: #555;
    animation: fadeIn 0.3s ease;
}

.faq-answer p {
    margin-bottom: 10px;
}

.faq-answer ul li {
    margin-bottom: 5px;
}

/* Redesigned Steps Section */
.steps-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
    position: relative;
}

/* Connecting line for desktop */
@media (min-width: 900px) {
    .steps-grid::before {
        content: '';
        position: absolute;
        top: 40px;
        left: 15%;
        right: 15%;
        height: 2px;
        background: repeating-linear-gradient(to right, #ddd 0, #ddd 10px, transparent 10px, transparent 20px);
        z-index: 0;
    }
}

.step-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
    text-align: center;
    position: relative;
    z-index: 1;
    /* Above line */
    transition: transform 0.3s, box-shadow 0.3s;
    border-bottom: 4px solid transparent;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-bottom: 4px solid var(--primary-color);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    /* Or white if card is colored */
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
    border: 2px solid var(--primary-color);
    background: white;
}

.step-card h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 800;
}

.step-card p {
    font-size: 1.1rem;
    color: #444;
    font-weight: 500;
    margin-bottom: 15px;
}

/* Adjust button inside step */
.step-card .link-style {
    display: inline-block;
    margin-top: 5px;
    padding: 8px 16px;
    background: var(--bg-light);
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.step-card .link-style:hover {
    background: #eee;
    color: var(--secondary-color);
}

.app-links a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin: 5px 0;
    transition: all 0.2s;
}

.app-links a:hover {
    background: #f0f0f0;
    border-color: #ddd;
}