/* --- Base Theme --- */
:root {
    --color-bg-dark: #1F2937;
    /* Dark Navy/Gray */
    --color-bg-light: #FFFFFF;
    --color-bg-section-alt: #F3F4F6;
    /* Light Gray for alternating sections */

    --color-primary: #FF6600;
    /* Vibrant Orange */
    --color-primary-hover: #e65c00;
    --color-text-dark: #111827;
    --color-text-gray: #4B5563;
    --color-text-light: #FFFFFF;

    --color-danger: #EF4444;
    --color-success: #10B981;

    --font-heading: 'Montserrat', sans-serif;
    /* Strong Marketing Font */
    --font-body: 'Inter', sans-serif;

    --container-width: 1100px;
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--color-primary);
}

.text-orange-bg {
    background-color: var(--color-primary);
    color: #fff;
    padding: 0 10px;
    border-radius: 4px;
    display: inline-block;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-weight: 800;
    font-size: 1.2rem;
    border-radius: 50px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    box-shadow: 0 4px 14px 0 rgba(255, 102, 0, 0.39);
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.23);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.btn-full {
    width: 100%;
    border-radius: 8px;
}

/* --- Hero Section --- */
.hero {
    background-color: #1a202c;
    /* Dark Navy Background like screenshot 1 */
    color: #fff;
    padding: 80px 0 100px;
    text-align: center;
    position: relative;
}

.top-banner {
    background-color: var(--color-danger);
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    margin-top: 40px;
}

.hero-highlight {
    background-color: var(--color-primary);
    padding: 0 15px;
    border-radius: 4px;
}

.subheadline {
    font-size: 1.2rem;
    color: #cbd5e0;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Video Wrapper */
.video-wrapper-border {
    background: var(--color-primary);
    padding: 5px;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-continue {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(76, 29, 149, 0.9);
    /* Purple overlay from screenshot?? Or similar */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.video-continue h4 {
    margin-bottom: 20px;
}

.v-btn {
    margin: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 1.1rem;
}

/* --- Intro/Benefits (White Section) --- */
.intro-section {
    padding: 80px 0;
    background-color: var(--color-bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: #fff;
    padding: 30px 20px;
    border: 1px dashed #E5E7EB;
    /* Dashed border from visual style */
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--color-text-gray);
    font-size: 0.95rem;
}

/* --- Gallery/Categories (Dark Section) --- */
.gallery-section {
    padding: 80px 0;
    background-color: #1F2937;
    color: #fff;
}

.gallery-grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gallery-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    color: var(--color-text-dark);
}

.gallery-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.gallery-card-label {
    padding: 15px;
    text-align: center;
    font-weight: 800;
    font-size: 1.2rem;
    background: #F3F4F6;
}

/* --- Comparison Section (Side by Side) --- */
.comparison-section {
    padding: 80px 0;
    background-color: var(--color-bg-light);
}

.comparison-wrapper {
    display: flex;
    justify-content: center;
    gap: 0;
    /* Connected or small gap */
    max-width: 900px;
    margin: 50px auto 0;
    flex-wrap: wrap;
}

.comp-col {
    flex: 1;
    min-width: 300px;
    padding: 40px 30px;
}

.comp-left {
    background: #F9FAFB;
    border: 2px dashed #EF4444;
    /* Red Dashed */
    border-radius: 12px 0 0 12px;
}

.comp-right {
    background: #111827;
    /* Dark Navy */
    border: 2px solid #111827;
    border-radius: 0 12px 12px 0;
    color: #fff;
}

/* Mobile Fix for radius */
@media(max-width: 768px) {
    .comp-left {
        border-radius: 12px 12px 0 0;
    }

    .comp-right {
        border-radius: 0 0 12px 12px;
    }
}

.comp-header {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
}

.comp-left .comp-header {
    color: var(--color-danger);
}

.comp-right .comp-header {
    color: #fff;
}

.comp-list li {
    list-style: none;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.95rem;
}

.comp-left .comp-list li {
    color: #6B7280;
}

.comp-right .comp-list li {
    color: #E5E7EB;
}

.comp-left i {
    color: var(--color-danger);
    font-size: 1.2rem;
    margin-top: 2px;
}

.comp-right i {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-top: 2px;
}

/* --- Bonus Section --- */
.bonuses-section {
    padding: 80px 0;
    background-color: #fff;
    border-top: 1px solid #e5e5e5;
}

.bonus-card {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    background: #fff;
}

.bonus-tag {
    background: var(--color-primary);
    color: #fff;
    display: inline-block;
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 4px;
    margin-bottom: 10px;
    width: fit-content;
}

.bonus-price {
    margin-top: auto;
    padding-top: 15px;
    font-size: 0.9rem;
    color: #666;
}

.free {
    color: var(--color-success);
    font-weight: bold;
    font-size: 1.1rem;
}

/* --- Pricing --- */
.offer-section {
    padding: 80px 0;
    background: #F3F4F6;
}

.pricing-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto;
    overflow: hidden;
}

.pricing-card.basic {
    border: 1px solid #e5e5e5;
}

.pricing-card.premium {
    border: 2px solid var(--color-primary);
    transform: scale(1.05);
}

.popular-tag {
    background: var(--color-primary);
    color: #fff;
    text-align: center;
    padding: 5px;
    font-size: 0.9rem;
    font-weight: bold;
}

.card-header {
    padding: 30px;
    text-align: center;
    background: #F9FAFB;
    border-bottom: 1px solid #e5e5e5;
}

.card-body {
    padding: 30px;
}

.price .to {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
}

/* --- FAQ --- */
details {
    background: #fff;
    border: 1px solid #e5e5e5;
    margin-bottom: 10px;
    border-radius: 8px;
    color: #333;
}

summary {
    color: #111;
}

/* --- Footer --- */
footer {
    background: #111827;
    color: #9CA3AF;
    padding: 50px 0;
    text-align: center;
    font-size: 0.9rem;
}