/* Base Reset and Variables */
:root {
    --bg-primary: #FAFAFA;
    --bg-secondary: #FFFFFF;
    --text-primary: #0A0A0A;
    --text-secondary: #52525B;
    --text-muted: #A1A1AA;
    
    --accent-light: #6366F1;
    --accent-dark: #4338CA;
    --accent-gradient: linear-gradient(135deg, #6366F1, #3B82F6);
    --glow-color: rgba(99, 102, 241, 0.3);
    
    --border-color: rgba(0,0,0,0.06);
    --border-highlight: rgba(99, 102, 241, 0.3);
    
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.03);
    --shadow-md: 0 12px 30px rgba(0,0,0,0.06);
    --shadow-glass: 0 8px 32px rgba(31, 38, 135, 0.05);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --nav-height: 80px;
    --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', 'Inter', sans-serif;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

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

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

/* Animations Base */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpAnim 0.8s var(--transition-smooth) forwards;
    animation-delay: var(--delay, 0s);
}
.fade-in {
    opacity: 0;
    animation: fadeInAnim 1s ease-out forwards;
    animation-delay: var(--delay, 0s);
}

.fade-up-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}
.fade-up-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delay modifiers */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

@keyframes fadeUpAnim {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInAnim {
    to { opacity: 1; }
}

/* Typography utilities */
.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.align-center { text-align: center; }
.align-right { text-align: right; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--text-primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}
.btn-primary span, .btn-primary svg {
    position: relative;
    z-index: 2;
}
.btn-primary:hover::before {
    opacity: 1;
}
.btn-primary:hover {
    box-shadow: 0 6px 20px var(--glow-color);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}
.btn-ghost:hover {
    color: var(--text-primary);
    background: rgba(0,0,0,0.03);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 12px;
}
.btn-massive {
    padding: 20px 48px;
    font-size: 1.2rem;
    border-radius: 100px; /* pill shape */
    background: #fff;
    color: #000;
}
.btn-massive::before { display: none; }
.btn-massive:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(255,255,255,0.2);
}

/* Magnetic Button Wrapper */
.magnetic-btn {
    /* JS will handle transform */
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    height: var(--nav-height);
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: background 0.3s, border 0.3s, backdrop-filter 0.3s;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.brand-logo {
    height: 32px;
    width: auto;
    filter: invert(1) brightness(0.1); /* Assuming logo is white, make it dark */
    transition: transform 0.3s ease;
}
.brand-logo:hover {
    transform: scale(1.05);
}
.nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Hero Section */
.hero {
    padding-top: calc(var(--nav-height) + 20px);
    padding-bottom: 40px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -20%; left: 10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    z-index: -1;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(0,0,0,0.03);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 24px;
}
.pulse-dot {
    width: 8px; height: 8px;
    background-color: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    animation: pulseObj 2s infinite;
}
@keyframes pulseObj {
    70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero h1 {
    font-size: clamp(1.8rem, 2.8vw, 3.2rem);
    margin-bottom: 24px;
    line-height: 1.15;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 90%;
}
.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.cta-note {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* V2 Form Mockup UI */
.hero-visual {
    position: relative;
    height: 550px;
    perspective: 1200px;
}
.form-container {
    position: absolute;
    right: 5%; top: 5%;
    width: 500px;
    height: 380px;
    background: #FAFAFA;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.05);
    display: flex;
    overflow: hidden;
    transform: rotateY(-12deg) rotateX(4deg) translateZ(0);
    transition: transform 0.1s;
    z-index: 2;
}
.form-sidebar {
    width: 180px;
    background: #233659;
    color: white;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.sidebar-header {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
}
.step-item {
    display: flex; gap: 10px; opacity: 0.5; align-items: flex-start;
}
.step-item.active { opacity: 1; background: rgba(0,0,0,0.2); padding: 8px; border-radius: 8px; margin: -8px; }
.step-item.checked { opacity: 0.9; }
.step-circle {
    width: 20px; height: 20px; border-radius: 50%;
    background: rgba(255,255,255,0.1); font-size: 0.6rem;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.step-item.active .step-circle { background: white; color: #233659; font-weight: bold; }
.step-item.checked .step-circle { background: #10B981; color: white; }
.step-info { display: flex; flex-direction: column; }
.step-info strong { font-size: 0.75rem; line-height: 1.2; }
.step-info span { font-size: 0.6rem; opacity: 0.7; }

.form-content {
    flex: 1; padding: 24px;
    display: flex; flex-direction: column;
}
.form-progress-bar { margin-bottom: 24px; }
.progress-labels { display: flex; justify-content: space-between; font-size: 0.6rem; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; align-items: center; }
.step-name { color: #5C4DFF; }
.progress-pill { background: #fff; padding: 2px 8px; border-radius: 12px; border: 1px solid var(--border-color); color: #111; }
.progress-track { height: 6px; background: #E5E7EB; border-radius: 4px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, #3B82F6, #6366F1); border-radius: 4px; }

.form-body { flex: 1; display: flex; flex-direction: column; }
.form-title { font-size: 1.4rem; font-weight: 800; text-align: center; margin-bottom: 24px; color: #111; }

.input-group { margin-bottom: 16px; }
.input-group label { display: block; font-size: 0.6rem; font-weight: 700; color: var(--text-secondary); margin-bottom: 6px; letter-spacing: 0.05em; }
.input-field { background: #F4F6F8; border: 1px solid #10B981; border-radius: 6px; padding: 8px 12px; font-size: 0.75rem; color: #111; }
.row-group { display: flex; gap: 12px; }
.w-full { flex: 1; }

.form-actions { margin-top: auto; display: flex; gap: 12px; }
.form-btn-white { flex: 1; background: #fff; text-align: center; padding: 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.form-btn-purple { flex: 1; background: #5C4DFF; color: white; text-align: center; padding: 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; box-shadow: 0 4px 10px rgba(92, 77, 255, 0.3); }

/* V2 PDF Card (Replaces mockup-card) */
.pdf-card {
    position: absolute;
    left: 2%; bottom: 5%;
    background: #fff;
    width: 250px;
    padding: 24px;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: rotateY(-5deg) translateZ(60px);
    z-index: 3;
    animation: floatAnim 5s ease-in-out infinite;
    border: 1px solid var(--border-color);
    font-family: 'Merriweather', serif;
}
.pdf-inner { display: flex; flex-direction: column; gap: 8px; }
.pdf-title { font-size: 0.75rem; font-weight: 700; text-align: center; color: #111; line-height: 1.3; }
.pdf-subtitle { font-size: 0.55rem; text-align: center; color: #555; margin-bottom: 8px; }
.pdf-heading { font-size: 0.65rem; font-weight: 700; text-align: center; margin: 8px 0; }
.pdf-text { font-size: 0.5rem; line-height: 1.5; color: #333; }
.pdf-badge { position: absolute; top: -10px; right: -10px; background: #10B981; color: white; font-family: 'Inter', sans-serif; font-size: 0.6rem; font-weight: bold; padding: 4px 8px; border-radius: 12px; box-shadow: 0 4px 10px rgba(16,185,129,0.3); }

.glow-bg {
    position: absolute;
    right: 15%; top: 30%;
    width: 200px; height: 200px;
    background: var(--accent-light);
    filter: blur(80px);
    opacity: 0.2;
    z-index: 1;
}

/* Trust Strip */
.trust-strip {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: #fff;
    text-align: center;
}
.trust-title {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}
.trust-tags {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.tag {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    opacity: 0.6;
    transition: opacity 0.3s;
}
.tag:hover { opacity: 1; }

/* Value Section */
.value-section {
    padding: 100px 24px;
    max-width: 800px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
}
.section-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
}

/* Bento Grid / Benefits */
.benefits-section {
    padding-bottom: 120px;
}
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(250px, auto);
    gap: 24px;
}
.bento-item {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex; flex-direction: column;
}
.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-highlight);
}
.bento-large {
    grid-column: span 3;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}
@media (max-width: 900px) {
    .bento-large { flex-direction: column; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-large { grid-column: span 1; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-cta { justify-content: center; }
    .hero-visual { height: 350px; }
    .form-container { right: auto; left: 50%; transform: translateX(-50%) scale(0.85); transform-origin: top center; }
    .pdf-card { display: none; }
    .form-sidebar { display: none; }
    .nav-actions .btn-ghost { display: none; }
    .pdf-large { transform: none; padding: 32px 20px; box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
    .preview-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    .details-grid { grid-template-columns: 1fr; }
}

.bento-content { flex: 1; z-index: 2; position: relative; }
.bento-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: #F4F4F5;
    color: var(--accent-light);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
}
.bento-icon svg { width: 24px; height: 24px; }
.bento-item h3 { font-size: 1.5rem; margin-bottom: 12px; }
.bento-item p { color: var(--text-secondary); font-size: 0.95rem; }

.bento-visual {
    flex: 1;
    min-width: 300px;
    height: 100%;
    background: #FAFAFA;
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border-color);
}
.mini-doc {
    background: white; width: 200px; padding: 20px;
    border-radius: 8px; box-shadow: var(--shadow-sm);
}
.line { height: 6px; background: #E5E7EB; margin-bottom: 8px; border-radius: 4px; }
.w-80 { width: 80%; }
.w-60 { width: 60%; }
.w-100 { width: 100%; }
.line.highlight {
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-dark);
    font-size: 0.5rem; font-weight: 700; height: auto;
    padding: 4px 6px; border-left: 2px solid var(--accent-dark);
    margin: 12px 0;
}

/* Details Section */
.details-section {
    padding: 100px 0;
    background: #fff;
    border-top: 1px solid var(--border-color);
}
.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.feature-list {
    list-style: none; margin-top: 40px;
    display: flex; flex-direction: column; gap: 24px;
}
.feature-item {
    display: flex; gap: 16px; align-items: flex-start;
}
.check {
    width: 28px; height: 28px;
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: bold; font-size: 0.8rem;
    flex-shrink: 0;
}
.feature-item strong { display: block; font-size: 1.1rem; margin-bottom: 4px; }
.feature-item span { color: var(--text-secondary); font-size: 0.95rem; }

/* Sequence Box */
.sequence-box {
    position: relative;
    padding: 40px;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}
.seq-item {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 24px;
    opacity: 0.5; transition: opacity 0.5s, transform 0.5s;
}
.seq-item.active { opacity: 1; transform: translateX(10px); }
.seq-item:last-child { margin-bottom: 0; }
.seq-icon {
    width: 32px; height: 32px; background: #fff; border: 2px solid var(--border-color);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: bold; position: relative; z-index: 2;
}
.seq-item.active .seq-icon {
    border-color: var(--text-primary); background: var(--text-primary); color: white;
}
.seq-text { font-weight: 600; font-size: 1.1rem; }
.seq-conn {
    position: absolute; left: 55px; width: 2px; height: 30px;
    background: var(--border-color);
    margin-top: -30px; margin-bottom: 8px; z-index: 1;
}

/* CTA Section */
.cta-section {
    padding: 120px 24px;
}
.cta-container.glow-panel {
    background: #000;
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-content { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }
.cta-content h2 { font-size: 2.5rem; margin-bottom: 24px; }
.cta-content p { font-size: 1.1rem; color: #A1A1AA; margin-bottom: 40px; }
.deco-mesh {
    position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.2) 0%, transparent 60%);
    z-index: 1; pointer-events: none;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    background: #fff;
    padding: 80px 0 24px;
}
.footer-content {
    display: flex; justify-content: space-between;
    flex-wrap: wrap; gap: 40px; margin-bottom: 80px;
}
.footer-left { max-width: 300px; }
.footer-logo { filter: invert(1) brightness(0.1); margin-bottom: 16px; height: 24px; }
.footer-desc { color: var(--text-secondary); font-size: 0.9rem; }
.footer-links { display: flex; gap: 80px; }
.link-group h4 { margin-bottom: 16px; font-size: 0.9rem; color: var(--text-primary); }
.link-group a {
    display: block; color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 12px;
    transition: color 0.2s;
}
.link-group a:hover { color: var(--text-primary); }
.footer-bottom { border-top: 1px solid var(--border-color); padding-top: 24px; text-align: center; color: var(--text-muted); font-size: 0.85rem; }

/* Contract Preview Section CSS */
.contract-preview-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #FAFAFA, #FFFFFF);
    border-top: 1px solid var(--border-color);
}
.preview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.preview-text .section-title { font-size: 2.5rem; margin-bottom: 24px; }
.preview-features { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.p-feature strong { display: block; font-size: 1.1rem; margin-bottom: 4px; color: #111; }
.p-feature span { color: var(--text-secondary); font-size: 0.95rem; }

.pdf-large {
    background: #fff;
    padding: 40px 40px 60px;
    border: 1px solid var(--border-color);
    box-shadow: 0 24px 48px rgba(0,0,0,0.08);
    font-family: 'Merriweather', serif;
    border-radius: 4px;
    position: relative;
    transition: transform 0.5s;
}
.pdf-large:hover { transform: translateY(-5px); }
.pdf-large::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 6px; background: #ccc; border-radius: 4px 4px 0 0; }
.pdf-head { text-align: center; margin-bottom: 40px; border-bottom: 1px solid #E5E7EB; padding-bottom: 24px; }
.pdf-head h3 { font-size: 1.3rem; margin-bottom: 8px; color: #111; }
.pdf-head p { font-size: 0.9rem; color: #555; }
.pdf-body h4 { font-size: 1.1rem; text-align: center; margin-bottom: 24px; color: #111; }
.pdf-body p { font-size: 0.85rem; line-height: 1.6; margin-bottom: 16px; color: #333; }
.pdf-body ul { margin: 16px 0 24px 24px; font-size: 0.85rem; color: #333; line-height: 1.8; }
.signature-block { display: flex; justify-content: space-between; margin-top: 48px; }
.sig-line { width: 45%; text-align: center; }
.sig-line span { font-size: 0.75rem; font-weight: bold; color: #333; }
.line-dots { border-bottom: 1px dashed #666; margin: 32px 0 8px; }
.sig-line p { font-size: 0.8rem; font-weight: bold; }

@media (max-width: 900px) {
    .preview-grid { grid-template-columns: 1fr; }
    .form-container { right: auto; left: 50%; transform: translateX(-50%) scale(0.8); }
    .pdf-card { left: 50%; transform: translateX(-50%) translateY(180px); }
    .hero-visual { height: 600px; }
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: #fff;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 60px auto 0;
    align-items: center;
}
.pricing-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.pricing-card.popular {
    border-color: var(--accent-light);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
    transform: scale(1.05);
}
.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}
.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-primary);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}
.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}
.price {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    line-height: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 16px;
}
.price span {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-top: 8px;
}
.pricing-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    flex: 1;
}
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}
.pricing-features li.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
}
.pricing-features li.disabled.red-cross {
    color: #ef4444;
}
.pricing-features .check {
    color: #10B981;
    font-weight: bold;
    width: 20px;
}
.pricing-features .cross {
    color: var(--text-muted);
    font-weight: bold;
    width: 20px;
}
.pricing-features li.disabled.red-cross .cross {
    color: #ef4444;
}
.btn-full {
    width: 100%;
    margin-top: auto;
}
.pricing-card.popular .btn-primary {
    background: var(--accent-gradient);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}
.pricing-card.popular .btn-primary:hover {
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card.popular {
        transform: scale(1);
    }
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
}
