/* ============================================
   Casie — Legal Pages
   Clean, modern, professional
   ============================================ */

:root {
    --bg: #0A0A0A;
    --bg-card: #141414;
    --text-primary: #FFFFFF;
    --text-secondary: #A3A3A3;
    --text-muted: #737373;
    --accent: #FFFFFF;
    --accent-light: #E5E5E5;
    --accent-bg: #1A1A1A;
    --border: #262626;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 1px 3px rgba(0,0,0,0.3), 0 4px 12px rgba(0,0,0,0.2);
    --shadow-lg: 0 4px 24px rgba(0,0,0,0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-top: 65px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 11, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    padding: 14px 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 720px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--text-primary);
    color: var(--bg);
    border-radius: 10px;
    font-weight: 700;
    font-size: 18px;
}

.nav-logo {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
}

.footer-logo {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    object-fit: cover;
}

.logo-text {
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        z-index: 101;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--bg-card);
        flex-direction: column;
        gap: 0;
        padding: 80px 32px 32px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 100;
        border-left: 1px solid var(--border);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        padding: 16px 0;
        font-size: 18px;
        border-bottom: 1px solid var(--border);
    }

    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 99;
    }

    .nav-overlay.active {
        display: block;
    }
}

.hero-link {
    display: inline-block;
    margin-top: 20px;
    font-size: 15px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.hero-link:hover {
    color: var(--text-primary);
}

/* ============================================
   HERO (index page)
   ============================================ */

.hero {
    padding: 80px 0 60px;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.casie-orange {
    color: #FF501B;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    box-shadow: var(--shadow);
    text-decoration: none;
    cursor: pointer;
}

.feature-icon {
    font-size: 18px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #E8E8EC;
    color: #0A0A0B;
    text-decoration: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow-lg);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.launch-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 16px 0 20px 0;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

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

.launch-badge {
    font-size: 16px;
}

.launch-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.download-btn svg,
.download-btn img {
    width: 28px;
    height: 32px;
    display: block;
    align-self: center;
    transform: translateY(-3px);
}

/* ============================================
   LEGAL PAGES (privacy & terms)
   ============================================ */

.legal-page {
    padding: 48px 0 80px;
}

.legal-header {
    margin-bottom: 40px;
}

.legal-header h1 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.legal-date {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.legal-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.legal-content h2 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-top: 36px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.legal-content ul {
    margin: 8px 0 16px 20px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 4px;
}

.legal-content a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.highlight-box {
    background: var(--accent-bg);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin: 16px 0;
    border-left: 3px solid var(--text-secondary);
}

.highlight-box p {
    color: var(--text-primary);
    margin-bottom: 0;
    font-size: 14px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    border-top: 1px solid var(--border);
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-name {
    font-weight: 600;
    font-size: 15px;
}

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

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

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

.footer-copy {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 640px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .legal-header h1 {
        font-size: 28px;
    }

    .legal-content {
        padding: 24px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .footer-links {
        gap: 16px;
    }
}

/* ============================================
   APP LOGO (160x160, 4px radius)
   ============================================ */

.app-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.logo-image {
    width: 160px;
    height: 160px;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* ============================================
   PODCAST PREVIEW SECTION
   ============================================ */

.podcast-preview-section {
    padding: 40px 0;
    background: var(--bg);
}

.podcast-player {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.podcast-play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--text-primary);
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.podcast-play-btn:hover {
    background: var(--text-primary);
    color: var(--bg);
}

.podcast-play-btn .hidden {
    display: none;
}

.podcast-waveform {
    flex: 1;
    height: 40px;
    display: flex;
    align-items: center;
}

.waveform-bars {
    display: flex;
    align-items: center;
    gap: 3px;
    width: 100%;
    height: 100%;
}

.waveform-bars span {
    flex: 1;
    background: var(--text-muted);
    border-radius: 2px;
    transition: height 0.3s ease, background 0.2s;
}

.waveform-bars span:nth-child(odd) { height: 40%; }
.waveform-bars span:nth-child(even) { height: 60%; }
.waveform-bars span:nth-child(3n) { height: 80%; }
.waveform-bars span:nth-child(4n) { height: 50%; }
.waveform-bars span:nth-child(5n) { height: 70%; }

.podcast-player.playing .waveform-bars span {
    animation: waveform 0.5s ease-in-out infinite alternate;
}

.podcast-player.playing .waveform-bars span:nth-child(2n) {
    animation-delay: 0.1s;
}

.podcast-player.playing .waveform-bars span:nth-child(3n) {
    animation-delay: 0.2s;
}

@keyframes waveform {
    0% { height: 20%; background: var(--text-muted); }
    100% { height: 90%; background: var(--text-secondary); }
}

.podcast-time {
    font-size: 13px;
    color: var(--text-secondary);
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
    min-width: 80px;
    text-align: right;
}

.podcast-label {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 12px;
}

@media (max-width: 640px) {
    .podcast-player {
        padding: 16px 20px;
        gap: 16px;
    }

    .podcast-play-btn {
        width: 44px;
        height: 44px;
    }

    .podcast-time {
        font-size: 12px;
        min-width: 70px;
    }
}

/* ============================================
   MARQUEE SECTION
   ============================================ */

.marquee-section {
    padding: 40px 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.marquee-row {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.marquee-row::before,
.marquee-row::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 10;
    pointer-events: none;
}

.marquee-row::before {
    left: 0;
    background: linear-gradient(to right, #0A0A0B 10%, transparent 100%);
}

.marquee-row::after {
    right: 0;
    background: linear-gradient(to left, #0A0A0B 10%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 16px;
    width: max-content;
}

.marquee-right .marquee-track {
    animation: marquee-right 120s linear infinite;
}

.marquee-left .marquee-track {
    animation: marquee-left 120s linear infinite;
}

.marquee-item {
    width: 140px;
    height: auto;
    border-radius: 8px;
    flex-shrink: 0;
}

.marquee-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

@keyframes marquee-right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-left {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Pause animation on hover */
.marquee-row:hover .marquee-track {
    animation-play-state: paused;
}

/* ============================================
   SCROLL-DRIVEN PHONE MOCKUP SECTION
   ============================================ */

.features-scroll-section {
    padding: 80px 0;
    background: var(--bg);
}

.features-scroll-container {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 80px;
    align-items: start;
}

/* Left: Text content */
.features-text-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.feature-step {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0;
    opacity: 0.3;
    transition: opacity 0.5s ease;
}

.feature-step.active {
    opacity: 1;
}

.step-number {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.feature-step h2 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.2;
    color: var(--text-primary);
}

.feature-step p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 440px;
}

/* Right: Sticky phone mockup with raw images */
.phone-mockup-container {
    position: sticky;
    top: 80px;
    height: fit-content;
}

.raw-phone-container {
    position: relative;
    width: 260px;
    height: auto;
}

.raw-phone-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.raw-phone-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.raw-phone-img.active {
    opacity: 1;
    position: relative;
}

/* Visibility utilities */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    .features-scroll-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-text-content {
        display: none;
    }

    /* Mobile Single Phone Carousel with raw images */
    .mobile-carousel {
        width: 100%;
        padding: 20px 0;
        touch-action: pan-y;
    }

    .mobile-raw-container {
        position: relative;
        width: 240px;
        margin: 0 auto 32px;
        height: auto;
    }

    .mobile-raw-container img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 12px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

    .mobile-raw-img {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mobile-raw-img.active {
        opacity: 1;
        position: relative;
    }

    .mobile-text-content {
        text-align: center;
        min-height: 140px;
        position: relative;
    }

    .mobile-text-slide {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        pointer-events: none;
    }

    .mobile-text-slide.active {
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
    }

    .mobile-text-slide .step-number {
        font-size: 14px;
        font-weight: 500;
        color: var(--text-muted);
        margin-bottom: 12px;
        display: block;
    }

    .mobile-text-slide h3 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 12px;
        color: var(--text-primary);
    }

    .mobile-text-slide p {
        font-size: 16px;
        color: var(--text-secondary);
        max-width: 300px;
        margin: 0 auto;
        line-height: 1.5;
    }

    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 24px;
    }

    .carousel-dots .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        border: none;
        background: var(--text-muted);
        cursor: pointer;
        transition: background 0.2s, transform 0.2s, width 0.2s;
        padding: 0;
    }

    .carousel-dots .dot.active {
        background: var(--text-primary);
        transform: scale(1.2);
    }

    .feature-step {
        min-height: auto;
        padding: 60px 0;
    }

    .feature-step h2 {
        font-size: 32px;
    }
}

/* ============================================
   ACTORS SECTION
   ============================================ */

.actors-section {
    padding: 100px 0;
    background: var(--bg);
}

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

.actors-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.actors-header p {
    font-size: 16px;
    color: var(--text-secondary);
}

.actors-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.actor-card {
    position: relative;
    width: 180px;
    height: 360px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    z-index: 1;
    transform: scale(1);
}

@media (hover: hover) {
    .actor-card:hover {
        transform: scale(1.1);
        z-index: 100;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    }
}

.actor-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.actor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.actor-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

@media (hover: hover) {
    .actor-card:hover .actor-info {
        opacity: 1;
        transform: translateY(0);
    }
}

.actor-card.playing::after {
    content: '';
    position: absolute;
    top: 16px;
    right: 16px;
    width: 12px;
    height: 12px;
    background: var(--text-primary);
    border-radius: 50%;
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.actor-info h3 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.actor-accent {
    display: inline-block;
    font-size: 13px;
    color: var(--text-secondary);
    background: rgba(255,255,255,0.1);
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.actor-info p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.4;
}

/* Mobile */
@media (max-width: 900px) {
    .actors-section {
        padding: 60px 0;
    }

    .actors-header h2 {
        font-size: 32px;
    }

    .actors-grid {
        position: relative;
        width: 280px;
        height: 360px;
        margin: 0 auto;
        touch-action: pan-y;
        user-select: none;
    }

    .actor-card {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 24px;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
        z-index: 1;
    }

    .actor-card.active {
        opacity: 1;
        pointer-events: auto;
        z-index: 10;
    }

    .actor-card .actor-info {
        opacity: 1;
        transform: translateY(0);
        padding: 20px;
    }

    .actor-info h3 {
        font-size: 24px;
    }

    .actor-accent {
        font-size: 13px;
        padding: 4px 12px;
    }

    .actor-info p {
        font-size: 15px;
    }

    .actors-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-top: 24px;
        width: 100%;
        text-align: center;
    }

    .actors-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--text-muted);
        border: none;
        padding: 0;
        cursor: pointer;
        transition: background 0.2s;
    }

    .actors-dot.active {
        background: var(--text-primary);
    }
}

/* ============================================
   WHY CASIE SECTION
   ============================================ */

.why-section {
    padding: 100px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.why-header h2 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.why-header p {
    font-size: 16px;
    color: var(--text-secondary);
}

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

.why-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
}

.why-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.why-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.why-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .why-section {
        padding: 60px 0;
    }

    .why-header h2 {
        font-size: 32px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 100px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.cta-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.cta-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

@media (max-width: 640px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 28px;
    }
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing-section {
    padding: 100px 0;
    background: var(--bg);
}

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

.pricing-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.pricing-header p {
    font-size: 16px;
    color: var(--text-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: box-shadow 0.2s ease;
}

.pricing-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.popular {
    border: 1px solid var(--text-secondary);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-primary);
    color: var(--bg);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
}

.pricing-card-header {
    margin-bottom: 12px;
}

.pricing-card-header h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
}

.price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-secondary);
}

.pricing-summary {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.5;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-primary);
}

.pricing-features > li > span {
    background: #ffffff;
    color: #0A0A0B;
    border-radius: 5px;
    padding: 4px 10px;
}

.pricing-features svg {
    color: var(--text-secondary);
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-header h2 {
        font-size: 32px;
    }
}
