:root {
    /* MAJC Palette */
    --color-bg-cream: #FFFADE;
    --color-bg-card-yellow: #FFF9E5;
    /* Extracted from screenshot */
    --color-bg-white: #FFFFFF;
    --color-text-dark: #404040;
    --color-text-light: #FFFFFF;

    --color-accent-yellow: #F7CD46;
    --color-accent-green: #43AE78;
    --color-accent-blue: #5280C5;
    --color-accent-orange: #F76A35;

    /* Fonts */
    --font-primary: 'Poppins', sans-serif;

    /* Shadows */
    --shadow-soft: 5px 5px 10px 0px rgba(64, 64, 64, 0.1);
    --shadow-card: 0px 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-strong: 0px 8px 32px rgba(0, 0, 0, 0.12);
}

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

body {
    background-color: var(--color-bg-cream);
    color: var(--color-text-dark);
    font-family: var(--font-primary);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
button {
    font-family: var(--font-primary);
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.fl-sb {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fl-col-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

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

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

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

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

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

/* Header */
.header {
    padding: 24px 0;
    position: sticky;
    top: 0;
    background-color: rgba(255, 250, 222, 0.95);
    backdrop-filter: blur(5px);
    z-index: 100;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text-dark);
    margin: 0 20px;
    font-weight: 500;
    font-size: 16px;
    position: relative;
}

.nav-links a.active {
    font-weight: 700;
}

.header-actions {
    display: flex;
    gap: 12px;
}

/* Buttons */
.btn {
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn--primary {
    background-color: var(--color-accent-yellow);
    color: var(--color-text-dark);
}

.btn--secondary {
    background-color: var(--color-text-dark);
    color: var(--color-text-light);
}

.btn--large {
    padding: 18px 48px;
    font-size: 18px;
}

/* Hero Section */
.hero-section {
    padding: 80px 0 120px 0;
}

.hero-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 550px;
}

.hero-title {
    font-size: 80px;
    font-weight: 800;
    line-height: 0.95;
    color: var(--color-text-dark);
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: -2px;
    text-align: left;
}

.hero-title .asterisk {
    color: var(--color-accent-orange);
    vertical-align: super;
    font-size: 40px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    max-width: 500px;
    margin-bottom: 48px;
    line-height: 1.5;
    color: var(--color-text-dark);
    text-align: left;
}

.hero-note {
    margin-top: 24px;
    font-size: 14px;
    opacity: 0.6;
    font-style: italic;
    text-align: left;
}

/* Hero Visual (Image) */
.hero-visual-container {
    flex: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transform: rotate(2deg);
    /* Slight organic tilt */
}

/* Mobile Hero adjustments */
@media (max-width: 900px) {
    .hero-grid {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        text-align: center;
        font-size: 56px;
    }

    .hero-subtitle {
        text-align: center;
        margin: 0 auto 40px auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

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

/* Marquee Section */
.marquee-section {
    background-color: var(--color-text-dark);
    color: var(--color-accent-yellow);
    padding: 24px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    transform: rotate(-1deg);
    margin-bottom: 80px;
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 2px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Section Divider */
.section-divider {
    width: 100%;
    margin-bottom: -2px;
    /* Remove gap */
    line-height: 0;
}

.section-divider img {
    width: 100%;
    height: auto;
    display: block;
}

.section-divider.reverse img {
    transform: rotate(180deg);
}

/* Feature Grid */
.features-section {
    padding: 80px 0;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background-color: white;
    padding: 32px;
    border-radius: 24px;
    box-shadow: var(--shadow-card);
}

.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text-dark);
}

.card-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-dark);
    opacity: 0.9;
}

/* Deep Dive Sections (Zig-Zag) */
.deep-dive-section {
    padding: 120px 0;
}

.grid-zig-zag {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Reverse layout for Zag */
.grid-zig-zag.reverse .content-side {
    order: 2;
}

.grid-zig-zag.reverse .visual-side {
    order: 1;
}

.section-tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.section-headline {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.section-body {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.8;
}

.feature-list.big-list li {
    font-size: 18px;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.sub-text {
    display: block;
    font-size: 15px;
    opacity: 0.7;
    font-weight: 400;
    margin-top: 4px;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--color-accent-yellow);
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    flex-shrink: 0;
}

/* Visual Mockups - Enhanced */
.visual-side {
    position: relative;
    height: 100%;
}

.visual-side.centered {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Chat Visual */
.mock-chat-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #F5F5F5;
    padding: 40px;
    border-radius: 32px;
}

.mock-chat {
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-chat.right {
    align-self: flex-end;
    align-items: flex-end;
}

.chat-bubble {
    background-color: white;
    padding: 16px 24px;
    border-radius: 20px 20px 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    font-size: 15px;
    line-height: 1.5;
}

.chat-bubble.right {
    background-color: var(--color-accent-yellow);
    border-radius: 20px 20px 0 20px;
    color: var(--color-text-dark);
}

.chat-user {
    font-size: 12px;
    opacity: 0.6;
    font-weight: 600;
    margin-left: 12px;
}

.chat-user.right {
    margin-right: 12px;
}

/* Doc Stack Visual */
.mock-doc-stack {
    position: relative;
    width: 320px;
    height: 420px;
    margin: 0 auto;
}

.mock-doc {
    width: 300px;
    height: 400px;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    /* Stronger shadow */
    position: absolute;
    border: 1px solid #eee;
    padding: 30px;
}

.mock-doc.back {
    top: 0;
    left: 20px;
    transform: rotate(6deg);
    background-color: #f8f8f8;
}

.mock-doc.middle {
    top: 0;
    left: 10px;
    transform: rotate(3deg);
    background-color: #fcfcfc;
}

.mock-doc.front {
    top: 0;
    left: 0;
    transform: rotate(0deg);
}

.doc-header {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.doc-icon {
    width: 40px;
    height: 40px;
    background-color: var(--color-accent-green);
    border-radius: 8px;
}

.doc-title-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.line {
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    width: 100%;
    margin-bottom: 12px;
}

.line.short {
    width: 60%;
}

.doc-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background-color: var(--color-accent-green);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

/* Video Player Visual */
.mock-video-player {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #222;
    border-radius: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.video-overlay {
    background: radial-gradient(circle, rgba(247, 205, 70, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    width: 80px;
    height: 80px;
    background-color: var(--color-accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    padding-left: 6px;
    cursor: pointer;
    transition: transform 0.2s;
}

.play-button:hover {
    transform: scale(1.1);
}

.live-indicator {
    position: absolute;
    top: 24px;
    left: 24px;
    background-color: #ff0000;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blink {
    animation: blink 2s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.video-caption {
    position: absolute;
    bottom: 24px;
    left: 24px;
    color: white;
    font-weight: 600;
}

/* Audience Section - Corrected Spacing/Typography */
.audience-section {
    padding: 100px 0 120px 0;
    background-color: var(--color-bg-white);
}

.section-title {
    font-size: 32px;
    /* Matched from screenshot */
    font-weight: 800;
    margin-bottom: 60px;
    line-height: 1.1;
    color: #404040;
    text-transform: uppercase;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    /* Tighter gap */
}

.audience-card {
    background-color: var(--color-bg-card-yellow);
    /* #FFF9E5 */
    padding: 60px 40px;
    /* More vertical padding */
    border-radius: 24px;
    text-align: center;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.audience-card:hover {
    transform: translateY(-5px);
}

.audience-card h3 {
    font-size: 28px;
    margin-bottom: 24px;
    font-weight: 700;
    color: #404040;
}

.audience-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #5ea5a;
    max-width: 280px;
}


/* Accordion - Corrected Spacing/Typography */
.accordions-section {
    padding: 120px 0 140px 0;
    max-width: 900px;
    margin: 0 auto;
}

.accordion-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
    /* Standard gap */
}

/* Footer */
.footer {
    background-color: var(--color-text-dark);
    color: var(--color-text-light);
    padding: 100px 0 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--color-accent-yellow);
}

.footer-desc {
    opacity: 0.7;
    max-width: 300px;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 24px;
    color: white;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 16px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--color-accent-yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    text-align: center;
    opacity: 0.5;
    font-size: 14px;
}

.accordion-item {
    background-color: var(--color-bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.02);
    /* Lighter shadow */
}

.accordion-item summary {
    padding: 32px 40px;
    /* Chunky padding */
    font-size: 20px;
    font-weight: 800;
    /* Bold */
    cursor: pointer;
    list-style: none;
    /* Hide default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #404040;
}

.accordion-item summary::after {
    content: "+";
    font-size: 32px;
    font-weight: 400;
    color: var(--color-accent-blue);
    transition: transform 0.2s;
    line-height: 0;
}

.accordion-item[open] summary::after {
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0 40px 32px 40px;
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    border-top: 1px solid transparent;
}

/* SPOTLIGHT EFFECT */
.bento-grid {
    position: relative;
    /* We ensure the grid container handles the hover scope */
}

.bento-item {
    position: relative;
    overflow: hidden;
    background: #FFF;
    transition: background 0.2s, transform 0.2s;
    /* Keep transform transition */
}

/* The glow overlay */
.bento-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(247, 205, 70, 0.1),
            transparent 40%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 2;
}

/* Border highlight */
.bento-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(64, 64, 64, 0.05),
            transparent 40%);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

.bento-grid:hover .bento-item::before,
.bento-grid:hover .bento-item::after {
    opacity: 1;
}

/* PARALLAX ELEMENTS */
.parallax-element {
    transition: transform 0.1s ease-out;
    /* Smooth follow */
    will-change: transform;
}

/* Slightly larger text */
line-height: 1.6;
color: #555;
max-width: 90%;
}

/* CTA Section with Graphic */
.cta-section {
    padding: 120px 0;
    background-color: var(--color-accent-yellow);
    margin-top: 0;
    position: relative;
    overflow: visible;
    /* Allowing elements to pop out if needed */
}

.cta-grid {
    align-items: center;
}

.cta-content h2 {
    font-size: 64px;
    margin-bottom: 24px;
    color: var(--color-text-dark);
    line-height: 1;
}

.cta-content p {
    font-size: 24px;
    margin-bottom: 24px;
    font-weight: 500;
}

.cta-price {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 40px;
}

.cta-section .btn {
    background-color: var(--color-text-dark);
    color: var(--color-text-light);
    transform: scale(1.2);
    transform-origin: left;
}

.guarantee {
    margin-top: 32px;
    font-size: 14px;
    opacity: 0.7;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-visual {
    display: flex;
    justify-content: center;
}

.cta-image {
    max-width: 100%;
    transform: rotate(5deg);
}