:root {
    --color-black: #0a0a0a;
    --color-red: #c91c1c;
    --color-red-dark: #a01515;
    --color-grey: #6b7280;
    --color-grey-light: #e5e7eb;
    --color-grey-dark: #374151;
    --color-white: #ffffff;
    --color-bg: #f9fafb;
    --font-display: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-black);
    line-height: 1.6;
    background: var(--color-white);
}

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo-container {
    height: 50px;
}

.logo {
    height: 100%;
    width: auto;
}

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

.nav-link {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--color-black);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.nav-link:hover {
    color: var(--color-red);
}

.nav-link-cta {
    background: var(--color-red);
    color: var(--color-white);
    padding: 10px 24px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.nav-link-cta:hover {
    background: var(--color-red-dark);
    color: var(--color-white);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 120px;
    background: linear-gradient(135deg, var(--color-black) 0%, #1a1a1a 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, var(--color-white) 2px, var(--color-white) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, var(--color-white) 2px, var(--color-white) 4px);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-title-accent {
    color: var(--color-red);
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: var(--color-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 28, 28, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-black);
}

.btn-large {
    padding: 16px 48px;
    font-size: 18px;
    width: 100%;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--color-white);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--color-grey);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.feature-card {
    padding: 40px 32px;
    background: var(--color-bg);
    border-radius: 16px;
    border: 1px solid var(--color-grey-light);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--color-red);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--color-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-white);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-desc {
    color: var(--color-grey);
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: var(--color-bg);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step {
    display: flex;
    gap: 20px;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--color-red);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
}

.step-content {
    flex: 1;
}

.step-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-desc {
    color: var(--color-grey);
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--color-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.pricing-card {
    background: var(--color-white);
    border: 2px solid var(--color-grey-light);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.pricing-card-featured {
    border-color: var(--color-red);
    border-width: 3px;
    background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-red);
    color: var(--color-white);
    padding: 6px 20px;
    border-radius: 20px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
}

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

.pricing-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 8px;
}

.pricing-currency {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin-top: 8px;
}

.pricing-number {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
}

.pricing-period {
    font-size: 18px;
    color: var(--color-grey);
    margin-top: 16px;
    margin-left: 4px;
}

.pricing-desc {
    color: var(--color-grey);
    font-size: 15px;
}

.pricing-features {
    list-style: none;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--color-grey-dark);
}

.pricing-feature svg {
    width: 20px;
    height: 20px;
    color: var(--color-red);
    flex-shrink: 0;
}

.pricing-note {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--color-grey-light);
    color: var(--color-grey);
    font-size: 14px;
    text-align: center;
}

/* Coverage Section */
.coverage {
    padding: 100px 0;
    background: var(--color-black);
    color: var(--color-white);
}

.coverage .section-title {
    color: var(--color-white);
}

.coverage .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.coverage-checker {
    max-width: 600px;
    margin: 60px auto 0;
}

.coverage-input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.coverage-input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 16px;
    transition: all 0.3s ease;
}

.coverage-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.coverage-input:focus {
    outline: none;
    border-color: var(--color-red);
    background: rgba(255, 255, 255, 0.15);
}

.coverage-result {
    padding: 24px;
    border-radius: 12px;
    font-size: 16px;
    line-height: 1.6;
    display: none;
}

.coverage-result.success {
    display: block;
    background: rgba(34, 197, 94, 0.15);
    border: 2px solid #22c55e;
    color: #4ade80;
}

.coverage-result.error {
    display: block;
    background: rgba(239, 68, 68, 0.15);
    border: 2px solid #ef4444;
    color: #f87171;
}

/* Form Section */
.get-started {
    padding: 100px 0;
    background: var(--color-bg);
}

.form-container {
    max-width: 800px;
    margin: 60px auto 0;
    background: var(--color-white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    color: var(--color-grey-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-select,
.form-textarea {
    padding: 14px 16px;
    border: 2px solid var(--color-grey-light);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border: 2px solid var(--color-grey-light);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    border-color: var(--color-red);
    background: rgba(201, 28, 28, 0.05);
}

.form-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--color-red);
}

.checkbox-label span {
    font-size: 15px;
}

.form-success {
    text-align: center;
    padding: 48px 24px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--color-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: var(--color-white);
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 16px;
}

.form-success p {
    font-size: 18px;
    color: var(--color-grey);
    margin-bottom: 32px;
}

/* Footer */
.footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: 60px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Loading State */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .features,
    .how-it-works,
    .pricing,
    .coverage,
    .get-started {
        padding: 60px 0;
    }
    
    .form-container {
        padding: 32px 24px;
    }
    
    .coverage-input-group {
        flex-direction: column;
    }
    
    .steps {
        gap: 32px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.pricing-card,
.step {
    animation: fadeIn 0.6s ease-out;
}
