@font-face {
    font-family: "Inter";
    src: url(../fonts/Inter-VariableFont_opsz\,wght.ttf);
    font-display: swap;
}
/* assets/css/style.css */
:root {
    --primary: #0a2b4e;
    --primary-dark: #051a33;
    --primary-light: #1e4a76;
    --accent: #36b237;
    --accent-dark: #b85e0a;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-700: #334155;
    --gray-900: #0f172a;
    --white: #ffffff;
    --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.05);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --radius: 12px;
    --radius-sm: 6px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    color: var(--gray-900);
    background-color: var(--white);
    scroll-behavior: smooth;
}

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

/* header */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
    background-color: rgba(255,255,255,0.95);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 12px;
    padding-bottom: 12px;
}

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

.logo i {
    color: var(--accent);
    font-size: 1.8rem;
}

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

.header__disclaimer {
    background: var(--gray-100);
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.8rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: var(--shadow-sm);
}

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

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

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

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

.btn-secondary:hover {
    background: var(--primary-dark);
}

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

.btn-small {
    padding: 6px 14px;
    font-size: 0.85rem;
}

/* hero */
.hero {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #f0f9ff 0%, #eef2ff 100%);
}

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

.hero__badge {
    display: inline-block;
    background: rgba(230,126,34,0.1);
    color: var(--accent-dark);
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.highlight {
    color: var(--accent);
}

.hero__desc {
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: 32px;
}

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

.hero__image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

/* sections */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--gray-700);
    max-width: 600px;
    margin: 0 auto;
}

/* features grid */
.features {
    padding: 80px 0;
}

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

.feature-card {
    background: var(--gray-50);
    padding: 32px 24px;
    border-radius: var(--radius);
    text-align: center;
    transition: 0.2s;
    border: 1px solid var(--gray-200);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.feature-card h3 {
    margin-bottom: 12px;
}

/* steps */
.how-it-works {
    padding: 60px 0;
    background: var(--gray-50);
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    text-align: center;
    background: white;
    padding: 32px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.step__number {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 16px;
}

.step i {
    font-size: 2rem;
    color: var(--primary);
    margin: 16px 0;
}

/* specs */
.specs {
    padding: 80px 0;
}

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

.specs__list {
    list-style: none;
}

.specs__list li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.specs__list i {
    width: 28px;
    color: var(--accent);
}

.specs__image img {
    width: 100%;
    border-radius: var(--radius);
    height: auto;
}

/* testimonials */
.testimonials {
    background: var(--primary);
    color: white;
    padding: 80px 0;
}

.testimonials .section-header p {
    color: rgba(255,255,255,0.8);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
    padding: 24px;
    border-radius: var(--radius);
}

.testimonial-card i.fa-star {
    color: gold;
    margin-bottom: 12px;
}

.testimonial-card p {
    margin: 16px 0;
    font-style: italic;
}

/* order form + image */
.order {
    padding: 80px 0;
    background: var(--gray-50);
}

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

.order__form-wrapper {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.order__form-wrapper {
    padding: 32px;
}

.order__image img {
    object-fit: contain;
    display: block;
    background: white;
        border-radius: var(--radius);
        box-shadow: var(--shadow-md);
        overflow: hidden;
        height: auto;
        width: 100%;
}

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

.order-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
}

.order-form input[type="text"],
.order-form input[type="email"],
.order-form input[type="number"],
.order-form input[type="tel"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    outline: none;
}

.order-form .checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-form .checkbox input {
    width: 18px;
    height: 18px;
}

/* final CTA */
.final-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(120deg, #0a2b4e, #0f3b5c);
    color: white;
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.final-cta p {
    margin-bottom: 32px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ */
.faq {
    padding: 80px 0;
}

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

.faq-item {
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 16px;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-answer {
    display: none;
    padding-bottom: 20px;
    color: var(--gray-700);
}

.faq-answer.active {
    display: block;
}

/* footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-200);
    padding: 48px 0 24px;
    font-size: 0.9rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer__logo i {
    font-size: 2rem;
    color: var(--accent);
}

.footer__logo span {
    font-size: 1.3rem;
    font-weight: 700;
}

.footer__disclaimer-taboola {
    margin-top: 20px;
    font-size: 0.7rem;
    color: #9ca3af;
    border-left: 2px solid var(--accent);
    padding-left: 12px;
}

.footer__legal h4, .footer__ h4 {
    color: white;
    margin-bottom: 16px;
}

.footer__legal ul {
    list-style: none;
}

.footer__legal li {
    margin-bottom: 8px;
}

.footer a {
    color: var(--gray-300);
    text-decoration: none;
}

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

.footer__ address {
    font-style: normal;
    line-height: 1.6;
}

.footer__copyright {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
}

/* cookie notice */
.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--gray-900);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 16px 24px;
    border-radius: 60px;
    z-index: 200;
    flex-wrap: wrap;
    box-shadow: var(--shadow-md);
}

.cookie-notice a {
    color: var(--accent);
}

/* responsive */
@media (max-width: 768px) {
    .hero__container, .specs__container, .order__row {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .header__container {
        flex-direction: column;
        text-align: center;
    }
    .steps {
        flex-direction: column;
    }
    .cookie-notice {
        border-radius: 16px;
        flex-direction: column;
        text-align: center;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
}
header a {
    text-decoration: none;
    color: #051a33;
}
.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
}
.thanks-card {
    background: white;
    border-radius: 24px;
    padding: 48px 32px;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}
.thanks-card i {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 24px;
}
.btn-back {
    margin-top: 32px;
}
.container .wrapper a {
    color: #36b237 !important;
    text-decoration: none;
}