/* ==========================================================================
   Base Styles
   ========================================================================== */
:root {
    --primary-orange: #F15A24;
    --primary-orange-hover: #E04E1E;
    --shadow-orange: #F9CEAB;
    --bg-color: #FFFBF8;
    --text-dark: #1A1A1A;
    --text-muted: #4A4A4A;
    --border-light: #EFEFEF;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==========================================================================
   Top Banner (Parity Deals)
   ========================================================================== */
.top-banner {
    background-color: #111111;
    color: #FFFFFF;
    font-size: 0.85rem;
    padding: 10px 20px;
    font-family: 'Inter', sans-serif;
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-left {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    color: #A0A0A0;
}

.banner-link {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.bolt {
    color: #F15A24;
}

.banner-center {
    text-align: center;
    font-weight: 400;
    color: #E0E0E0;
}

.banner-center strong {
    color: #FFFFFF;
    font-weight: 600;
}

.banner-right {
    display: flex;
    align-items: center;
}

.close-banner {
    background: none;
    border: none;
    color: #A0A0A0;
    font-size: 1rem;
    cursor: pointer;
    padding: 4px;
}

.close-banner:hover {
    color: #FFFFFF;
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
    background-color: transparent;
    padding: 20px 0;
    border-bottom: 1px solid #F0ECE6;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.1;
    color: var(--text-dark);
}

.logo-bold {
    font-weight: 700;
}

.logo-light {
    font-weight: 400;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: color 0.2s;
}

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

.nav-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn {
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.btn-login {
    background-color: #FFFFFF;
    border: 1px solid #EAEAEA;
    color: var(--text-dark);
}

.btn-login:hover {
    border-color: #CCCCCC;
}

.btn-enroll {
    background-color: var(--primary-orange);
    border: 1px solid var(--primary-orange);
    color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(241, 90, 36, 0.2);
}

.btn-enroll:hover {
    background-color: var(--primary-orange-hover);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.hero-container {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Badge area */
.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.laurel {
    height: 40px;
    width: auto;
}

.badge-text-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stars {
    font-size: 1.2rem;
    color: var(--text-dark);
    letter-spacing: 2px;
}

.badge-text {
    font-family: 'Newsreader', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

/* Headline */
.hero h1 {
    font-family: 'Newsreader', serif;
    font-size: clamp(3rem, 5vw, 4.2rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--text-dark);
    margin-bottom: 24px;
    max-width: 900px;
}

/* Subheadline */
.subheadline {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 600px;
    letter-spacing: -0.01em;
}

/* 3D Button */
.hero-button-area {
    margin-bottom: 40px;
}

.btn-3d {
    background-color: var(--primary-orange);
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    padding: 18px 48px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    position: relative;
    /* The 3D shadow is offset to the bottom left */
    box-shadow: -8px 8px 0px var(--shadow-orange);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.btn-3d:active {
    transform: translate(-4px, 4px);
    box-shadow: -4px 4px 0px var(--shadow-orange);
}

/* Video Player */
.video-container {
    width: 100%;
    max-width: 900px;
    margin: 60px auto 80px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background-color: #000;
}

.video-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumbnail-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding-top: 24px;
    padding-bottom: 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 30%, rgba(255, 255, 255, 0) 100%);
    color: #000;
}

.thumb-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.thumb-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.4;
}

.play-button-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.5);
    padding: 12px 36px;
    border-radius: 100px;
    position: relative;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: transform 0.2s ease;
}

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

.play-text {
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.play-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(241, 90, 36, 0.4);
}

.play-circle svg {
    margin-left: 4px;
    /* optical center */
}

/* Testimonial */
.hero-testimonial {
    max-width: 700px;
    margin: 0 auto 80px;
    text-align: center;
}

.testimonial-text {
    font-family: 'Newsreader', serif;
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-bottom: 12px;
}

.author-name {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.author-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Brutal Truths Section */
.brutal-truths {
    padding: 80px 20px;
    background-color: var(--bg-color);
}

.truths-header {
    text-align: center;
    margin-bottom: 60px;
}

.truths-header h2 {
    font-family: 'Newsreader', serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.truths-header p {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.truths-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.truth-card {
    background-color: #FFF3EB;
    /* Light peach container */
    border-radius: 20px;
    padding: 32px;
    display: flex;
    gap: 32px;
    position: relative;
    overflow: hidden;
}

.truth-number {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Newsreader', serif;
    font-size: 250px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1;
    z-index: 0;
    opacity: 0.8;
}

.truth-left {
    flex: 1.2;
    position: relative;
    z-index: 1;
    padding: 20px 0;
}

.truth-left h3 {
    font-family: 'Newsreader', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.truth-left p {
    font-family: 'Newsreader', serif;
    font-size: 1.15rem;
    line-height: 1.5;
    color: var(--text-dark);
}

.truth-right {
    flex: 0.8;
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 32px 24px;
    border: 1px solid #F0ECE6;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.leads-to {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #888888;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.truth-right p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Perfect Fit Section */
.perfect-fit-section {
    padding: 80px 20px;
    background-color: var(--bg-color);
}

.pf-container {
    max-width: 900px;
    margin: 0 auto;
}

.pf-subtitle {
    font-family: 'Inter', sans-serif;
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-bottom: 8px;
}

.pf-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 60px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.text-orange {
    color: var(--primary-orange);
}

.pf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.pf-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.pf-header {
    padding: 16px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    color: white;
}

.header-orange {
    background-color: var(--primary-orange);
}

.header-black {
    background-color: #111111;
}

.pf-body {
    background-color: #FFFFFF;
    padding: 32px 40px;
    flex: 1;
}

.border-orange {
    border: 2px solid var(--primary-orange);
    border-top: none;
    border-radius: 0 0 12px 12px;
}

.border-black {
    border: 2px solid #111111;
    border-top: none;
    border-radius: 0 0 12px 12px;
}

.pf-list {
    list-style: none;
}

.pf-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.pf-list li:last-child {
    margin-bottom: 0;
}

.pf-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.icon-check {
    background-color: var(--primary-orange);
}

.icon-cross {
    background-color: transparent;
    color: #FF4D4D;
    /* Red cross */
}

/* Curriculum Section */
.curriculum-section {
    padding: 80px 20px;
    background-color: var(--bg-color);
    background-image: radial-gradient(#EAEAEA 1px, transparent 1px);
    background-size: 24px 24px;
}

.curr-header {
    text-align: center;
    margin-bottom: 60px;
}

.curr-subtitle {
    font-family: 'Inter', sans-serif;
    color: #888;
    font-size: 1rem;
    margin-bottom: 12px;
}

.curr-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
    letter-spacing: -0.03em;
}

.curr-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.curr-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.curr-item {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    border: 1px solid #F0ECE6;
    transition: transform 0.2s, box-shadow 0.2s;
}

.curr-item-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    width: 100%;
}

.curr-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.curr-item-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.curr-item-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #888;
}

.curr-plus {
    background-color: #F5F5F5;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #666;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.curr-item.active .curr-plus {
    transform: rotate(45deg);
}

.curr-item-body {
    display: none;
    background-color: #F4F4F4;
    border-radius: 8px;
    padding: 16px 20px;
    margin-top: 16px;
}

.curr-item.active .curr-item-body {
    display: block;
}

.curr-sublist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.curr-sublist li {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #111;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.4;
    font-weight: 500;
}

.curr-sublist li:last-child {
    margin-bottom: 0;
}

.curr-sub-num {
    color: #888;
    font-weight: 600;
    font-size: 0.85rem;
}

.curr-sticky {
    flex: 0.9;
    position: sticky;
    top: 40px;
}

.pricing-card {
    background-color: #111111;
    border-radius: 16px;
    overflow: hidden;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pc-top {
    padding: 40px 40px 32px;
    position: relative;
}

.pc-badge {
    display: inline-block;
    background-color: var(--primary-orange);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.pc-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: -0.03em;
}

.pc-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
}

.pcf-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pcf-icon {
    font-size: 1.2rem;
}

/* AI Overlay Badge */
.cursor-overlay {
    position: absolute;
    top: 24px;
    right: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

.cursor-badge {
    background-color: white;
    color: black;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.pc-divider {
    height: 1px;
    background-color: #2A2A2A;
}

.pc-bottom {
    padding: 32px 40px 40px;
}

.pc-overview-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.pc-list {
    list-style: none;
    margin-bottom: 32px;
}

.pc-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
}

.pc-list li:last-child {
    margin-bottom: 0;
}

.pc-check {
    background-color: white;
    color: black;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.pc-btn {
    width: 100%;
    background-color: var(--primary-orange);
    color: white;
    border: none;
    padding: 12px 12px 12px 24px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

.pc-btn:hover {
    background-color: var(--primary-orange-hover);
}

.pc-btn-arrow {
    background-color: white;
    color: var(--primary-orange);
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 20px;
    background-color: var(--bg-color);
}

.benefits-header {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-title {
    font-family: 'Newsreader', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.benefits-subtitle {
    font-family: 'Inter', sans-serif;
    color: #666;
    font-size: 1rem;
}

.benefits-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #F0ECE6;
}

.benefit-icon {
    color: var(--primary-orange);
    margin-bottom: 24px;
}

.benefit-card h3 {
    font-family: 'Newsreader', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.benefit-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Instructor Section */
.instructor-section {
    padding: 100px 20px;
    background-color: var(--bg-color);
}

.instructor-main-title {
    text-align: center;
    font-family: 'Newsreader', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 60px;
    letter-spacing: -0.03em;
}

.instructor-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.instructor-left {
    flex: 1.5;
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #F0ECE6;
}

.instructor-left h3 {
    font-family: 'Newsreader', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.instructor-left p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
}

.instructor-left p:last-child {
    margin-bottom: 0;
}

.instructor-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.instructor-photo {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #F0ECE6;
}

.instructor-photo img {
    width: 100%;
    border-radius: 8px;
    display: block;
    object-fit: cover;
}

.instructor-testimonial {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #F0ECE6;
    display: flex;
    flex-direction: column;
}

.inst-test-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 24px;
}

.inst-test-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.inst-test-author img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.inst-test-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

.inst-test-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.inst-page-line {
    height: 2px;
    width: 32px;
    background-color: #E0E0E0;
    border-radius: 2px;
}

.inst-page-line.active {
    background-color: #333;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 20px;
    background-color: var(--bg-color);
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-main-title {
    font-family: 'Newsreader', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.pricing-subtitle {
    font-family: 'Inter', sans-serif;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.pricing-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.pricing-plan {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #F0ECE6;
    display: flex;
    flex-direction: column;
}

.plan-title-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.plan-title {
    font-family: 'Newsreader', serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.plan-title-area .plan-title {
    margin-bottom: 0;
}

.plan-badge {
    background-color: var(--primary-orange);
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.plan-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 24px;
}

.plan-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.price-old {
    font-family: 'Newsreader', serif;
    font-size: 1.8rem;
    color: #A0A0A0;
    text-decoration: line-through;
}

.price-new {
    font-family: 'Newsreader', serif;
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--text-dark);
}

.plan-includes-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 40px;
    flex-grow: 1;
}

.plan-features li {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #444;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    line-height: 1.4;
}

.plan-features li:last-child {
    margin-bottom: 0;
}

.plan-check {
    margin-top: 2px;
    color: var(--primary-orange);
}

.plan-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 40px;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
}

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

.btn-dark {
    background-color: #222222;
    color: #FFFFFF;
}

.btn-dark:hover {
    background-color: #111111;
}

.btn-orange {
    background-color: var(--primary-orange);
    color: #FFFFFF;
}

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

/* Testimonials Marquee Section */
.testimonials-marquee-section {
    padding: 80px 0;
    background-color: var(--bg-color);
    overflow: hidden;
}

.test-marquee-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.test-main-title {
    font-family: 'Newsreader', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.test-subtitle {
    font-family: 'Inter', sans-serif;
    color: #555;
    font-size: 1rem;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-left 40s linear infinite;
    gap: 32px;
    padding: 0 16px;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

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

.marquee-card {
    width: 380px;
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #F0ECE6;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.tilt-left {
    transform: rotate(-2deg);
}

.tilt-right {
    transform: rotate(2deg);
}

.mc-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.mc-top img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.mc-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mc-author strong {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.mc-author span {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #666;
}

.mc-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 24px;
}

.mc-bottom {
    display: flex;
    gap: 12px;
}

.mc-icon {
    font-size: 1.2rem;
    color: #666;
}

/* FAQ Section */
.faq-section {
    padding: 100px 20px;
    background-color: var(--bg-color);
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-badge {
    background-color: #111111;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.faq-title {
    font-family: 'Newsreader', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.faq-subtitle {
    font-family: 'Inter', sans-serif;
    color: #444;
    font-size: 1rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #EAEAEA;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.faq-item-top {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-item-top h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    padding-right: 20px;
}

.faq-plus {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    font-weight: 300;
    transition: transform 0.3s ease;
}

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

.faq-item-body {
    display: none;
    padding: 0 32px 24px;
}

.faq-item.active .faq-item-body {
    display: block;
}

.faq-item-body p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Footer */
.site-footer {
    padding: 80px 20px 40px;
    background-color: var(--bg-color);
    max-width: 1100px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #555;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--text-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
}

.footer-bottom p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #666;
}

.social-icon {
    color: #555;
    transition: color 0.2s;
}

.social-icon:hover {
    color: var(--text-dark);
}

/* Bottom CTA Section */
.bottom-cta {
    padding: 80px 20px 120px;
    text-align: center;
    background-color: var(--bg-color);
    position: relative;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-heading {
    font-family: 'Newsreader', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 32px;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.cta-btn {
    font-size: 1.15rem;
    padding: 16px 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .subheadline {
        font-size: 1rem;
    }

    .btn-3d {
        font-size: 1.2rem;
        padding: 16px 40px;
        box-shadow: -6px 6px 0px var(--shadow-orange);
    }

    .testimonial-text {
        font-size: 1.2rem;
        padding: 0 20px;
    }

    .video-container {
        margin: 40px 20px;
        width: calc(100% - 40px);
    }

    .truth-card {
        flex-direction: column;
        padding: 24px;
    }

    .truth-number {
        font-size: 180px;
        top: -20px;
        transform: none;
    }

    .truth-left {
        padding: 10px 0;
    }

    .bottom-cta {
        padding: 60px 20px 80px;
    }

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

    .curr-grid {
        flex-direction: column;
    }

    .pc-top,
    .pc-bottom {
        padding: 24px;
    }

    .cursor-overlay {
        right: 16px;
    }

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

    .instructor-grid {
        flex-direction: column;
    }

    .instructor-left {
        padding: 24px;
    }

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

    .marquee-card {
        width: 300px;
        padding: 24px;
    }

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .instructor-grid {
        flex-direction: column;
    }
}