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

:root {
    --primary: #266AD7;
    --primary-dark: #1757BF;
    --primary-hover: #1757BF;
    --accent: #000000;
    --dark: #111827;
    --gray: #6b7280;
    --light-gray: #eef1f5;
    --border-gray: #dde3ea;
    --white: #ffffff;
}

body {
    font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    line-height: 1.5;
    font-size: 1rem;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header */
header {
    padding: 16px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-gray);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.15s ease;
}

.logo img {
    display: block;
    width: 140px;
    height: 44px;
}

.logo span {
    color: var(--accent);
}

.phone-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.15s ease;
}

.phone-header:hover {
    color: var(--primary);
}

.phone-header svg {
    width: 16px;
    height: 16px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #ffffff 0%, #ebebeb 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.hero-content h1 span {
    color: var(--primary);
    display: block;
    /* margin-top: 8px; */
}

.hero-content p {
    font-size: 1.125rem;
    color: #525252;
    margin-bottom: 32px;
    line-height: 1.5;
    font-weight: 600;
}

.hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 12px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--border-gray);
}

.badge svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

/* Form Card */
.form-card {
    background: var(--white);
    padding: 20px;
    border-radius: 28px;
    border: 2px solid var(--border-gray);
}

.form-card .form-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.form-header-icon {
    width: 48px;
    height: 48px;
    background: var(--light-gray);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.form-header-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.form-card h2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.form-card .subtitle {
    font-size: 14px;
    font-weight: 500;
}

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

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

.form-group label .optional {
    font-weight: 500;
    opacity: 0.5;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-gray);
    border-radius: 14px;
    font-size: 16px;
    font-family: inherit;
    font-weight: 500;
    transition: all 0.15s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(2, 150, 255, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.submit-btn:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(2, 150, 255, 0.2);
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.8125rem;
    color: var(--gray);
    font-weight: 500;
}

/* Checkbox styles */
.checkbox-group {
    margin-bottom: 32px;
    margin-top: 32px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    width: 32px;
    height: 32px;
    border: 2px solid var(--border-gray);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.15s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: var(--white);
    flex-shrink: 0;
    margin: 0;
}

.checkbox-label input[type="checkbox"]:checked {
    background: var(--primary);
    border-color: var(--primary);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
}

.checkbox-label input[type="checkbox"]:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(2, 150, 255, 0.1);
}

.checkbox-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.3;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 500;
}

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

.step {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--light-gray);
    border-radius: 20px;
    position: relative;
    transition: all 0.15s ease;
    border: 2px solid var(--border-gray);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.step p {
    color: #4b5563;
    font-size: 0.9375rem;
    line-height: 1.5;
    font-weight: 500;
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: var(--dark);
    color: var(--white);
}

.benefits .section-header h2 {
    color: var(--white);
}

.benefits .section-header p {
    color: rgba(255,255,255,0.7);
}

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

.benefit {
    display: flex;
    gap: 1.25rem;
    padding: 1.875rem;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    border: 2px solid rgba(255,255,255,0.1);
    transition: all 0.15s ease;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
}

.benefit h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.benefit p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    line-height: 1.5;
    font-weight: 500;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: var(--white);
}

.cta h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-weight: 500;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    color: var(--primary);
    padding: 20px 40px;
    border-radius: 30px;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.15s ease;
}

.cta-phone:hover {
    transform: translateY(-3px);
}

.cta-phone svg {
    width: 28px;
    height: 28px;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: var(--light-gray);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 2px solid var(--border-gray);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 1.75rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: inherit;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--dark);
    transition: all 0.15s ease;
}

.faq-question:hover {
    background: rgba(0,0,0,0.02);
}

.faq-question svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.3s;
}

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

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

.faq-answer-inner {
    padding: 0 1.75rem 1.5rem;
    color: var(--gray);
    line-height: 1.5;
    font-size: 0.9375rem;
    font-weight: 500;
}

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

/* Footer */
footer {
    padding: 2.5rem 0;
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    font-weight: 500;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.footer-logo img {
    display: block;
    width: 140px;
    height: 44px;
}

.footer-logo span {
    color: var(--accent);
}

/* Responsive */
@media (max-width: 968px) {
    .container {
        padding: 0 20px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .section-header {
        text-align: left;
    }

    .section-header p {
        margin: 0;
    }

    .hero-content {
        text-align: left;
    }

    .hero-badges {
        justify-content: flex-start;
    }

    .hero-content h1 {
        font-size: 2.375rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* License plate input */
.plate-input-wrapper {
    display: flex;
    align-items: stretch;
    border: 2px solid var(--border-gray);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.15s ease;
    background: var(--white);
}

.plate-input-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(2, 150, 255, 0.1);
}

.plate-country {
    background: var(--primary);
    color: white;
    padding: 0px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 10px;
    gap: 2px;
}

.plate-country .country-code {
    font-size: 14px;
    font-weight: 800;
    padding-top: 16px;
}

.plate-input-wrapper input {
    flex: 1;
    border: none;
    padding: 14px 16px;
    font-size: 1rem;
    font-family: inherit;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plate-input-wrapper input:focus {
    outline: none;
}

@media (max-width: 600px) {
    .container {
        padding: 0 20px;
    }

    .hero-badges {
        display: none;
    }

    .logo {
        font-size: 1.375rem;
    }

    .logo img,
    .footer-logo img {
        height: 32px;
        width: auto;
    }

    .phone-header {
        font-size: 0.875rem;
    }

    .phone-header svg {
        width: 16px;
        height: 16px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-content p {
        display: none;
    }

    .hero-content h1 {
        font-size: 1.875rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .form-card {
        padding: 20px;
    }

    .cta h2 {
        font-size: 1.75rem;
    }

    .cta-phone {
        font-size: 1.125rem;
        padding: 1rem 1.75rem;
    }

    .faq-question {
        font-size: 0.9375rem;
        padding: 1.25rem;
    }

    .faq-answer-inner {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.875rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
