/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --slate-50: #f8fafc; --slate-100: #f1f5f9; --slate-200: #e2e8f0;
    --slate-300: #cbd5e1; --slate-400: #94a3b8; --slate-500: #64748b;
    --slate-600: #475569; --slate-700: #334155; --slate-800: #1e293b;
    --slate-900: #0f172a; --slate-950: #020617;
    --red-500: #dc2626; --red-600: #b91c1c; --red-700: #991b1b;
    --green-500: #22c55e;
    --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius: 12px; --radius-lg: 20px; --radius-full: 9999px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); color: var(--slate-900); background: #fff; line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: var(--radius-full);
    font-family: var(--font); font-weight: 600; font-size: 0.95rem;
    border: 2px solid transparent; cursor: pointer;
    transition: all 0.25s ease; white-space: nowrap;
}
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-red { background: var(--red-500); color: #fff; border-color: var(--red-500); }
.btn-red:hover { background: var(--red-600); border-color: var(--red-600); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(220,38,38,0.35); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); transform: translateY(-2px); }
.btn-ghost-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-ghost-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 18px 0; transition: all 0.3s ease;
}
.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95); backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { z-index: 1001; }
.logo-text { font-weight: 800; font-size: 1.25rem; color: #fff; letter-spacing: -0.02em; }
.logo-accent { color: var(--red-500); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-link {
    font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.7);
    transition: color 0.2s; position: relative;
}
.nav-link::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
    background: var(--red-500); transition: width 0.3s;
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }
.nav-phone { display: inline-flex; align-items: center; gap: 6px; }
.nav-phone svg { flex-shrink: 0; }
.nav-cta-link {
    font-size: 0.88rem; font-weight: 600; color: #fff;
    background: var(--red-500); padding: 10px 22px; border-radius: var(--radius-full);
    transition: all 0.25s;
}
.nav-cta-link:hover { background: var(--red-600); transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; z-index: 1001; padding: 4px; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; transition: all 0.3s; border-radius: 2px; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg-image { position: absolute; inset: 0; }
.hero-bg-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(2,6,23,0.88) 0%, rgba(15,23,42,0.75) 40%, rgba(15,23,42,0.6) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 140px 24px 80px; width: 100%; }
.hero-content { max-width: 650px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(220,38,38,0.12); border: 1px solid rgba(220,38,38,0.3);
    padding: 8px 20px; border-radius: var(--radius-full);
    font-size: 0.82rem; font-weight: 600; color: #fca5a5;
    margin-bottom: 28px; animation: fadeUp 0.7s ease;
    text-transform: uppercase; letter-spacing: 0.08em;
}
.badge-pulse { width: 8px; height: 8px; background: var(--red-500); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{ opacity:1; transform:scale(1); } 50%{ opacity:0.4; transform:scale(1.4); } }
.hero-title {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem); font-weight: 800;
    color: #fff; line-height: 1.08; letter-spacing: -0.03em;
    margin-bottom: 24px; animation: fadeUp 0.7s ease 0.1s both;
}
.hero-accent { color: var(--red-500); }
.hero-sub {
    font-size: 1.15rem; color: var(--slate-400); max-width: 520px;
    line-height: 1.7; margin-bottom: 40px; animation: fadeUp 0.7s ease 0.2s both;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 72px; animation: fadeUp 0.7s ease 0.3s both; }
.hero-metrics { display: flex; align-items: center; gap: 40px; animation: fadeUp 0.7s ease 0.4s both; }
.metric { text-align: center; }
.metric-num { font-size: 2.8rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.metric-unit { font-size: 1.5rem; font-weight: 700; color: var(--red-500); }
.metric-label { display: block; font-size: 0.75rem; color: var(--slate-400); margin-top: 4px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
.metric-sep { width: 1px; height: 52px; background: rgba(255,255,255,0.1); }
@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }

/* ===== TRUST STRIP ===== */
.trust-strip { background: var(--slate-900); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 20px 0; }
.trust-row { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; font-weight: 500; color: var(--slate-400); }
.trust-badge svg { color: var(--red-500); flex-shrink: 0; }

/* ===== SECTION HEADERS ===== */
.tag { display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--red-500); margin-bottom: 12px; }
.tag-light { color: #fca5a5; }
.section-head { margin-bottom: 56px; }
.section-head h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800; letter-spacing: -0.025em; margin-bottom: 14px; }
.section-sub { font-size: 1.05rem; color: var(--slate-500); max-width: 560px; line-height: 1.7; }
.text-white { color: #fff; }
.text-gray { color: var(--slate-400); }

/* ===== SERVICES ===== */
.services { padding: 100px 0; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.service-card {
    background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius-lg);
    overflow: hidden; transition: all 0.35s ease; cursor: pointer;
}
.service-card:hover { border-color: var(--slate-300); box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
.service-featured { grid-row: span 2; border-color: var(--slate-800); background: var(--slate-900); color: #fff; }
.service-featured:hover { border-color: var(--slate-700); box-shadow: 0 16px 50px rgba(0,0,0,0.25); }
.service-img { width: 100%; height: 240px; object-fit: cover; }
.service-body { padding: 32px; }
.service-badge {
    display: inline-block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; background: var(--red-500); color: #fff;
    padding: 4px 12px; border-radius: var(--radius-full); margin-bottom: 16px;
}
.service-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--slate-500); font-size: 0.92rem; line-height: 1.7; margin-bottom: 18px; }
.service-featured p { color: var(--slate-400); }
.service-list { list-style: none; margin-bottom: 24px; }
.service-list li { padding: 5px 0 5px 22px; position: relative; font-size: 0.88rem; color: var(--slate-400); }
.service-list li::before { content: '\2713'; position: absolute; left: 0; color: var(--red-500); font-weight: 700; }
.service-action { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 0.88rem; color: var(--red-500); transition: gap 0.25s; }
.service-featured .service-action { color: #fca5a5; }
.service-action:hover { gap: 12px; }

/* ===== PROCESS ===== */
.process { padding: 100px 0; background: var(--slate-50); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-card {
    background: #fff; border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--slate-200); transition: all 0.35s ease;
    position: relative;
}
.process-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
.process-num {
    position: absolute; top: 16px; left: 16px; z-index: 2;
    font-size: 0.75rem; font-weight: 800; color: #fff;
    background: var(--red-500); width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
}
.process-img { width: 100%; height: 200px; object-fit: cover; }
.process-card h3 { font-size: 1.1rem; font-weight: 700; padding: 20px 20px 8px; }
.process-card p { font-size: 0.88rem; color: var(--slate-500); line-height: 1.65; padding: 0 20px 24px; }

/* ===== COMPARISON ===== */
.comparison { padding: 100px 0; }
.compare-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: 0 4px 30px rgba(0,0,0,0.08); margin-bottom: 64px; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 680px; }
.compare-table th, .compare-table td { padding: 18px 24px; text-align: left; border-bottom: 1px solid var(--slate-100); font-size: 0.9rem; }
.compare-table thead th { background: var(--slate-900); color: #fff; font-weight: 600; }
.compare-table thead th:first-child { border-radius: var(--radius-lg) 0 0 0; }
.compare-table thead th:last-child { border-radius: 0 var(--radius-lg) 0 0; }
.col-pdr { background: rgba(220,38,38,0.04); }
.compare-table thead .col-pdr { background: var(--red-600); }
.recommend-badge { display: block; font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.1em; background: rgba(255,255,255,0.2); padding: 2px 10px; border-radius: var(--radius-full); margin-bottom: 6px; width: fit-content; }
.col-trad { color: var(--slate-500); }
.factor { font-weight: 700; color: var(--slate-700); width: 140px; }
.compare-table tbody tr:hover { background: var(--slate-50); }
.compare-table tbody tr:hover .col-pdr { background: rgba(220,38,38,0.08); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.icon-yes { color: var(--green-500); font-weight: 700; margin-right: 8px; }
.icon-no { color: var(--red-500); font-weight: 700; margin-right: 8px; }

/* Charts */
.charts { max-width: 680px; margin: 0 auto; }
.charts-title { font-size: 1.3rem; font-weight: 700; text-align: center; margin-bottom: 36px; }
.chart-grid { display: flex; flex-direction: column; gap: 32px; }
.chart-label { font-weight: 700; font-size: 0.9rem; color: var(--slate-700); margin-bottom: 12px; }
.bar-row { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.bar-name { width: 85px; font-size: 0.78rem; font-weight: 500; color: var(--slate-500); text-align: right; flex-shrink: 0; }
.bar-track { flex: 1; height: 34px; background: var(--slate-100); border-radius: var(--radius-full); overflow: hidden; position: relative; }
.bar-fill {
    height: 100%; border-radius: var(--radius-full);
    display: flex; align-items: center; justify-content: flex-end;
    padding-right: 14px; font-size: 0.75rem; font-weight: 700; color: #fff;
    width: 0; transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}
.bar-fill::after { content: attr(data-value); }
.bar-blue { background: linear-gradient(90deg, var(--red-500), var(--red-600)); }
.bar-gray { background: linear-gradient(90deg, var(--slate-400), var(--slate-500)); }

/* ===== RESULTS ===== */
.results { padding: 100px 0; background: var(--slate-950); }
.results-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 48px; }
.result-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--slate-900); border: 1px solid rgba(255,255,255,0.06); }
.result-full-img { width: 100%; height: 100%; object-fit: cover; min-height: 300px; }
.result-caption { padding: 24px; }
.result-caption h4 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.result-caption p { font-size: 0.88rem; color: var(--slate-400); }

/* Before/After Slider */
.ba-slider { position: relative; width: 100%; aspect-ratio: 16/10; overflow: hidden; cursor: ew-resize; user-select: none; }
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-before-img { clip-path: inset(0 50% 0 0); z-index: 2; }
.ba-after-img { z-index: 1; }
.ba-handle { position: absolute; left: 50%; top: 0; bottom: 0; z-index: 3; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.ba-line { width: 2px; flex: 1; background: #fff; box-shadow: 0 0 12px rgba(0,0,0,0.4); }
.ba-circle {
    width: 44px; height: 44px; background: var(--red-500); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4); border: 3px solid #fff; flex-shrink: 0;
}
.ba-label {
    position: absolute; top: 16px; z-index: 4;
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
    color: #fff; background: rgba(0,0,0,0.5); padding: 4px 12px; border-radius: var(--radius-full);
    backdrop-filter: blur(4px);
}
.ba-label-before { left: 16px; }
.ba-label-after { right: 16px; }

/* Shop Showcase */
.shop-showcase {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    height: 400px;
}
.shop-img { width: 100%; height: 100%; object-fit: cover; }
.shop-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(2,6,23,0.9) 0%, transparent 60%);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 48px;
}
.shop-overlay h3 { font-size: 1.6rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.shop-overlay p { font-size: 1rem; color: var(--slate-400); max-width: 480px; }

/* ===== FAQ ===== */
.faq { padding: 100px 0; background: var(--slate-50); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--slate-200); }
.faq-q {
    display: flex; align-items: center; justify-content: space-between; width: 100%;
    padding: 22px 0; background: none; border: none; cursor: pointer;
    font-family: var(--font); font-size: 1rem; font-weight: 600;
    color: var(--slate-800); text-align: left; gap: 16px; transition: color 0.2s;
}
.faq-q:hover { color: var(--red-500); }
.faq-icon { flex-shrink: 0; transition: transform 0.3s; color: var(--slate-400); }
.faq-item.active .faq-icon { transform: rotate(180deg); color: var(--red-500); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-a { max-height: 300px; }
.faq-a p { padding-bottom: 22px; color: var(--slate-500); line-height: 1.7; font-size: 0.92rem; }

/* ===== CTA BANNER ===== */
.cta-banner { position: relative; padding: 100px 0; overflow: hidden; }
.cta-bg-img { position: absolute; inset: 0; }
.cta-bg-img img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(2,6,23,0.92), rgba(15,23,42,0.85)); }
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 600px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800; color: #fff; margin-bottom: 16px; }
.cta-inner p { font-size: 1.1rem; color: var(--slate-400); line-height: 1.7; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: 2rem; font-weight: 800; margin-bottom: 14px; }
.contact-info > p { color: var(--slate-500); line-height: 1.7; margin-bottom: 36px; }
.info-items { display: flex; flex-direction: column; gap: 24px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-icon {
    width: 46px; height: 46px; background: rgba(220,38,38,0.08); border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--red-500);
}
.info-item strong { display: block; font-size: 0.82rem; color: var(--slate-900); margin-bottom: 2px; }
.info-item p { font-size: 0.88rem; color: var(--slate-500); }
.info-item a { color: var(--red-500); }
.info-item a:hover { text-decoration: underline; }
.contact-form-card {
    background: #fff; border-radius: var(--radius-lg); padding: 40px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08); border: 1px solid var(--slate-200);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--slate-700); margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea {
    width: 100%; padding: 12px 16px; border: 1px solid var(--slate-300);
    border-radius: var(--radius); font-family: var(--font); font-size: 0.92rem;
    color: var(--slate-800); transition: all 0.2s; background: #fff;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    outline: none; border-color: var(--red-500); box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
}
.form-field textarea { resize: vertical; }
.form-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 5L6 8L9 5' stroke='%2394a3b8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.form-note { font-size: 0.75rem; color: var(--slate-400); margin-top: 14px; text-align: center; }
.form-note a { color: var(--red-500); }
.form-note a:hover { text-decoration: underline; }
.form-success { text-align: center; padding: 60px 20px; }
.form-success-icon { width: 60px; height: 60px; background: rgba(220,38,38,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--red-500); }
.form-success h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.form-success p { color: var(--slate-500); font-size: 0.92rem; }

/* ===== FOOTER ===== */
.footer { background: var(--slate-900); padding: 72px 0 36px; color: var(--slate-400); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo-text { display: block; margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-contact-info { margin-bottom: 20px; }
.footer-contact-info p { font-size: 0.85rem; margin-bottom: 6px; line-height: 1.5; }
.footer-contact-info a { color: var(--slate-400); transition: color 0.2s; }
.footer-contact-info a:hover { color: #fca5a5; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
    color: var(--slate-400); transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--red-500); color: var(--red-500); background: rgba(220,38,38,0.08); }
.footer-col h4 { font-weight: 700; color: #fff; margin-bottom: 18px; font-size: 0.9rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.85rem; color: var(--slate-400); transition: color 0.2s; }
.footer-col a:hover { color: #fca5a5; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 28px; text-align: center; font-size: 0.82rem; }

/* ===== SCROLL ANIMATIONS ===== */
.anim-up { opacity: 0; transform: translateY(30px); transition: all 0.6s cubic-bezier(0.4,0,0.2,1); }
.anim-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .service-featured { grid-row: auto; }
    .results-showcase { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        background: var(--slate-900); flex-direction: column; padding: 100px 36px 40px;
        gap: 24px; box-shadow: -8px 0 40px rgba(0,0,0,0.3); transition: right 0.3s ease; z-index: 1000;
    }
    .nav-links.active { right: 0; }
    .nav-links .nav-link { color: var(--slate-300); font-size: 1.05rem; }
    .nav-toggle { display: flex; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
    .hero { min-height: auto; }
    .hero-inner { padding: 120px 24px 60px; }
    .hero-metrics { flex-direction: column; gap: 20px; align-items: flex-start; }
    .metric-sep { display: none; }
    .hero-buttons { flex-direction: column; }
    .process-grid { grid-template-columns: 1fr; }
    .trust-row { gap: 20px; }
    .cta-btns { flex-direction: column; align-items: center; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .shop-showcase { height: 280px; }
    .shop-overlay { padding: 28px; }
    .contact-form-card { padding: 28px; }
    .compare-table-wrap { margin-left: -24px; margin-right: -24px; border-radius: 0; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .metric-num { font-size: 2.2rem; }
    .section-head h2 { font-size: 1.7rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
