/* ===================================
   BoostRevisions - Design System
   Theme: Warm & Energetic
   =================================== */

:root {
    /* Colors - Warm Cream & Orange */
    --bg-main: #fffbf5;
    --bg-cream: #fef7ed;
    --bg-card: #ffffff;
    --bg-dark: #1a1a1a;
    
    --text-primary: #1a1a1a;
    --text-secondary: #5a5a5a;
    --text-muted: #8a8a8a;
    --text-inverse: #ffffff;
    
    --accent-primary: #ff6b35;
    --accent-secondary: #f7c948;
    --accent-gradient: linear-gradient(135deg, #ff6b35 0%, #f7c948 100%);
    --accent-light: #fff3ed;
    
    --success: #22c55e;
    --error: #ef4444;
    
    --border-color: #e5e5e5;
    --border-light: rgba(0,0,0,0.06);
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-card: 0 2px 8px rgba(0,0,0,0.06), 0 0 1px rgba(0,0,0,0.1);
    
    /* Typography */
    --font-main: 'Outfit', -apple-system, sans-serif;
    --font-serif: 'DM Serif Display', Georgia, serif;
    
    /* Sizing */
    --max-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

ul { list-style: none; }
img { max-width: 100%; height: auto; }

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }

em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--accent-primary);
}

/* ===================================
   Navbar
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 251, 245, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
}

.nav-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-mark {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    color: white;
    font-weight: 800;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
}

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

.nav-menu a {
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
}

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

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

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

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
}

/* ===================================
   Comparison Banner
   =================================== */
.comparison-banner {
    position: relative;
    margin-top: 73px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 16px 24px;
    overflow: hidden;
}

.comparison-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.banner-content {
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.banner-icon {
    font-size: 1.8rem;
    animation: rocketBounce 2s ease-in-out infinite;
}

@keyframes rocketBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-4px) rotate(5deg); }
}

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

.banner-highlight {
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.banner-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.banner-badge {
    padding: 8px 16px;
    background: var(--success);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    white-space: nowrap;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

/* ===================================
   Buttons
   =================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--accent-gradient);
    color: white;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.35);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.btn-text {
    padding: 12px 16px;
    background: none;
    border: none;
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.2s;
}

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

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: var(--accent-gradient);
    color: white;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
    border-radius: var(--radius-lg);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    padding: 80px 24px 80px;
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-main) 100%);
}

.hero-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    max-width: 560px;
}

.badge-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--accent-light);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-primary);
    margin-bottom: 24px;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero h1 {
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.highlight {
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 12px;
    background: var(--accent-secondary);
    opacity: 0.4;
    z-index: -1;
    border-radius: 4px;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-form {
    margin-bottom: 32px;
}

.input-wrapper {
    display: flex;
    gap: 12px;
    padding: 8px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: border-color 0.2s;
}

.input-wrapper:focus-within {
    border-color: var(--accent-primary);
}

.input-wrapper input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    font-family: var(--font-main);
    font-size: 1rem;
    outline: none;
    background: transparent;
}

.hero-note {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 24px;
}

.avatars {
    display: flex;
    align-items: center;
}

.avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -12px;
    object-fit: cover;
}

.avatars img:first-child {
    margin-left: 0;
}

.avatar-count {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    margin-left: -12px;
    border: 3px solid white;
}

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

.stars {
    color: var(--accent-secondary);
    font-size: 1rem;
    letter-spacing: 2px;
}

.rating span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Demo Window */
.hero-right {
    perspective: 1000px;
}

.demo-window {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s;
}

.demo-window:hover {
    transform: rotateY(0) rotateX(0);
}

.window-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #f5f5f5;
    border-bottom: 1px solid var(--border-color);
}

.window-dots {
    display: flex;
    gap: 8px;
}

.window-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.window-dots span:nth-child(1) { background: #ff5f57; }
.window-dots span:nth-child(2) { background: #febc2e; }
.window-dots span:nth-child(3) { background: #28c840; }

.window-title {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.window-content {
    padding: 24px;
}

.demo-input-section {
    margin-bottom: 20px;
}

.demo-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.demo-text {
    padding: 16px;
    background: #f9f9f9;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-left: 3px solid var(--accent-primary);
}

.demo-arrow {
    text-align: center;
    padding: 12px;
    color: var(--accent-primary);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

.output-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.output-tabs span {
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s;
}

.output-tabs span.active {
    background: var(--accent-light);
    color: var(--accent-primary);
}

.output-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.output-card {
    padding: 16px;
    background: var(--bg-cream);
    border-radius: var(--radius-md);
}

.output-card h4 {
    font-size: 0.85rem;
    margin-bottom: 12px;
    color: var(--accent-primary);
}

.output-card ul {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.output-card li {
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
}

.output-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
}

/* Universities */
.hero-universities {
    max-width: var(--max-width);
    margin: 60px auto 0;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.hero-universities p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.uni-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.uni-list span {
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.5;
    transition: opacity 0.2s;
}

.uni-list span:hover {
    opacity: 1;
}

/* ===================================
   Section Styles
   =================================== */
section {
    padding: 100px 24px;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent-light);
    color: var(--accent-primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 16px;
}

/* ===================================
   Bento Grid Features
   =================================== */
.features {
    background: var(--bg-cream);
}

.bento-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.bento-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-wide {
    grid-column: span 2;
}

.bento-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.bento-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.bento-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.bento-visual {
    margin-top: 24px;
}

.speed-demo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.speed-bar {
    flex: 1;
    height: 8px;
    background: #eee;
    border-radius: 100px;
    overflow: hidden;
}

.speed-fill {
    width: 0;
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 100px;
    animation: fillBar 2s ease forwards infinite;
}

@keyframes fillBar {
    0% { width: 0; }
    100% { width: 100%; }
}

.speed-demo span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-primary);
    white-space: nowrap;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.tag {
    padding: 8px 14px;
    background: var(--bg-cream);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ===================================
   Timeline / How it Works
   =================================== */
.how-it-works {
    background: white;
}

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

.timeline-step {
    display: grid;
    grid-template-columns: 80px 1fr 300px;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

.timeline-step:last-child {
    border-bottom: none;
}

.step-marker {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
}

.step-content h3 {
    margin-bottom: 12px;
}

.step-content p {
    color: var(--text-secondary);
}

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

.upload-box {
    padding: 24px 40px;
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
}

.upload-box span {
    font-size: 2rem;
}

.upload-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.ai-processing {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--accent-light);
    border-radius: var(--radius-md);
}

.processing-dot {
    width: 12px;
    height: 12px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: pulse 1s ease-in-out infinite;
}

.ai-processing span {
    font-weight: 500;
    color: var(--accent-primary);
}

.result-preview {
    display: flex;
    gap: 12px;
}

.result-preview span {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
}

.cta-center {
    text-align: center;
    margin-top: 60px;
}

/* ===================================
   Testimonials
   =================================== */
.testimonials {
    background: var(--bg-cream);
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

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

.testimonial-card {
    flex-shrink: 0;
    width: 360px;
    padding: 32px;
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
}

.testimonial-rating {
    color: var(--accent-secondary);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-card > p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.testimonial-author strong {
    display: block;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===================================
   Pricing
   =================================== */
.pricing {
    background: white;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.toggle-option {
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s;
    cursor: pointer;
}

.toggle-option.active {
    color: var(--text-primary);
}

.save-badge {
    padding: 4px 8px;
    background: var(--success);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 100px;
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #ddd;
    border-radius: 100px;
    transition: 0.3s;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--accent-primary);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(22px);
}

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

.pricing-card {
    padding: 36px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-xl);
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: var(--accent-primary);
}

.pricing-card.popular {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px var(--accent-light);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 16px;
    background: var(--accent-gradient);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.pricing-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.pricing-price {
    margin: 24px 0;
}

.price {
    font-size: 3rem;
    font-weight: 800;
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-light);
}

.pricing-features li.included {
    color: var(--text-primary);
}

.pricing-features li.excluded {
    color: var(--text-muted);
}

.pricing-guarantee {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===================================
   FAQ
   =================================== */
.faq {
    background: var(--bg-cream);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
}

.faq-item:hover {
    border-color: var(--accent-primary);
}

.faq-item.active {
    border-color: var(--accent-primary);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-weight: 600;
}

.faq-question svg {
    transition: transform 0.3s;
    color: var(--text-muted);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--accent-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   Final CTA
   =================================== */
.final-cta {
    background: var(--bg-dark);
    color: white;
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 16px;
}

.cta-content > p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.cta-note {
    margin-top: 20px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 24px 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    margin-top: 16px;
    font-size: 0.9rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    padding: 6px 0;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* ===================================
   Modal
   =================================== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: white;
    border-radius: var(--radius-xl);
    padding: 48px;
    margin: 24px;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-cream);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.modal-close:hover {
    background: var(--accent-light);
    color: var(--accent-primary);
}

.modal-form h2 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.modal-form > p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.modal-form form button {
    margin-top: 12px;
}

.modal-switch {
    text-align: center;
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.modal-switch a {
    color: var(--accent-primary);
    font-weight: 600;
}

.hidden {
    display: none !important;
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .nav-menu, .nav-actions {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-bottom: 1px solid var(--border-color);
        padding: 16px 24px;
        box-shadow: var(--shadow-md);
    }
    
    .nav-menu.mobile-open,
    .nav-actions.mobile-open {
        display: flex;
    }
    
    .nav-menu {
        gap: 16px;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-actions {
        gap: 8px;
        flex-direction: column;
        align-items: stretch;
    }
    
    .nav-actions button {
        width: 100%;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .comparison-banner {
        padding: 12px 16px;
    }
    
    .banner-content {
        flex-direction: column;
        gap: 12px;
    }
    
    .banner-icon {
        display: none;
    }
    
    .banner-highlight {
        font-size: 0.95rem;
    }
    
    .banner-sub {
        font-size: 0.75rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-right {
        display: none;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-large, .bento-wide {
        grid-column: span 1;
    }
    
    .timeline-step {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }
    
    .step-visual {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .input-wrapper {
        flex-direction: column;
    }
    
    .input-wrapper .btn-cta {
        width: 100%;
        justify-content: center;
    }
    
    .hero-social-proof {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .uni-list {
        gap: 20px;
    }
}


