@font-face {
    font-family: "Inter";
    src: url(../fonts/Inter-VariableFont_opsz\,wght.ttf);
    font-display: swap;
}
:root {
    --primary: #f97316;
    --primary-dark: #ea580c;
    --secondary: #1e293b;
    --gray-bg: #f8fafc;
    --gray-border: #e2e8f0;
    --text-dark: #0f172a;
    --text-muted: #475569;
    --white: #ffffff;
    --shadow: 0 10px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.02);
    --radius: 1rem;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.5;
}

.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

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

/* Header */
.header {
    background: white;
    border-bottom: 1px solid var(--gray-border);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(4px);
}
.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
    text-decoration: none;
}
.logo i {
    font-size: 1.6rem;
}
.header__notice {
    font-size: 0.75rem;
    background: #fef3c7;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    color: #b45309;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}
.btn--primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 2px 8px rgba(249,115,22,0.3);
}
.btn--primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}
.btn--secondary {
    background: var(--secondary);
    color: white;
}
.btn--secondary:hover {
    background: #0f172a;
}
.btn--full {
    width: 100%;
    justify-content: center;
}
.btn--small {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
}

/* Hero */
.hero {
    padding: 3rem 0 2rem;
}
.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}
.hero__badge {
    background: #fef3c7;
    color: #c2410c;
    padding: 0.2rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}
.hero h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}
.hero__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}
.author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.author__img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}
.author__name {
    font-weight: 600;
}
.author__date {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.stars {
    color: #fbbf24;
    letter-spacing: 2px;
}
.hero__desc {
    font-size: 1.1rem;
    margin: 1rem 0 1.5rem;
}
.hero__image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
@media (max-width: 768px) {
    .hero__grid { grid-template-columns: 1fr; text-align: center; }
    .hero__meta { justify-content: center; }
    .hero h1 { font-size: 1.8rem; }
}

/* Sections */
section {
    padding: 3rem 0;
}
h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}
h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}
.text-block p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* Product Showcase */
.product-showcase__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}
.product-showcase__media video,
.product-showcase__media img,
.about_image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: block;
    object-fit: cover;
}
.check-list {
    list-style: none;
    margin-top: 1rem;
}
.check-list li {
    margin-bottom: 0.5rem;
    display: flex;
    gap: 0.6rem;
    align-items: center;
}
.check-list i {
    color: var(--primary);
}
@media (max-width: 768px) {
    .product-showcase__grid { grid-template-columns: 1fr; }
}

/* Features 3 cols */
.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.feature-card {
    background: var(--gray-bg);
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    transition: transform 0.2s;
}
.feature-card i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}
.feature-card:hover {
    transform: translateY(-5px);
}
@media (max-width: 768px) {
    .features__grid { grid-template-columns: 1fr; }
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}
.step__number {
    background: var(--primary);
    color: white;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
@media (max-width: 768px) {
    .steps { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* Specs + Gallery */
.specs-gallery .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: var(--gray-bg);
    padding: 2rem;
    border-radius: var(--radius);
}
.specs ul {
    list-style: disc;
    padding-left: 1.2rem;
}
.specs li {
    margin-bottom: 0.5rem;
}
.gallery-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}
.gallery-mini img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 0.75rem;
}
@media (max-width: 768px) {
    .specs-gallery .container { grid-template-columns: 1fr; }
}

/* Reviews */
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.review-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.review-card .stars {
    margin-bottom: 0.5rem;
}
.review-author {
    margin-top: 1rem;
    font-style: italic;
    color: var(--text-muted);
}
@media (max-width: 768px) {
    .reviews__grid { grid-template-columns: 1fr; }
}

/* Form + image side by side */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}
.form-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}
.form-group {
    margin-bottom: 1.2rem;
}
.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.3rem;
}
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group input[type="number"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-border);
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: 0.2s;
}
.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}
.custom-checkbox input {
    display: none;
}
.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--gray-border);
    border-radius: 4px;
    display: inline-block;
    position: relative;
    background: white;
}
.custom-checkbox input:checked + .checkmark::after {
    content: "✓";
    position: absolute;
    top: -2px;
    left: 3px;
    font-size: 14px;
    color: var(--primary);
}
.form-image {
    display: flex;
    align-items: stretch;
}
.form-image img {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
    aspect-ratio: 4 / 3;
}
.form-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 1rem;
    text-align: center;
}
@media (max-width: 768px) {
    .form-grid { grid-template-columns: 1fr; }
    .form-image img { aspect-ratio: 16 / 9; }
}

/* FAQ */
.faq__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.faq-item {
    border-bottom: 1px solid var(--gray-border);
    margin-bottom: 0.5rem;
}
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1rem 0;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
    padding-bottom: 0;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1rem;
}
.faq-question i {
    transition: transform 0.2s;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
@media (max-width: 768px) {
    .faq__grid { grid-template-columns: 1fr; }
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #fef9f1 0%, #fff7ed 100%);
    text-align: center;
    border-radius: 2rem;
    margin: 1rem 0 2rem;
}
.final-cta .container {
    padding: 2.5rem 1.5rem;
}
.final-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #1e293b;
    color: #cbd5e1;
    padding: 2.5rem 0 1.5rem;
    margin-top: 2rem;
}
.footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.footer a {
    color: #e2e8f0;
    text-decoration: none;
}
.footer a:hover {
    color: var(--primary);
}
.footer h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
}
.footer__logo .logo {
    color: var(--primary);
    font-size: 1.4rem;
}
.footer__legal ul {
    list-style: none;
}
.footer__legal li {
    margin-bottom: 0.4rem;
}
.footer__contact address {
    font-style: normal;
    line-height: 1.5;
}
.footer__disclaimer p {
    font-size: 0.75rem;
    opacity: 0.8;
}
@media (max-width: 768px) {
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
@media (max-width: 480px) {
    .footer__grid { grid-template-columns: 1fr; text-align: center; }
}

/* Cookie notice */
.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #1e293b;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 2rem;
    z-index: 1000;
    flex-wrap: wrap;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.2);
}
.cookie-notice p {
    margin: 0;
    font-size: 0.9rem;
}
.cookie-notice .btn--small {
    background: var(--primary);
    color: white;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem 4rem;
    background: var(--white);
    border-radius: var(--radius);
    line-height: 1.65;
    color: var(--text-dark);
}

.legal-page h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.legal-page h2 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    text-align: left;
}

.legal-page p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.legal-page b, .legal-page strong {
    color: var(--text-dark);
    font-weight: 600;
}

.legal-page ul, .legal-page ol {
    margin: 1rem 0 1rem 2rem;
    color: var(--text-muted);
}

.legal-page li {
    margin-bottom: 0.4rem;
}

.legal-page a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-page a:hover {
    color: var(--primary-dark);
}

.legal-page hr {
    margin: 2rem 0;
    border: none;
    border-top: 1px solid var(--gray-border);
}

@media (max-width: 768px) {
    .legal-page {
        padding: 1rem 1rem 2rem;
    }
    .legal-page h1 {
        font-size: 1.7rem;
    }
    body {
        word-break: break-word;
    }
}
.thanks-message {
    max-width: 700px;
    margin: 4rem auto;
    text-align: center;
    background: #f8fafc;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
}

.thanks-message i {
    font-size: 4rem;
    color: #f97316;
    margin-bottom: 1rem;
}

.thanks-message h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.btn-back-home {
    margin-top: 2rem;
    background: #f97316;
    color: white;
    padding: 0.75rem 1.8rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.btn-back-home:hover {
    background: #ea580c;
}