/* =========================================================
   PARS OTOMATIV - Premium Responsive Stylesheet
   parsotomativ.com
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
    --primary: #e85d04;
    --primary-dark: #c2410c;
    --primary-soft: rgba(232, 93, 4, 0.10);
    --accent: #0d9488;

    --secondary: #2563eb;
    --secondary-dark: #1d4ed8;
    --secondary-soft: rgba(37, 99, 235, 0.10);

    --whatsapp: #25d366;
    --whatsapp-dark: #16a34a;

    --bg-main: #ffffff;
    --bg-alt: #f8fafc;
    --bg-card: #ffffff;
    --bg-dark: #0f172a;

    --text-main: #0f172a;
    --text-muted: #475569;
    --text-light: #94a3b8;

    --border-color: #e2e8f0;
    --border-soft: rgba(226, 232, 240, 0.82);

    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 16px 35px rgba(15, 23, 42, 0.09);
    --shadow-lg: 0 28px 65px rgba(15, 23, 42, 0.12);

    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 20px;

    --transition: 0.25s ease;
    --container: 1200px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 96px;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: "Inter", Arial, sans-serif;
    color: var(--text-main);
    background: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.drawer-open {
    overflow: hidden;
}

img,
svg {
    max-width: 100%;
    height: auto;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
}

::selection {
    background: var(--primary);
    color: #fff;
}

.container {
    width: min(100%, var(--container));
    margin-inline: auto;
    padding-inline: 24px;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    font-family: "Outfit", Arial, sans-serif;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}

p {
    margin-top: 0;
}

.text-primary {
    color: var(--primary) !important;
}

.text-blue {
    color: var(--secondary) !important;
}

.text-green {
    color: var(--primary) !important;
}

/* ---------- Accessibility ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.28);
    outline-offset: 3px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 12px 24px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-family: "Outfit", Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform var(--transition),
        background-color var(--transition),
        border-color var(--transition),
        color var(--transition),
        box-shadow var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.23);
}

.btn-primary:hover {
    box-shadow: 0 12px 28px rgba(13, 148, 136, 0.32);
}

.btn-whatsapp,
.btn-whatsapp-submit {
    color: #fff;
    background: linear-gradient(135deg, var(--whatsapp), #1ebd54);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.22);
}

.btn-whatsapp:hover,
.btn-whatsapp-submit:hover {
    background: linear-gradient(135deg, #1ebd54, var(--whatsapp-dark));
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.30);
}

.btn-whatsapp-submit {
    width: 100%;
    min-height: 50px;
    padding: 14px 20px;
    font-size: 1.05rem;
}

.btn-outline {
    color: var(--text-muted);
    background: #fff;
    border-color: var(--border-color);
}

.btn-outline:hover {
    color: var(--text-main);
    background: var(--bg-alt);
    border-color: #cbd5e1;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-lg {
    min-height: 52px;
    padding: 14px 30px;
    font-size: 1.05rem;
}

/* ---------- Animations ---------- */
@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* ---------- Header ---------- */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 4px 30px rgba(15, 23, 42, 0.03);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    color: var(--text-main);
    font-family: "Outfit", Arial, sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.logo-icon-wrapper {
    position: relative;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    background: var(--primary-soft);
    border: 1px solid rgba(13, 148, 136, 0.12);
    border-radius: 10px;
}

.logo-icon {
    color: var(--primary);
    font-size: 1.4rem;
}

.logo-icon-plus {
    position: absolute;
    top: 6px;
    right: 6px;
    color: var(--secondary);
    font-size: 0.72rem;
    background: #fff;
    border-radius: 50%;
    padding: 2px;
    box-shadow: var(--shadow-sm);
}

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

.nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2vw, 32px);
}

.nav-link {
    position: relative;
    color: var(--text-muted);
    font-size: 0.93rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--transition);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
}

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

.nav-link:hover::after {
    transform: scaleX(1);
}

.header-contact {
    flex-shrink: 0;
}

.header-wa-btn {
    padding: 10px 18px;
    border-radius: 9px;
    font-size: 0.88rem;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: clamp(60px, 7vw, 90px) 0;
    overflow: hidden;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border-soft);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(232, 93, 4, 0.09), transparent 34%),
        radial-gradient(circle at 55% 0%, rgba(37, 99, 235, 0.05), transparent 34%),
        radial-gradient(circle at 100% 20%, rgba(13, 148, 136, 0.06), transparent 30%);
    pointer-events: none;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    color: var(--text-muted);
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
}

.trust-badge i {
    color: var(--primary);
}

/* ---------- Stats Section ---------- */
.stats-section {
    padding: 48px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1e293b 100%);
    border-bottom: 1px solid #334155;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: transform var(--transition), background var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.07);
}

.stat-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    color: var(--primary);
    background: rgba(232, 93, 4, 0.12);
    border-radius: 50%;
    font-size: 1.3rem;
}

.stat-value {
    margin-bottom: 4px;
    color: #fff;
    font-family: "Outfit", Arial, sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.stat-label {
    color: #94a3b8;
    font-size: 0.88rem;
    font-weight: 500;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: clamp(38px, 5vw, 68px);
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 7px 15px;
    color: var(--primary-dark);
    background: rgba(13, 148, 136, 0.07);
    border: 1px solid rgba(13, 148, 136, 0.16);
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 700;
}

.badge-dot {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(13, 148, 136, 0.10);
}

.hero-title {
    max-width: 760px;
    margin-bottom: 20px;
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    letter-spacing: -0.035em;
}

.hero-title span {
    color: var(--primary);
}

.hero-lead {
    max-width: 720px;
    margin-bottom: 32px;
    color: var(--text-muted);
    font-size: 1.08rem;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 36px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: var(--text-muted);
    font-size: 0.97rem;
    font-weight: 600;
}

.feature-item i {
    margin-top: 4px;
    color: var(--primary);
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* ---------- Form Card ---------- */
.hero-form-wrapper {
    display: flex;
    justify-content: center;
}

.form-card {
    position: relative;
    width: 100%;
    max-width: 500px;
    padding: clamp(26px, 4vw, 38px);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(13, 148, 136, 0.14);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 0 0 999px 999px;
}

.form-badge {
    display: inline-block;
    margin-bottom: 12px;
    padding: 5px 12px;
    color: var(--secondary-dark);
    background: var(--secondary-soft);
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.form-header h3 {
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.form-header p {
    margin-bottom: 26px;
    color: var(--text-muted);
    font-size: 0.86rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 18px;
    min-width: 0;
}

.form-group label {
    color: var(--text-main);
    font-size: 0.84rem;
    font-weight: 700;
}

.required {
    color: #dc2626;
}

.form-group input,
.form-group select {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 12px 14px;
    color: var(--text-main);
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 9px;
    outline: none;
    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        background-color var(--transition);
}

.form-group input::placeholder {
    color: #94a3b8;
}

.form-group input:hover,
.form-group select:hover {
    border-color: #cbd5e1;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.12);
}

.form-group select {
    cursor: pointer;
}

.input-tip {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    margin-top: 2px;
    color: var(--text-muted);
    font-size: 0.74rem;
    line-height: 1.4;
}

.input-tip i {
    margin-top: 3px;
    color: var(--secondary);
}

/* ---------- Shared Sections ---------- */
.how-it-works,
.categories-section,
.testimonials-section,
.faq-section {
    padding: clamp(72px, 8vw, 108px) 0;
}

.how-it-works,
.testimonials-section {
    background: #fff;
}

.categories-section,
.faq-section {
    background: var(--bg-alt);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}

.section-header {
    max-width: 700px;
    margin: 0 auto 54px;
    text-align: center;
}

.section-title {
    margin-bottom: 12px;
    font-size: clamp(2rem, 4vw, 2.7rem);
    letter-spacing: -0.02em;
}

.section-subtitle {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 1.02rem;
}

/* ---------- Steps ---------- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.step-card {
    padding: 36px 28px;
    text-align: center;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(13, 148, 136, 0.26);
    box-shadow: var(--shadow-md);
}

.step-icon-wrapper {
    display: grid;
    place-items: center;
    width: 66px;
    height: 66px;
    margin: 0 auto 22px;
    color: var(--primary);
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    box-shadow: var(--shadow);
    font-size: 1.55rem;
}

.step-card h3 {
    margin-bottom: 10px;
    font-size: 1.27rem;
}

.step-card p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ---------- Categories ---------- */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.category-card {
    padding: 32px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(13, 148, 136, 0.24);
    box-shadow: var(--shadow-md);
}

.category-icon {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 2.15rem;
}

.category-card h3 {
    margin-bottom: 9px;
    font-size: 1.24rem;
}

.category-card p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.88rem;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    padding: 32px 28px;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(13, 148, 136, 0.24);
    box-shadow: var(--shadow-md);
}

.stars {
    margin-bottom: 14px;
    color: #f59e0b;
    font-size: 0.84rem;
    letter-spacing: 2px;
}

.testimonial-card > p {
    flex-grow: 1;
    margin-bottom: 20px;
    color: var(--text-main);
    font-size: 0.92rem;
    font-style: italic;
}

.user-info {
    display: flex;
    flex-direction: column;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.user-info strong {
    font-size: 0.95rem;
}

.user-info span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ---------- FAQ ---------- */
.faq-section {
    border-bottom: 0;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-item.active {
    border-color: rgba(13, 148, 136, 0.26);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    padding: 20px 24px;
    color: var(--text-main);
    background: transparent;
    border: 0;
    font-family: "Inter", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 650;
    text-align: left;
    cursor: pointer;
}

.faq-question:hover {
    background: rgba(13, 148, 136, 0.025);
}

.faq-question i {
    flex: 0 0 auto;
    color: var(--primary);
    transition: transform var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    opacity: 0;
    transition:
        max-height 0.35s ease,
        opacity 0.25s ease,
        padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
    opacity: 1;
}

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

.faq-answer p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ---------- Footer ---------- */
.footer {
    padding: 76px 0 20px;
    color: #f1f5f9;
    background: var(--bg-dark);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1.3fr;
    gap: 56px;
    margin-bottom: 48px;
}

.footer-logo {
    margin-bottom: 15px;
    color: #fff;
}

.footer-info p {
    max-width: 340px;
    margin-bottom: 20px;
    color: #94a3b8;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 11px;
}

.social-links a {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: #cbd5e1;
    background: #1e293b;
    border-radius: 9px;
    text-decoration: none;
    transition:
        color var(--transition),
        background-color var(--transition),
        transform var(--transition);
}

.social-links a:hover {
    color: #fff;
    background: var(--primary);
    transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 19px;
    color: #fff;
    font-size: 1.05rem;
}

.footer-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color var(--transition);
}

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

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-contact p i {
    margin-top: 4px;
    color: var(--primary);
}

.bank-details-note {
    margin-top: 15px;
    padding: 12px 15px;
    color: #cbd5e1;
    background: #1e293b;
    border-radius: 8px;
    font-size: 0.82rem;
    line-height: 1.5;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #1e293b;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #64748b;
    font-size: 0.82rem;
}

.footer-bottom-container p {
    margin-bottom: 0;
}

/* ---------- Sticky Mobile Footer ---------- */
.sticky-footer-bar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 998;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 8px;
    padding: 8px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.92);
    border-top: 1px solid var(--border-soft);
    box-shadow: 0 -8px 26px rgba(15, 23, 42, 0.10);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.sticky-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 0;
    padding: 10px 8px;
    border-radius: 10px;
    font-family: "Outfit", Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
}

.sticky-action-btn i {
    flex: 0 0 auto;
    font-size: 1.05rem;
}

.sticky-action-btn.phone-btn {
    color: var(--secondary);
    background: var(--secondary-soft);
}

.sticky-action-btn.order-btn {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 5px 12px rgba(13, 148, 136, 0.20);
}

.sticky-action-btn.whatsapp-btn {
    color: #fff;
    background: var(--whatsapp);
    box-shadow: 0 5px 12px rgba(37, 211, 102, 0.20);
}

/* ---------- Mobile Menu ---------- */
.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    color: var(--text-main);
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 1.35rem;
    cursor: pointer;
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    background: rgba(15, 23, 42, 0.48);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.drawer-overlay.active {
    visibility: visible;
    opacity: 1;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -340px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    width: min(340px, 88vw);
    height: 100dvh;
    background: var(--bg-card);
    box-shadow: -16px 0 40px rgba(15, 23, 42, 0.14);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--border-color);
}

.drawer-header .logo {
    font-size: 1.25rem;
}

.drawer-close {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    padding: 0;
    color: var(--text-muted);
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
}

.drawer-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 22px;
    overflow-y: auto;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.drawer-link {
    padding: 13px 0;
    color: var(--text-main);
    border-bottom: 1px solid var(--border-soft);
    font-family: "Outfit", Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition:
        color var(--transition),
        padding-left var(--transition);
}

.drawer-link:hover {
    padding-left: 7px;
    color: var(--primary);
}

.drawer-footer {
    margin-top: 28px;
}

/* ---------- Tablet ---------- */
@media (max-width: 1100px) {
    .nav {
        gap: 18px;
    }

    .nav-link {
        font-size: 0.88rem;
    }

    .header-wa-btn {
        padding-inline: 14px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        max-width: 860px;
    }

    .hero-content {
        align-items: center;
        text-align: center;
    }

    .hero-lead {
        margin-inline: auto;
    }

    .hero-features {
        align-items: flex-start;
        margin-inline: auto;
        text-align: left;
    }

    .hero-actions {
        justify-content: center;
    }

    .form-card {
        max-width: 680px;
    }

    .steps-grid,
    .categories-grid,
    .testimonials-grid,
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
    html {
        font-size: 15px;
        scroll-padding-top: 82px;
    }

    body {
        padding-bottom: calc(76px + env(safe-area-inset-bottom));
        -webkit-text-size-adjust: 100%;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
    }

    .hero-form-wrapper {
        order: -1;
        width: 100%;
    }

    .hero-content {
        order: 1;
    }

    .form-card {
        max-width: 100%;
    }

    .stat-card {
        padding: 18px 14px;
    }

    .stat-value {
        font-size: 1.6rem;
    }

    .trust-badge {
        flex: 1 1 calc(50% - 6px);
        justify-content: center;
        font-size: 0.76rem;
        padding: 8px 10px;
    }

    .container {
        padding-inline: 16px;
    }

    .header-container {
        min-height: 70px;
    }

    .logo {
        font-size: 1.32rem;
    }

    .logo-icon-wrapper {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .nav,
    .header-contact {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .hero {
        padding: 48px 0 58px;
    }

    .hero-container {
        gap: 36px;
    }

    .hero-title {
        font-size: clamp(2.3rem, 11vw, 3.45rem);
    }

    .hero-title br {
        display: none;
    }

    .hero-lead {
        font-size: 1rem;
    }

    .badge {
        margin-bottom: 18px;
        font-size: 0.77rem;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-actions .btn {
        flex: 1 1 100%;
        width: 100%;
    }

    .form-card {
        padding: 26px 18px;
        border-radius: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .section-header {
        margin-bottom: 38px;
    }

    .steps-grid,
    .categories-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .trust-badges {
        justify-content: center;
        width: 100%;
    }

    .how-it-works,
    .categories-section,
    .testimonials-section,
    .faq-section {
        padding: 56px 0;
    }

    .stats-section {
        padding: 36px 0;
    }

    .btn,
    .sticky-action-btn,
    .mobile-menu-toggle,
    .faq-question {
        min-height: 44px;
    }

    .step-card,
    .category-card,
    .testimonial-card {
        padding: 28px 22px;
    }

    .faq-question {
        padding: 18px 18px;
        font-size: 0.95rem;
    }

    .faq-answer,
    .faq-item.active .faq-answer {
        padding-left: 18px;
        padding-right: 18px;
    }

    .footer {
        padding-top: 58px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-bottom-container {
        flex-direction: column;
        align-items: center;
        gap: 6px;
        text-align: center;
    }

    .sticky-footer-bar {
        display: grid;
    }
}

/* ---------- Small Phones ---------- */
@media (max-width: 420px) {
    .container {
        padding-inline: 14px;
    }

    .logo {
        gap: 8px;
        font-size: 1.15rem;
    }

    .logo span {
        max-width: 140px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: -0.03em;
    }

    .hero-lead {
        font-size: 0.95rem;
    }

    .form-card {
        padding-inline: 15px;
    }

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

    .trust-badge {
        flex: 1 1 100%;
    }

    .sticky-footer-bar {
        gap: 5px;
        padding-inline: 7px;
        padding-bottom: calc(10px + env(safe-area-inset-bottom));
    }

    .sticky-action-btn {
        gap: 4px;
        padding-inline: 5px;
        font-size: 0.72rem;
    }

    .sticky-action-btn i {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .footer-info p {
        max-width: 100%;
    }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
