/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --tomato-red: #FF5733;
    --neon-coral: #FF7E5F;
    --jet-black: #1A1A1A;
    --dark-bg: #0F0F0F;
    --lime-flash: #FFD94C;
    --green: #10B981;
    --slate-800: #1E293B;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-400: #94A3B8;
    --slate-300: #CBD5E1;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(180deg, var(--jet-black) 0%, var(--dark-bg) 50%, var(--jet-black) 100%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

/* Utility Classes */
.text-red { color: var(--tomato-red); }
.text-coral { color: var(--neon-coral); }
.text-yellow { color: var(--lime-flash); }
.text-green { color: var(--green); }

.gradient-text {
    background: linear-gradient(90deg, var(--tomato-red) 0%, var(--neon-coral) 50%, var(--lime-flash) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 87, 51, 0.2);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--tomato-red), var(--neon-coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tomato {
    font-size: 1.875rem;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(90deg, var(--tomato-red), var(--neon-coral));
    color: #ffffff;
}

.btn-primary:hover {
    background: linear-gradient(90deg, var(--neon-coral), var(--tomato-red));
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--slate-800);
    color: #ffffff;
}

.btn-secondary:hover {
    background: var(--slate-700);
}

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

.btn-full {
    width: 100%;
    text-align: center;
}

/* Hero Section */
.hero {
    padding: 8rem 1.5rem 5rem;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 87, 51, 0.1);
    border: 1px solid rgba(255, 87, 51, 0.2);
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--neon-coral);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--slate-300);
    margin-bottom: 2.5rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

/* Metrics */
.metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 80rem;
    margin: 0 auto;
}

.metric-card {
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 87, 51, 0.3);
    border-radius: 0.75rem;
}

.metric-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--slate-400);
}

/* Section Styles */
section {
    padding: 5rem 1.5rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: var(--slate-300);
    margin-bottom: 4rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

/* Problem Section */
.problem {
    background: rgba(15, 23, 42, 0.5);
}

.challenges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.challenge-card {
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid;
}

.challenge-red {
    background: linear-gradient(135deg, rgba(153, 27, 27, 0.2), rgba(15, 23, 42, 0.5));
    border-color: rgba(255, 87, 51, 0.3);
}

.challenge-coral {
    background: linear-gradient(135deg, rgba(194, 65, 12, 0.2), rgba(15, 23, 42, 0.5));
    border-color: rgba(255, 126, 95, 0.3);
}

.challenge-emoji {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.challenge-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.challenge-card ul {
    list-style: none;
}

.challenge-card li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: var(--slate-300);
}

.challenge-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--tomato-red);
}

.solution-banner {
    padding: 2rem;
    background: linear-gradient(90deg, rgba(255, 87, 51, 0.3), rgba(255, 126, 95, 0.3));
    border: 1px solid rgba(255, 87, 51, 0.3);
    border-radius: 1rem;
    text-align: center;
}

.banner-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.banner-subtext {
    font-size: 1.25rem;
    color: var(--slate-300);
}

/* Paths */
.paths {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.path-card {
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid;
}

.path-red {
    background: linear-gradient(135deg, rgba(255, 87, 51, 0.3), rgba(15, 23, 42, 0.5));
    border-color: rgba(255, 87, 51, 0.3);
}

.path-coral {
    background: linear-gradient(135deg, rgba(255, 126, 95, 0.3), rgba(15, 23, 42, 0.5));
    border-color: rgba(255, 126, 95, 0.3);
}

.path-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.path-icon {
    font-size: 2rem;
    padding: 0.75rem;
    background: rgba(255, 87, 51, 0.2);
    border-radius: 0.5rem;
}

.path-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.path-desc {
    color: var(--slate-400);
}

.path-steps {
    margin-bottom: 2rem;
}

.step {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.step-number {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 87, 51, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tomato-red);
    font-weight: 700;
}

.step-content h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.step-content p {
    font-size: 0.875rem;
    color: var(--slate-400);
}

.outcome {
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.outcome h4 {
    margin-bottom: 1rem;
}

.outcome ul {
    list-style: none;
}

.outcome li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    font-size: 0.875rem;
}

.outcome li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
}

/* Capabilities */
.capabilities {
    background: rgba(15, 23, 42, 0.5);
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.capability-card {
    padding: 2rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 87, 51, 0.3);
    border-radius: 1rem;
}

.capability-icon {
    font-size: 2rem;
    padding: 1rem;
    background: rgba(255, 87, 51, 0.2);
    border-radius: 0.5rem;
    width: fit-content;
    margin-bottom: 1.5rem;
}

.capability-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.capability-desc {
    color: var(--slate-400);
    margin-bottom: 1.5rem;
}

.capability-card ul {
    list-style: none;
}

.capability-card li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: var(--slate-300);
}

.capability-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
}

.viral-banner {
    padding: 2rem;
    background: linear-gradient(90deg, rgba(255, 87, 51, 0.3), rgba(255, 126, 95, 0.3));
    border: 1px solid rgba(255, 87, 51, 0.3);
    border-radius: 1rem;
    text-align: center;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 75rem;
    margin: 0 auto 3rem;
}

.pricing-card {
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid;
    position: relative;
}

.pricing-red {
    background: linear-gradient(135deg, rgba(255, 87, 51, 0.3), rgba(15, 23, 42, 0.5));
    border-color: rgba(255, 87, 51, 0.5);
}

.pricing-coral {
    background: linear-gradient(135deg, rgba(255, 126, 95, 0.3), rgba(15, 23, 42, 0.5));
    border-color: rgba(255, 126, 95, 0.5);
}

.pricing-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1rem;
    background: var(--tomato-red);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 2rem;
    margin: 1rem 0 0.5rem;
    text-align: center;
}

.pricing-desc {
    text-align: center;
    color: var(--slate-400);
    margin-bottom: 1.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
}

.price-label {
    text-align: center;
    color: var(--slate-400);
    margin-bottom: 2rem;
}

.pricing-section {
    margin-bottom: 1.5rem;
}

.pricing-section h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.pricing-section ul {
    list-style: none;
}

.pricing-section li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    font-size: 0.875rem;
}

.pricing-section li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
}

.simple-list li::before {
    content: "•";
    color: var(--slate-400);
}

.roi-table {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 0.5rem;
    padding: 1rem;
}

.roi-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.roi-highlight {
    border-top: 1px solid var(--slate-700);
    padding-top: 0.75rem;
    margin-top: 0.25rem;
}

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

.pricing-cta p {
    color: var(--slate-400);
    margin-bottom: 1rem;
}

/* Results */
.results {
    background: rgba(15, 23, 42, 0.5);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.result-card {
    padding: 2rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--slate-700);
    border-radius: 1rem;
}

.result-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.badge-red {
    background: rgba(255, 87, 51, 0.2);
    color: var(--tomato-red);
}

.badge-coral {
    background: rgba(255, 126, 95, 0.2);
    color: var(--neon-coral);
}

.badge-green {
    background: rgba(16, 185, 129, 0.2);
    color: var(--green);
}

.result-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.result-desc {
    color: var(--slate-400);
    margin-bottom: 1.5rem;
}

.result-metrics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.result-metric {
    text-align: left;
}

.result-value {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.result-label {
    font-size: 0.875rem;
    color: var(--slate-400);
}

/* FAQ */
.faq-list {
    max-width: 56rem;
    margin: 0 auto;
}

.faq-item {
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--slate-700);
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--slate-300);
}

/* Quote Form */
.quote {
    background: rgba(15, 23, 42, 0.5);
}

.quote-form {
    max-width: 42rem;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: 0.5rem;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--tomato-red);
}

.form-group textarea {
    resize: vertical;
}

.alert {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.alert-success {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid var(--green);
    color: var(--green);
}

.alert-error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid #EF4444;
    color: #EF4444;
}

/* Footer */
.footer {
    padding: 3rem 1.5rem;
    border-top: 1px solid var(--slate-800);
    text-align: center;
    color: var(--slate-400);
}

.footer-domain {
    margin-top: 0.5rem;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 6rem 1.5rem 3rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .metrics {
        grid-template-columns: 1fr;
    }
    
    .challenges,
    .paths,
    .capability-grid,
    .pricing-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

