:root {
    --primary: #0067FF;
    --primary-dark: #005EE9;
    --dark: #0F172A;
    --text: #364151;
    --light-bg: #E7F6FF;
    --white: #FFFFFF;
    --border: #D1DAE5;
    --near-black: #070614;
    --gray: #222222;
    --line: rgba(15, 23, 42, 0.12);
    --shadow: 0 24px 80px rgba(15, 23, 42, 0.12);
    --radius-xl: 32px;
    --radius-lg: 22px;
    --radius-md: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: "Tajawal", sans-serif;
    color: var(--dark);
    background: linear-gradient(180deg, #f8fbff 0%, var(--light-bg) 100%);
    line-height: 1.75;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

/* ─── Topbar ─── */
.topbar {
    background: var(--near-black);
    color: #fff;
    font-size: 0.92rem;
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
}

/* ─── Shared flex lists ─── */
.topbar-links,
.main-nav-links,
.footer-links,
.contact-list,
.mini-points {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.topbar-links a,
.footer-links a { opacity: 0.88; }
.topbar-links a:hover,
.footer-links a:hover,
.main-nav-links a:hover { opacity: 1; }

/* ─── Header ─── */
.main-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
    background: rgba(248, 251, 255, 0.85);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 0;
    font-family: "Changa", sans-serif;
    font-weight: 700;
}
.brand img {
    height: 52px;
    width: auto;
    object-fit: contain;
}
.brand-copy { display: none; }
.main-nav-links a { font-weight: 600; color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    padding: 8px;
    cursor: pointer;
    position: relative;
    z-index: 52;
}
.menu-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform 300ms ease, opacity 200ms ease;
    transform-origin: center;
}
.menu-toggle.is-active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Menu overlay */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 49;
    opacity: 0;
    visibility: hidden;
    transition: opacity 300ms ease, visibility 300ms ease;
}
.menu-overlay.is-visible { opacity: 1; visibility: visible; }

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #338aff 100%);
    color: #fff;
    box-shadow: 0 14px 32px rgba(0, 103, 255, 0.28);
}
.btn-secondary {
    background: rgba(0, 103, 255, 0.08);
    color: var(--primary);
}
.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}
.btn-whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.25);
}

/* ─── Hero ─── */
.hero { padding: 56px 0 24px; }

.hero-grid,
.content-grid,
.cards-grid,
.stats-grid,
.contact-grid,
.footer-grid,
.dual-grid,
.policy-grid {
    display: grid;
    gap: 24px;
}
.hero-grid { grid-template-columns: 1.1fr 0.9fr; align-items: center; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    padding: 8px 16px;
    background: rgba(0, 103, 255, 0.1);
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 18px;
}

.hero h1, .page-hero h1 {
    margin: 0 0 18px;
    font-family: "Changa", sans-serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.18;
    color: var(--dark);
}

.hero p, .page-hero p, .section-intro {
    margin: 0;
    color: var(--text);
    font-size: 1.08rem;
}

.hero-actions, .section-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.mini-points { margin-top: 28px; color: var(--text); font-weight: 600; }
.mini-points span::before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    margin-left: 8px;
    border-radius: 50%;
    background: var(--primary);
}

/* ─── Hero visual ─── */
.hero-visual { position: relative; min-height: 560px; }
.hero-visual::before {
    content: "";
    position: absolute;
    inset: 42px 10px 10px 42px;
    background: linear-gradient(180deg, rgba(0, 103, 255, 0.1) 0%, rgba(0, 94, 233, 0.06) 100%);
    border-radius: 40px;
}

/* ─── Shared card styles ─── */
.hero-card,
.glass-card,
.panel,
.product-card,
.trust-card,
.contact-card,
.policy-card,
.cta-band {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(209, 218, 229, 0.6);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.hero-card {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background:
        linear-gradient(160deg, rgba(15, 23, 42, 0.92) 0%, rgba(0, 67, 155, 0.88) 60%, rgba(0, 103, 255, 0.78) 100%),
        url("../img/hero8-bg.jpg") center/cover;
    color: #fff;
}
.hero-card img.main-figure {
    position: absolute;
    left: 12px;
    bottom: 0;
    width: min(82%, 460px);
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

.hero-badge, .hero-float {
    position: absolute;
    z-index: 2;
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
}
.hero-badge { right: 24px; top: 30px; max-width: 220px; }
.hero-float { right: 30px; bottom: 26px; max-width: 260px; }

.hero-card h2, .hero-card strong, .page-hero h2, .section-title {
    font-family: "Changa", sans-serif;
}
.hero-badge strong, .hero-float strong {
    display: block;
    font-size: 1.35rem;
    margin-bottom: 6px;
}

/* ─── Sections ─── */
.section { padding: 40px 0; }
.section-heading {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: end;
    margin-bottom: 28px;
}
.section-title {
    margin: 0 0 10px;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    color: var(--dark);
}

/* ─── Stats ─── */
.stats-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
.glass-card {
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 250ms ease, box-shadow 250ms ease;
}
.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 103, 255, 0.14);
}
.glass-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #338aff);
    border-radius: 4px 4px 0 0;
}
.glass-card strong {
    display: block;
    font-family: "Changa", sans-serif;
    font-size: 2.6rem;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 8px;
}
.glass-card span {
    display: block;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 600;
}

/* ─── Cards grid ─── */
.cards-grid.three { grid-template-columns: repeat(3, 1fr); }
.cards-grid.two, .content-grid, .contact-grid, .footer-grid, .dual-grid, .policy-grid {
    grid-template-columns: repeat(2, 1fr);
}
.trust-card, .product-card, .contact-card, .policy-card, .panel {
    padding: 28px;
}

.icon-chip {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 103, 255, 0.12), rgba(0, 94, 233, 0.08));
    margin-bottom: 16px;
}
.icon-chip img { width: 28px; height: 28px; }
.icon-chip svg { width: 28px; height: 28px; flex-shrink: 0; }

/* ─── Product cards ─── */
.product-card { position: relative; overflow: hidden; }
.product-card::after {
    content: "";
    position: absolute;
    inset: auto -40px -40px auto;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(0, 103, 255, 0.08), transparent 65%);
}
.product-media {
    background: linear-gradient(180deg, rgba(231, 246, 255, 0.7), rgba(209, 218, 229, 0.35));
    border-radius: 24px;
    padding: 18px;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.product-media img { max-height: 280px; object-fit: contain; }

.price {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    padding: 10px 18px;
    background: rgba(0, 103, 255, 0.06);
    font-weight: 800;
    color: var(--primary);
    font-size: 1.1rem;
}
.price-old {
    text-decoration: line-through;
    color: var(--text);
    font-weight: 400;
    font-size: 0.9rem;
}

/* ─── Lists ─── */
.bullets, .policy-list { list-style: none; padding: 0; margin: 18px 0 0; }
.bullets li, .policy-list li, .contact-list li {
    margin-bottom: 10px;
    color: var(--text);
}
.bullets li::before, .policy-list li::before {
    content: "•";
    color: var(--primary);
    margin-left: 10px;
    font-weight: 700;
}

/* ─── Legal page ─── */
.legal-content {
    max-width: 840px;
    margin: 0 auto;
}
.legal-content .legal-intro {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 32px;
}
.legal-section {
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(209,218,229,0.6);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    padding: 28px 32px;
    margin-bottom: 20px;
}
.legal-section h2 {
    font-family: "Changa", sans-serif;
    font-size: 1.25rem;
    color: var(--dark);
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.legal-section h2 .num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0,103,255,0.12), rgba(0,94,233,0.08));
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 800;
}
.legal-section p {
    color: var(--text);
    margin: 0 0 10px;
    line-height: 1.8;
}
.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}
.legal-section ul li {
    color: var(--text);
    margin-bottom: 8px;
    padding-right: 20px;
    position: relative;
}
.legal-section ul li::before {
    content: "•";
    color: var(--primary);
    font-weight: 700;
    position: absolute;
    right: 0;
}
.legal-contact {
    text-align: center;
    padding: 32px 24px;
    background: linear-gradient(135deg, rgba(0,103,255,0.06), rgba(231,246,255,0.5));
    border-radius: var(--radius-xl);
    margin-top: 28px;
}
.legal-contact p { color: var(--text); margin: 0 0 8px; }
.legal-contact a { color: var(--primary); font-weight: 700; }
.legal-updated {
    text-align: center;
    color: rgba(54,65,81,0.6);
    font-size: 0.88rem;
    margin-top: 18px;
}

/* ─── Warranty Tabs ─── */
.warranty-tabs-wrap { padding: 0; overflow: hidden; }
.warranty-tabs {
    display: flex;
    border-bottom: 2px solid var(--border);
}
.warranty-tab {
    flex: 1;
    padding: 18px 24px;
    border: none;
    background: transparent;
    font-family: "Changa", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    position: relative;
    transition: color 250ms ease, background 250ms ease;
}
.warranty-tab:hover { background: rgba(0, 103, 255, 0.04); }
.warranty-tab.active { color: var(--primary); }
.warranty-tab.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    right: 0;
    left: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 3px 3px 0 0;
}
.warranty-panel { display: none; padding: 28px; }
.warranty-panel.active { display: block; }

/* Form rows */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Radio group */
.radio-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 4px;
}
.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    flex: 1;
    min-width: 180px;
    transition: border-color 200ms ease, background 200ms ease;
}
.radio-option:hover { border-color: var(--primary); background: rgba(0, 103, 255, 0.03); }
.radio-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
}
.radio-option input[type="radio"]:checked + .radio-label { color: var(--primary); font-weight: 700; }
.radio-label { font-size: 0.95rem; color: var(--dark); }

/* Warranty success */
.warranty-success {
    text-align: center;
    padding: 28px 20px;
}
.success-icon { font-size: 3rem; margin-bottom: 12px; }
.warranty-success h3 {
    font-family: "Changa", sans-serif;
    color: #22543d;
    font-size: 1.3rem;
    margin-bottom: 20px;
}
.success-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 460px;
    margin: 0 auto 24px;
    text-align: right;
}
.success-details .detail-item {
    padding: 10px 14px;
    background: #f8fafc;
    border-radius: 10px;
    font-size: 0.92rem;
}
.success-details .detail-item strong {
    display: block;
    font-size: 0.82rem;
    color: var(--text);
    margin-bottom: 2px;
}
.success-details .detail-item span { color: var(--dark); font-weight: 600; }

/* Lookup */
.lookup-intro {
    color: var(--text);
    margin: 0 0 20px;
    font-size: 1rem;
}
.lookup-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.lookup-row .form-group { margin-bottom: 0; }
.lookup-results { margin-top: 20px; }
.warranty-result-card {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 12px;
    background: #fafbfc;
}
.warranty-result-card .result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}
.warranty-result-card h4 {
    font-family: "Changa", sans-serif;
    font-size: 1.05rem;
    margin: 0;
    color: var(--dark);
}
.result-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
}
.result-badge.active { background: #f0fff4; color: #22543d; border: 1px solid #c6f6d5; }
.result-badge.expired { background: #fff5f5; color: #9b2c2c; border: 1px solid #fed7d7; }
.result-badge.cancelled { background: #fffaf0; color: #7c4a00; border: 1px solid #feebc8; }
.result-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.result-grid .detail-item {
    padding: 8px 12px;
    background: #fff;
    border-radius: 8px;
    font-size: 0.9rem;
}
.result-grid .detail-item strong {
    display: block;
    font-size: 0.8rem;
    color: var(--text);
    margin-bottom: 2px;
}
.result-grid .detail-item span { color: var(--dark); font-weight: 600; }
.lookup-notfound {
    text-align: center;
    padding: 28px 20px;
    color: var(--text);
}
.lookup-notfound .nf-icon { font-size: 2.5rem; margin-bottom: 10px; }

/* ─── CTA band ─── */
.band { padding: 10px 0 36px; }
.cta-band {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding: 48px 34px;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(0, 67, 155, 0.9)),
        url("../img/hero8-bg.jpg") center/cover;
    color: #fff;
}
.cta-band .section-title { color: #fff; }
.cta-band .section-actions { justify-content: center; }

/* ─── Contact Form ─── */
.contact-form { margin-top: 8px; }
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 0.95rem;
    color: var(--dark);
}
.form-group .req { color: #e53e3e; }
.form-group .opt { color: var(--text); font-weight: 400; font-size: 0.85rem; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-family: "Tajawal", sans-serif;
    font-size: 1rem;
    color: var(--dark);
    background: #fff;
    transition: border-color 200ms ease, box-shadow 200ms ease;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 103, 255, 0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #a0aec0; }
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input[dir="ltr"] { text-align: left; }
.btn-block { width: 100%; justify-content: center; font-size: 1.05rem; padding: 16px; }
.form-alert {
    padding: 12px 16px;
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    font-weight: 600;
    font-size: 0.95rem;
}
.form-alert.success { background: #f0fff4; color: #22543d; border: 1px solid #c6f6d5; }
.form-alert.error { background: #fff5f5; color: #9b2c2c; border: 1px solid #fed7d7; }

/* ─── Page hero ─── */
.page-hero { padding: 48px 0 12px; }
.page-hero-card {
    padding: 34px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(231, 246, 255, 0.88)),
        url("../img/hero8-bg.jpg") center/cover;
}
.page-kicker {
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 10px;
}

/* ─── Media panel ─── */
.media-panel { overflow: hidden; min-height: 100%; }
.media-panel img { width: 100%; height: 100%; object-fit: cover; }

/* ─── Contact ─── */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
.contact-list a { font-weight: 700; color: var(--primary); }

/* ─── Footer ─── */
.footer {
    padding: 40px 0 0;
    border-top: 1px solid var(--border);
    margin-top: 18px;
    background: var(--near-black);
    color: #fff;
}
.footer .brand img { height: 40px; filter: brightness(0) invert(1); }
.footer-grid { align-items: start; }
.footer-note { color: rgba(255,255,255,0.65); margin-top: 12px; font-size: 0.92rem; }
.footer a { color: rgba(255,255,255,0.85); }
.footer a:hover { color: #fff; }
.footer h4 {
    font-family: "Changa", sans-serif;
    font-size: 1.1rem;
    margin: 0 0 12px;
    color: #fff;
}
.footer-cols {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col-links li { margin-bottom: 8px; }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
}
.footer-tagline {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    margin-top: 8px;
}

/* ─── Reveal animation ─── */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 500ms ease, transform 500ms ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ─── Responsive ─── */

/* ── Tablet ── */
@media (max-width: 980px) {
    .hero-grid,
    .stats-grid,
    .cards-grid.three,
    .cards-grid.two,
    .content-grid,
    .contact-grid,
    .footer-grid,
    .dual-grid,
    .policy-grid,
    .footer-cols {
        grid-template-columns: 1fr;
    }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-visual { min-height: 480px; }
    .main-nav { flex-wrap: wrap; }
    .main-nav-links {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        flex-direction: column;
        align-items: stretch;
        padding: 80px 0 28px;
        gap: 0;
        background: #fff;
        box-shadow: -6px 0 30px rgba(0,0,0,0.12);
        z-index: 50;
        transition: right 350ms cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }
    .main-nav-links.is-open { right: 0; }
    .main-nav-links a {
        padding: 16px 28px;
        border-bottom: 1px solid var(--line);
        font-size: 1.05rem;
        transition: background 200ms ease, color 200ms ease;
    }
    .main-nav-links a:hover { background: var(--light-bg); color: var(--primary); }
    .menu-toggle { display: flex; }
    .nav-actions { display: none; }
    .product-media { min-height: 260px; }
    .form-row { grid-template-columns: 1fr; }
}

/* ── Mobile ── */
@media (max-width: 640px) {
    .site-shell { width: calc(100% - 24px); }

    /* Topbar */
    .topbar { font-size: 0.82rem; }
    .topbar-inner {
        flex-direction: column;
        align-items: center;
        gap: 6px;
        padding: 8px 0;
        text-align: center;
    }

    /* Header */
    .main-nav { padding: 10px 0; }
    .brand img { height: 40px; }
    .menu-toggle { width: 40px; height: 40px; }

    /* Hero */
    .hero { padding: 20px 0 16px; }
    .hero-grid { gap: 16px; }
    .eyebrow { font-size: 0.85rem; padding: 6px 12px; margin-bottom: 10px; }
    .hero h1, .page-hero h1 { font-size: 1.5rem; line-height: 1.3; margin-bottom: 10px; }
    .hero p, .page-hero p, .section-intro { font-size: 0.92rem; line-height: 1.65; }
    .hero-actions, .section-actions { gap: 10px; margin-top: 16px; }

    /* Hero visual — clean mobile layout */
    .hero-visual { min-height: 420px; }
    .hero-visual::before { display: none; }
    .hero-card { border-radius: var(--radius-lg); display: flex; flex-direction: column; }
    .hero-card img.main-figure {
        position: static;
        width: 70%;
        max-width: 280px;
        margin: 0 auto;
        padding-top: 70px;
        padding-bottom: 70px;
        filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.3));
    }
    .hero-badge {
        top: 14px;
        right: 14px;
        left: auto;
        max-width: 60%;
        padding: 12px 14px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.18);
        backdrop-filter: blur(14px);
    }
    .hero-badge strong { font-size: 1.05rem; margin-bottom: 2px; }
    .hero-badge div { font-size: 0.8rem; line-height: 1.5; }
    .hero-float {
        position: absolute;
        bottom: 0;
        right: 0;
        left: 0;
        max-width: none;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        padding: 14px 18px;
        text-align: center;
        background: linear-gradient(180deg, rgba(0,103,255,0.85), rgba(0,67,155,0.95));
        backdrop-filter: blur(10px);
        border: none;
    }
    .hero-float strong { font-size: 1.2rem; margin-bottom: 0; display: inline; color: #fff; }
    .hero-float div { display: inline; font-size: 0.88rem; margin-right: 6px; color: rgba(255,255,255,0.9); }

    /* Mini points */
    .mini-points { gap: 8px; margin-top: 18px; font-size: 0.88rem; }

    /* Sections */
    .section { padding: 24px 0; }
    .section-heading { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
    .section-title { font-size: 1.4rem; }

    /* Stats */
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .glass-card { padding: 22px 16px; }
    .glass-card strong { font-size: 1.8rem; }

    /* Cards */
    .cards-grid.three, .cards-grid.two { gap: 14px; }
    .trust-card, .product-card, .contact-card, .policy-card, .panel { padding: 20px; }
    .icon-chip { width: 46px; height: 46px; border-radius: 12px; margin-bottom: 12px; }
    .icon-chip img { width: 22px; height: 22px; }
    .icon-chip svg { width: 22px; height: 22px; }

    /* Products */
    .product-media { min-height: 220px; padding: 14px; border-radius: 18px; margin-bottom: 16px; }
    .product-media img { max-height: 200px; }
    .price { font-size: 1rem; padding: 8px 14px; }

    /* Buttons */
    .btn { padding: 12px 18px; font-size: 0.92rem; }
    .btn-primary { box-shadow: 0 8px 20px rgba(0, 103, 255, 0.2); }

    /* CTA Band */
    .cta-band { padding: 28px 18px; gap: 16px; border-radius: var(--radius-lg); }
    .cta-band .section-title { font-size: 1.3rem; }

    /* Page Hero */
    .page-hero { padding: 24px 0 8px; }
    .page-hero-card { padding: 22px; border-radius: var(--radius-lg); }

    /* Policy grid */
    .policy-grid { gap: 14px; }
    .policy-card { padding: 18px; }

    /* Footer */
    .footer { padding: 28px 0 0; }
    .footer-cols { gap: 20px; padding-bottom: 20px; }
    .footer h4 { font-size: 1rem; margin-bottom: 8px; }
    .footer-col-links li { margin-bottom: 6px; font-size: 0.92rem; }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 14px 0;
    }
    .footer-tagline { font-size: 0.9rem; }
    .footer-note { font-size: 0.85rem; }

    /* Contact */
    .contact-list li { font-size: 0.95rem; }

    /* Warranty */
    .warranty-tab { font-size: 0.95rem; padding: 14px 12px; }
    .warranty-panel { padding: 20px 16px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .radio-option { min-width: 100%; }
    .lookup-row { flex-direction: column; }
    .lookup-row .btn { width: 100%; justify-content: center; }
    .success-details { grid-template-columns: 1fr; }
    .result-grid { grid-template-columns: 1fr; }

    /* Dual grid media */
    .media-panel { min-height: 240px; border-radius: var(--radius-lg); }

    /* Legal pages */
    .legal-section { padding: 20px; border-radius: var(--radius-lg); }
    .legal-section h2 { font-size: 1.1rem; }
    .legal-contact { padding: 24px 18px; border-radius: var(--radius-lg); }
}

/* ── Small phones ── */
@media (max-width: 380px) {
    .brand img { height: 34px; }
    .hero h1, .page-hero h1 { font-size: 1.4rem; }
    .section-title { font-size: 1.25rem; }
    .hero-visual { min-height: 300px; }
    .stats-grid { grid-template-columns: 1fr; }
    .btn { padding: 11px 16px; font-size: 0.88rem; }
}
