/* ============================================
   AnswerLoop Landing Page - Conversion Optimized
   ============================================ */

:root {
    --color-primary: #1e40af;
    --color-primary-dark: #1e3a8a;
    --color-primary-light: #3b82f6;
    --color-secondary: #0ea5e9;
    --color-accent: #f59e0b;
    
    --color-text: #1e293b;
    --color-text-light: #64748b;
    --color-text-muted: #94a3b8;
    
    --color-bg: #ffffff;
    --color-bg-alt: #f8fafc;
    --color-bg-dark: #0f172a;
    
    --color-border: #e2e8f0;
    --color-success: #10b981;
    --color-error: #ef4444;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: white;
    color: var(--color-primary);
    border-color: var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    background: var(--color-bg-alt);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full { width: 100%; }
.btn-nav { padding: 0.5rem 1rem; font-size: 0.875rem; }

/* Exit Intent Popup */
.exit-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.exit-popup-content {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.exit-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-light);
}

.exit-popup h3 {
    margin-bottom: 0.5rem;
    color: var(--color-primary-dark);
}

.exit-popup p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.exit-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.exit-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 1rem;
}

.exit-note {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    text-decoration: none;
}

.logo:hover { color: var(--color-primary); }
.logo-icon { font-size: 1.75rem; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.9375rem;
    text-decoration: none;
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.hero h1 {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--color-text) 0%, var(--color-primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-subtitle strong { color: var(--color-text); }

/* Audio Demo Player */
.audio-demo {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.audio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.audio-player {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--color-bg-alt);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
}

.play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    flex-shrink: 0;
}

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

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

.waveform .bar {
    width: 4px;
    background: var(--color-border);
    border-radius: 2px;
    transition: all 0.3s;
    height: 20%;
}

.waveform .bar.active {
    background: var(--color-primary);
    animation: sound 1s ease-in-out infinite;
}

@keyframes sound {
    0%, 100% { height: 20%; }
    50% { height: 100%; }
}

.waveform .bar:nth-child(2n) { animation-delay: 0.1s; }
.waveform .bar:nth-child(3n) { animation-delay: 0.2s; }
.waveform .bar:nth-child(4n) { animation-delay: 0.3s; }

.audio-time {
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-weight: 500;
    min-width: 40px;
}

.audio-caption {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    font-style: italic;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid var(--color-success);
    color: var(--color-success);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.hero-trust {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 320px;
    background: var(--color-bg-dark);
    border-radius: 2.5rem;
    padding: 0.75rem;
    box-shadow: var(--shadow-xl);
}

.phone-screen {
    background: white;
    border-radius: 2rem;
    overflow: hidden;
}

.call-ui {
    padding: 2rem 1.5rem;
    text-align: center;
}

.call-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1rem;
}

.call-info { margin-bottom: 1rem; }

.call-name {
    display: block;
    font-weight: 600;
    font-size: 1.125rem;
}

.call-number {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

.call-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--color-success);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.pulse {
    width: 10px;
    height: 10px;
    background: var(--color-success);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

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

.call-transcript {
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    padding: 1rem;
    text-align: left;
    font-size: 0.8125rem;
    color: var(--color-text-light);
}

.call-transcript p { margin-bottom: 0.5rem; }
.call-transcript p:last-child { margin-bottom: 0; }
.call-transcript strong { color: var(--color-text); }

/* ROI Calculator */
.roi-calculator {
    padding: 3rem 0;
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.calculator-box {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.calculator-box h3 {
    margin-bottom: 2rem;
    color: var(--color-text);
}

.calc-input {
    margin-bottom: 2rem;
}

.calc-input label {
    display: block;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: var(--color-border);
    outline: none;
    -webkit-appearance: none;
    margin-bottom: 0.5rem;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
    border: none;
}

.calc-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.calc-value {
    font-weight: 600;
    color: var(--color-primary);
}

.calc-result {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    background: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
}

.calc-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.calc-label {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.calc-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
}

.calc-number.lost { color: var(--color-error); }
.calc-number.saved { color: var(--color-success); }

/* Comparison Table */
.comparison {
    padding: 6rem 0;
    background: white;
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: var(--color-bg-dark);
    color: white;
    font-weight: 600;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid var(--color-border);
    align-items: center;
}

.table-row:last-child { border-bottom: none; }

.col-feature {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    background: var(--color-bg-alt);
    border-right: 1px solid var(--color-border);
}

.col-option {
    padding: 1.25rem;
    text-align: center;
    font-size: 0.9375rem;
    border-right: 1px solid var(--color-border);
}

.col-option:last-child { border-right: none; }

.col-option.highlight {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(14, 165, 233, 0.05) 100%);
    font-weight: 600;
    color: var(--color-primary);
}

.col-option small {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
    font-weight: normal;
}

/* Problem/Solution */
.problem-solution { padding: 6rem 0; }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 { margin-bottom: 1rem; }
.section-header p {
    font-size: 1.125rem;
    color: var(--color-text-light);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.problem-card {
    padding: 2rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.problem-card:hover {
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    margin-bottom: 0.75rem;
    color: var(--color-error);
}

.problem-card p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

.problem-card strong { color: var(--color-text); }

.solution-block {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 3rem;
    color: white;
}

.solution-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.solution-content h3 {
    font-size: 1.75rem;
    color: white;
    margin-bottom: 1rem;
}

.solution-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    max-width: 700px;
}

.solution-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.solution-list li {
    font-size: 1rem;
    opacity: 0.95;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--color-bg-alt);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

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

.feature-card.featured {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 1px var(--color-primary);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 { margin-bottom: 0.75rem; }

.feature-card p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

/* Techs Section (New) */
.techs-section {
    padding: 6rem 0;
    background: white;
    border-top: 1px solid var(--color-border);
}

.techs-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.techs-text h2 {
    margin-bottom: 1.5rem;
}

.techs-text > p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.techs-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.techs-list li {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-left: 1.5rem;
    position: relative;
}

.techs-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
}

.techs-list strong {
    color: var(--color-text);
    font-size: 1.0625rem;
}

.techs-list span {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

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

.sms-preview {
    background: var(--color-bg-dark);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    width: 320px;
    box-shadow: var(--shadow-xl);
}

.sms-header {
    color: var(--color-success);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.sms-body {
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 1rem;
    color: white;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.sms-body p {
    margin-bottom: 0.5rem;
}

.sms-body p:last-child { margin-bottom: 0; }

.sms-time {
    color: var(--color-text-muted);
    font-size: 0.75rem;
    display: block;
    margin-top: 0.5rem;
}

/* Testimonials (Unchanged structure) */
.testimonials { padding: 6rem 0; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-card blockquote {
    font-size: 1rem;
    color: var(--color-text);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.author-info strong {
    display: block;
    font-size: 0.9375rem;
}

.author-info span {
    font-size: 0.8125rem;
    color: var(--color-text-light);
}

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

.trust-logos p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.logos-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo-pill {
    padding: 0.5rem 1rem;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-light);
}

/* Pricing */
.pricing {
    padding: 6rem 0;
    background: var(--color-bg-alt);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

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

.pricing-card:hover { box-shadow: var(--shadow-lg); }

.pricing-card.popular {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px var(--color-primary), var(--shadow-xl);
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 2rem;
}

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

.pricing-description {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-text);
}

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

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--color-border);
}

.pricing-features li:last-child { border-bottom: none; }
.pricing-features li.disabled { color: var(--color-text-muted); }

.pricing-card .btn { width: 100%; }

.pricing-note {
    text-align: center;
    color: var(--color-text-light);
    margin-top: 2rem;
    font-size: 0.9375rem;
}

/* Final CTA */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: white;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content > p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

/* Shortened Form */
.contact-form-short {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.form-row-short {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row-short input {
    flex: 1;
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    min-width: 0;
}

.form-row-short input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin: 0;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background: var(--color-bg-dark);
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--color-text-muted);
    margin-top: 1rem;
    font-size: 0.9375rem;
}

.footer-brand .logo { color: white; }

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

.footer-column h4 {
    color: white;
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
}

.footer-column a {
    display: block;
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
    transition: color 0.2s ease;
    text-decoration: none;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--color-text-muted);
    text-decoration: none;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .trust-badges { justify-content: center; }
    .hero-cta { justify-content: center; }
    .hero-visual { order: -1; margin-bottom: 2rem; }
    .phone-mockup { width: 280px; }
    
    .problem-grid,
    .features-grid,
    .testimonials-grid,
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    
    .solution-list { grid-template-columns: 1fr; }
    
    .techs-content { grid-template-columns: 1fr; }
    .techs-visual { order: -1; }
    
    .comparison-table {
        font-size: 0.875rem;
        overflow-x: auto;
    }
    
    .calc-result { grid-template-columns: 1fr; }
    
    .footer-content { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--color-border);
        display: none;
    }
    
    .nav-links.active { display: flex; }
    .mobile-menu-btn { display: flex; }
    
    .hero { padding: 6rem 0 3rem; }
    .hero-stats { flex-direction: column; gap: 1.5rem; }
    .stat { align-items: center; }
    .stat-label { max-width: none; }
    
    .problem-grid,
    .features-grid,
    .testimonials-grid,
    .pricing-grid { grid-template-columns: 1fr; }
    
    .pricing-card.popular { transform: none; }
    
    .form-row-short { flex-direction: column; }
    .form-row-short .btn { width: 100%; }
    
    .exit-form { flex-direction: column; }
    
    .table-header,
    .table-row { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
    
    .footer-links { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    .hero-cta { flex-direction: column; }
    .btn-large { width: 100%; }
    .trust-badges { flex-direction: column; align-items: center; }
    .solution-block { padding: 2rem 1.5rem; }
    .calculator-box { padding: 1.5rem; }
    .comparison-table { font-size: 0.75rem; }
    .col-feature, .col-option { padding: 0.75rem 0.5rem; }
    .contact-form-short { padding: 1.5rem; }
    .footer-links { grid-template-columns: 1fr; }
}
