/* =================================================================
   Hotspot Mobile Repair  —  design system
   ================================================================= */

:root {
    /* brand */
    --brand: #ff3d2e;
    --brand-deep: #d92516;
    --brand-soft: #ffece9;

    /* neutrals */
    --ink: #0b1024;
    --ink-2: #1a1f3a;
    --ink-3: #4a5071;
    --muted: #6b7290;
    --line: #e7e9f1;
    --paper: #ffffff;
    --bg: #f7f8fc;
    --bg-alt: #eef1f8;

    /* accents */
    --green: #25d366;
    --green-deep: #128c7e;
    --gold: #ffd166;
    --blue: #3b82f6;

    /* layout */
    --maxw: 1180px;
    --radius: 14px;
    --radius-lg: 22px;
    --shadow-sm: 0 1px 2px rgba(11,16,36,.06), 0 2px 6px rgba(11,16,36,.04);
    --shadow-md: 0 6px 20px rgba(11,16,36,.08), 0 12px 40px rgba(11,16,36,.06);
    --shadow-lg: 0 20px 60px rgba(11,16,36,.18);

    /* type */
    --font-display: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    /* Native offset so #anchor jumps land below the sticky header */
    scroll-padding-top: 88px;
    /* Stop iOS Safari from auto-resizing fonts in landscape */
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    /* Stop accidental horizontal scroll from any overflowing element */
    overflow-x: hidden;
}

/* Brand-coloured tap flash instead of the default iOS grey-blue */
a, button, [role="button"] { -webkit-tap-highlight-color: rgba(255, 61, 46, .12); }

/* Keyboard / accessibility focus ring */
:focus-visible {
    outline: 3px solid rgba(255, 61, 46, .55);
    outline-offset: 2px;
    border-radius: 6px;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.15;
    margin: 0 0 .5em;
    letter-spacing: -0.02em;
    color: var(--ink);
}
h1 { font-size: clamp(2.1rem, 4.6vw + .5rem, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 2.4vw + .8rem, 2.75rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }
p  { margin: 0 0 1em; color: var(--ink-3); }

.container {
    width: 100%;
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: 22px;
}

/* =================================================================
   Eyebrow / pill labels
   ================================================================= */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--brand);
    background: var(--brand-soft);
    padding: 6px 12px;
    border-radius: 999px;
}
.eyebrow--dark {
    background: rgba(255,61,46,.08);
    color: var(--brand-deep);
}
.eyebrow svg { color: currentColor; }

/* =================================================================
   Buttons
   ================================================================= */
.btn {
    --bg: var(--ink);
    --fg: #fff;
    --bd: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border-radius: 12px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -.01em;
    background: var(--bg);
    color: var(--fg);
    border: 1.5px solid var(--bd);
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
    text-decoration: none;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn--primary  { --bg: var(--brand); --fg:#fff; --bd: var(--brand); }
.btn--primary:hover { --bg: var(--brand-deep); --bd: var(--brand-deep); }

.btn--secondary { --bg:#fff; --fg: var(--ink); --bd:#fff; }
.btn--secondary:hover { --bg:#fff; --fg: var(--brand); }

.btn--whatsapp { --bg: var(--green); --fg:#fff; --bd: var(--green); }
.btn--whatsapp:hover { --bg: var(--green-deep); --bd: var(--green-deep); }

.btn--accent { --bg: var(--gold); --fg: var(--ink); --bd: var(--gold); box-shadow: 0 6px 18px rgba(255,209,102,.35); }
.btn--accent:hover { --bg: #ffc233; --bd: #ffc233; }

.btn--ghost {
    --bg: transparent; --fg: var(--ink); --bd: rgba(11,16,36,.18);
}
.btn--ghost:hover { --bg: var(--ink); --fg:#fff; --bd: var(--ink); }

.btn--ghost-dark {
    --bg: transparent; --fg: var(--ink); --bd: var(--ink);
}
.btn--ghost-dark:hover { --bg: var(--ink); --fg:#fff; }

.btn--ghost-light {
    --bg: rgba(255,255,255,.1);
    --fg: #fff;
    --bd: rgba(255,255,255,.35);
    backdrop-filter: blur(6px);
}
.btn--ghost-light:hover { --bg: #fff; --fg: var(--ink); --bd:#fff; }

.btn--lg { padding: 16px 26px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* =================================================================
   Announcement bar
   ================================================================= */
.announce {
    background: linear-gradient(135deg, #0b1024 0%, #1a1f3a 100%);
    color: #fff;
    font-size: .9rem;
    padding: 9px 0;
}
.announce__inner {
    display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
    text-align: center;
}
.announce strong { color: #fff; }
.announce__dot {
    width: 9px; height: 9px; border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34,197,94,.7);
    animation: pulse 1.8s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(34,197,94,.7); }
    70% { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.announce__link {
    color: #fff;
    background: rgba(255,255,255,.12);
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,.2);
}
.announce__link:hover { background: var(--brand); border-color: var(--brand); text-decoration: none; }
.announce__link--alt { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.announce__link--alt:hover { background: #ffc233; border-color: #ffc233; color: var(--ink); }

/* =================================================================
   Header
   ================================================================= */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,.85);
    backdrop-filter: saturate(160%) blur(12px);
    border-bottom: 1px solid var(--line);
}
.site-header__inner {
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    padding-block: 14px;
}

.logo { display: flex; align-items: center; gap: 10px; color: var(--ink); font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; letter-spacing:-.02em; }
.logo:hover { text-decoration: none; }
.logo__mark {
    width: 36px; height: 36px; border-radius: 10px;
    background: linear-gradient(135deg, var(--brand) 0%, #ff7a3d 100%);
    display: grid; place-items: center;
    box-shadow: 0 6px 18px rgba(255,61,46,.35);
}
.logo__text em { font-style: normal; color: var(--brand); font-weight: 700; }
.logo--light, .logo--light .logo__text em { color: #fff; }
.logo--light .logo__text em { color: var(--brand); }

.nav { display: flex; gap: 26px; align-items: center; }
.nav a { color: var(--ink-3); font-weight: 600; font-size: .95rem; }
.nav a:hover { color: var(--brand); text-decoration: none; }

.header-cta { display: flex; gap: 10px; }

.hamburger {
    display: none;
    width: 42px; height: 42px;
    border-radius: 10px;
    background: var(--bg);
    border: 1px solid var(--line);
    flex-direction: column;
    align-items: center; justify-content: center;
    gap: 4px; cursor: pointer;
}
.hamburger span {
    display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 8px 22px 22px;
    border-top: 1px solid var(--line);
    background: #fff;
    /* Allow the menu to scroll if the screen is tiny (e.g. landscape phone) */
    max-height: calc(100dvh - 60px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}
.mobile-menu:not([hidden]) {
    display: flex;
    animation: menu-down .22s cubic-bezier(.2,.7,.3,1);
}
@keyframes menu-down {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (min-width: 901px) {
    /* Above the mobile breakpoint, the menu must never appear regardless of toggle state */
    .mobile-menu { display: none !important; }
}
.mobile-menu > a {
    color: var(--ink); font-weight: 600; padding: 16px 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--line);
    display: flex; align-items: center; justify-content: space-between;
}
.mobile-menu > a::after {
    content: "›";
    color: var(--muted);
    font-size: 1.4rem;
    line-height: 1;
}
.mobile-menu > a:last-of-type { border-bottom: none; }

.mobile-menu__actions {
    display: flex; flex-direction: column; gap: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    margin-top: 4px;
}
.mobile-menu__actions .btn { width: 100%; }

/* =================================================================
   Hero
   ================================================================= */
.hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(1200px 600px at -10% -20%, rgba(255,61,46,.18) 0%, transparent 60%),
                radial-gradient(900px 600px at 110% 10%, rgba(59,130,246,.18) 0%, transparent 55%),
                linear-gradient(180deg, #0b1024 0%, #131838 100%);
    color: #fff;
    padding: 64px 0 110px;
}
.hero__bg {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,.4) 50%, transparent 51%),
        radial-gradient(1px 1px at 70% 65%, rgba(255,255,255,.3) 50%, transparent 51%),
        radial-gradient(1.5px 1.5px at 80% 20%, rgba(255,255,255,.35) 50%, transparent 51%),
        radial-gradient(1px 1px at 40% 80%, rgba(255,255,255,.25) 50%, transparent 51%);
    background-size: 240px 240px;
    opacity: .6;
    pointer-events: none;
}
.hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 56px;
    align-items: center;
}
.hero__content { max-width: 640px; }
.hero .eyebrow { background: rgba(255,255,255,.1); color: #ffd9d5; border:1px solid rgba(255,255,255,.2); }

.hero__title {
    color: #fff;
    font-size: clamp(2.25rem, 4.4vw + .4rem, 4rem);
    line-height: 1.05;
    margin-block: 18px 18px;
}
.hero__title .hl {
    background: linear-gradient(90deg, var(--brand) 0%, #ff8a3d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}
@media (max-width: 720px) { .hero__title .hl { white-space: normal; } }

.hero__sub {
    color: rgba(255,255,255,.82);
    font-size: 1.1rem;
    max-width: 56ch;
    margin-bottom: 28px;
}
.hero__sub strong { color: #fff; font-weight: 600; }

.hero__ctas {
    display: flex; flex-wrap: wrap; gap: 12px;
    margin-bottom: 28px;
}

.hero__trust {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    list-style: none; padding: 0; margin: 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.12);
}
.hero__trust li {
    font-size: .85rem;
    color: rgba(255,255,255,.7);
    line-height: 1.35;
}
.hero__trust strong { display: block; color: #fff; font-size: 1.05rem; font-family: var(--font-display); font-weight: 800; margin-bottom: 2px; }

/* Hero visual */
.hero__visual { position: relative; }
.hero__visual-caption {
    text-align: center;
    font-size: .9rem;
    color: rgba(255,255,255,.6);
    margin-top: 16px;
}

/* =================================================================
   Before / After slider
   ================================================================= */
.ba-slider {
    position: relative;
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,.45), 0 6px 16px rgba(0,0,0,.25);
    user-select: none;
    /* Vertical scroll passes through to the page; only horizontal swipes drive the slider */
    touch-action: pan-y;
    cursor: ew-resize;
}
.ba-slider__img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
}
.ba-slider__img--before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
    will-change: clip-path;
}
.ba-slider__handle {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    pointer-events: none;
}
.ba-slider__line {
    position: absolute;
    top: 0; bottom: 0; left: 50%;
    width: 3px; margin-left: -1.5px;
    background: #fff;
    box-shadow: 0 0 18px rgba(0,0,0,.4);
}
.ba-slider__knob {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 46px; height: 46px;
    border-radius: 50%;
    background: #fff;
    color: var(--ink);
    display: grid; place-items: center;
    box-shadow: 0 8px 22px rgba(0,0,0,.45);
    border: 3px solid var(--brand);
}
.ba-slider__label {
    position: absolute;
    top: 14px;
    padding: 5px 10px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 800;
    background: rgba(0,0,0,.55);
    color: #fff;
    backdrop-filter: blur(4px);
    z-index: 4;
}
.ba-slider__label--before { left: 14px; }
.ba-slider__label--after  { right: 14px; }

/* =================================================================
   Trust strip
   ================================================================= */
.strip {
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
}
.strip__inner {
    display: flex; flex-wrap: wrap; gap: 22px 32px; align-items: center; justify-content: center;
}
.strip__label {
    font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
    color: var(--muted); font-weight: 600;
}
.strip__brand {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--ink-2);
    opacity: .75;
    transition: opacity .2s ease, color .2s ease;
}
.strip__brand:hover { opacity: 1; color: var(--brand); }

/* =================================================================
   Generic section
   ================================================================= */
.section { padding: 90px 0; background: var(--paper); }
.section--alt { background: var(--bg); }
.section__head { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section__lead { font-size: 1.1rem; color: var(--ink-3); }

/* =================================================================
   Services
   ================================================================= */
.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.service {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 22px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    position: relative;
}
.service:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.service--feature {
    background: linear-gradient(135deg, #fff 0%, var(--brand-soft) 100%);
    border-color: rgba(255, 61, 46, .2);
    position: relative;
    overflow: hidden;
}
.service--feature::before {
    content: "AUTHORISED DEALER";
    position: absolute;
    top: 14px; right: -28px;
    transform: rotate(35deg);
    background: var(--brand);
    color: #fff;
    font-family: var(--font-display);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .14em;
    padding: 3px 28px;
    box-shadow: 0 4px 10px rgba(255,61,46,.4);
}
.service__icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--icon) 14%, white);
    color: var(--icon);
    display: grid; place-items: center;
    margin-bottom: 16px;
}
.service h3 { margin-bottom: 6px; }
.service p { font-size: .95rem; margin-bottom: 12px; }
.service__tag {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    color: var(--ink);
    background: var(--bg-alt);
    padding: 5px 10px;
    border-radius: 999px;
    letter-spacing: -.005em;
}

.cta-row {
    margin-top: 40px;
    text-align: center;
    display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; align-items: center;
}
.cta-row p { margin: 0; font-weight: 600; color: var(--ink); }

/* =================================================================
   Devices grid
   ================================================================= */
.devices {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.device-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px 18px;
    display: flex; flex-direction: column; gap: 4px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.device-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--brand); }
.device-card strong { font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; color: var(--ink); }
.device-card span { font-size: .82rem; color: var(--muted); }

.device-card--accent {
    background: linear-gradient(135deg, var(--brand) 0%, #ff7a3d 100%);
    border-color: transparent;
    color: #fff;
}
.device-card--accent strong, .device-card--accent span { color: #fff; }
.device-card--accent a { color: #fff; text-decoration: underline; }

/* =================================================================
   Why-choose-us pillars
   ================================================================= */
.pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.pillar {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 22px;
    position: relative;
}
.pillar__num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2rem;
    color: var(--brand);
    margin-bottom: 8px;
    letter-spacing: -.04em;
}
.pillar h3 { margin-bottom: 8px; }
.pillar p { font-size: .95rem; margin: 0; }

/* =================================================================
   Gallery
   ================================================================= */
.gallery {
    margin-top: 64px;
    padding: 36px;
    background: linear-gradient(135deg, #0b1024 0%, #1a1f3a 100%);
    border-radius: var(--radius-lg);
    color: #fff;
}
.gallery__title { color: #fff; margin-bottom: 4px; }
.gallery__sub { color: rgba(255,255,255,.55); font-size: .9rem; margin-bottom: 22px; }
.gallery__sub code { background: rgba(255,255,255,.1); padding: 2px 6px; border-radius: 5px; font-family: ui-monospace, "SF Mono", monospace; font-size: .85em; color: #fff; }
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.gallery__item {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255,255,255,.06);
    aspect-ratio: 4/5;
    position: relative;
    display: flex; flex-direction: column;
}
.gallery__item img {
    width: 100%; height: 100%; object-fit: cover; flex: 1;
}
.gallery__item figcaption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 10px 14px;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.8) 100%);
    font-size: .85rem;
    font-weight: 600;
}
.gallery__ph {
    flex: 1;
    display: grid; place-items: center;
    color: rgba(255,255,255,.45);
    font-family: ui-monospace, "SF Mono", monospace;
    font-size: .85rem;
    background:
        repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 10px, transparent 10px 20px);
    text-align: center;
    padding: 16px;
}

/* =================================================================
   Reviews
   ================================================================= */
.reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.review {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow-sm);
}
.review__stars { color: #ffb800; font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review p { color: var(--ink-2); font-size: .98rem; line-height: 1.6; }
.review footer { font-size: .9rem; color: var(--muted); margin-top: 12px; }
.review footer strong { color: var(--ink); }

/* =================================================================
   Location
   ================================================================= */
.location {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 30px;
}
.location__info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-content: start;
}
.info-block {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
}
.info-block--areas { grid-column: 1 / -1; }
.info-block h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: .1em; color: var(--brand); margin-bottom: 10px; }
.info-block p { margin: 0 0 14px; font-size: .95rem; color: var(--ink-2); }
.info-block .btn { margin-top: 4px; }

.hours { list-style: none; margin: 0; padding: 0; }
.hours li {
    display: flex; justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed var(--line);
    font-size: .95rem;
    color: var(--ink-2);
}
.hours li:last-child { border-bottom: none; }

.contact-list { display: flex; flex-direction: column; gap: 8px; }
.contact-list a { color: var(--ink); font-weight: 600; }
.contact-list a:hover { color: var(--brand); }

.location__map {
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 420px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
}
.location__map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* =================================================================
   Contact / FAQ
   ================================================================= */
.contact {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}
.contact__form-wrap p { font-size: 1.02rem; color: var(--ink-3); margin-bottom: 22px; }
.form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
    display: flex; flex-direction: column; gap: 16px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form label {
    display: flex; flex-direction: column; gap: 6px;
    font-size: .85rem; font-weight: 600; color: var(--ink-2);
}
.form label span em { color: var(--muted); font-style: normal; font-weight: 400; margin-left: 4px; }
.form input, .form select, .form textarea {
    font-family: inherit;
    /* 16px minimum to stop iOS Safari auto-zooming the page on focus */
    font-size: 16px;
    line-height: 1.4;
    padding: 14px 14px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    background: #fff;
    color: var(--ink);
    /* Strip native iOS styling so our look is consistent */
    appearance: none;
    -webkit-appearance: none;
    min-height: 48px;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.form select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236b7290'><path d='M4 6l4 4 4-4z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 38px;
}
.form input::placeholder, .form textarea::placeholder { color: #aab0c8; }
.form input:focus, .form select:focus, .form textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 4px var(--brand-soft);
}
.form__note { font-size: .8rem; color: var(--muted); text-align: center; margin: 4px 0 0; }

.contact__faq {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    align-self: start;
    position: sticky;
    top: 100px;
}
.contact__faq h3 { font-size: 1.1rem; margin-bottom: 12px; }
.contact__faq details {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}
.contact__faq details:last-child { border-bottom: none; }
.contact__faq summary {
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    color: var(--ink);
    font-family: var(--font-display);
    padding-right: 24px;
    position: relative;
}
.contact__faq summary::-webkit-details-marker { display: none; }
.contact__faq summary::after {
    content: "+";
    position: absolute;
    right: 0; top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    color: var(--brand);
    transition: transform .2s ease;
}
.contact__faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.contact__faq details p { margin-top: 10px; margin-bottom: 0; font-size: .92rem; }

/* =================================================================
   Sticky mobile CTA bar
   ================================================================= */
.sticky-cta {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 60;
    display: none;
    background: rgba(255,255,255,.96);
    backdrop-filter: saturate(160%) blur(14px);
    box-shadow: 0 -8px 28px rgba(11,16,36,.14);
    border-top: 1px solid var(--line);
    padding: 6px max(env(safe-area-inset-left, 0px), 6px) calc(6px + env(safe-area-inset-bottom, 0px));
}
.sticky-cta a {
    flex: 1;
    min-height: 56px;            /* WCAG / Apple HIG comfortable tap target */
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 3px;
    padding: 8px 4px;
    border-radius: 10px;
    font-size: .72rem;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    position: relative;
    transition: background .15s ease, color .15s ease, transform .08s ease;
}
.sticky-cta a:hover { background: var(--bg); color: var(--brand); text-decoration: none; }
.sticky-cta a:active { transform: scale(.94); background: var(--bg-alt); }
/* Thin divider between items so the bar reads as four buttons, not a blob */
.sticky-cta a + a::before {
    content: "";
    position: absolute;
    left: 0; top: 22%; bottom: 22%;
    width: 1px;
    background: var(--line);
}
.sticky-cta a:nth-child(1) { color: var(--brand); }
.sticky-cta a:nth-child(3) { color: var(--green-deep); }
.sticky-cta a:nth-child(4) { color: var(--blue); }

/* =================================================================
   Footer
   ================================================================= */
.site-footer {
    background: #0b1024;
    color: rgba(255,255,255,.7);
    padding-top: 60px;
}
.site-footer__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 48px;
}
.site-footer__brand p { color: rgba(255,255,255,.55); font-size: .92rem; margin-top: 14px; max-width: 32ch; }
.site-footer__col h4 {
    color: #fff;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-bottom: 14px;
}
.site-footer__col a, .site-footer__col p {
    display: block;
    color: rgba(255,255,255,.65);
    font-size: .92rem;
    padding: 5px 0;
    text-decoration: none;
}
.site-footer__col a:hover { color: var(--brand); text-decoration: none; }

.site-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
    font-size: .82rem;
}
.site-footer__bottom .container {
    display: flex; flex-wrap: wrap; gap: 12px;
    justify-content: space-between;
    color: rgba(255,255,255,.45);
}
.site-footer__owner-edit {
    color: rgba(255,255,255,.28) !important;
    font-size: .72rem;
    text-decoration: none;
    transition: color .15s ease;
}
.site-footer__owner-edit:hover { color: var(--gold) !important; }

/* =================================================================
   Animations (reveal on scroll)
   ================================================================= */
[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
    [data-reveal] { opacity: 1; transform: none; }
}

/* =================================================================
   Responsive  —  three breakpoints
   ================================================================= */
@media (max-width: 1024px) {
    .hero__inner { grid-template-columns: 1fr; gap: 40px; }
    .hero__content { max-width: 100%; }
    .hero__visual { order: -1; }
    .ba-slider { max-width: 360px; }
    .services { grid-template-columns: repeat(2, 1fr); }
    .devices { grid-template-columns: repeat(3, 1fr); }
    .pillars { grid-template-columns: repeat(2, 1fr); }
    .reviews { grid-template-columns: repeat(2, 1fr); }
    .gallery__grid { grid-template-columns: repeat(2, 1fr); }
    .location { grid-template-columns: 1fr; }
    .location__map { min-height: 360px; }
    .contact { grid-template-columns: 1fr; }
    .contact__faq { position: static; }
    .site-footer__inner { grid-template-columns: 1fr 1fr 1fr; }
    .site-footer__brand { grid-column: 1 / -1; }
}

/* =================================================================
   Touch-device polish  —  press feedback instead of hover lift,
   smoother taps everywhere.
   ================================================================= */
@media (hover: none) and (pointer: coarse) {
    .service:hover, .device-card:hover, .pillar:hover, .review:hover { transform: none; box-shadow: var(--shadow-sm); }
    .service:active, .device-card:active, .pillar:active, .review:active { transform: scale(.985); transition: transform .08s ease; }
    .btn:active { transform: scale(.97); }
    .strip__brand:hover { opacity: .75; color: var(--ink-2); }
}

/* =================================================================
   Mobile  —  ≤ 900px (catches phones + tablets in portrait)
   ================================================================= */
@media (max-width: 900px) {
    .nav, .header-cta { display: none; }
    .hamburger { display: flex; }

    .site-header__inner { gap: 12px; padding-block: 12px; }
    .logo__text { font-size: 1.02rem; }
    .logo__mark { width: 34px; height: 34px; }

    .announce { font-size: .82rem; padding: 8px 0; }
    .announce__inner { gap: 8px; }
    .announce__sub { display: none; } /* hide long descriptive text on small screens */
    .announce__link { font-size: .78rem; padding: 5px 10px; }

    .hero { padding: 36px 0 64px; }
    .hero__inner { gap: 28px; }
    .hero__sub { font-size: 1rem; }
    .hero__trust { grid-template-columns: repeat(2, 1fr); gap: 14px; padding-top: 18px; }
    .hero__trust strong { font-size: 1rem; }
    .hero__ctas { gap: 10px; }
    .hero__ctas .btn { flex: 1 1 calc(50% - 5px); min-width: 0; padding: 13px 14px; font-size: .95rem; }
    .hero__ctas .btn--primary { flex: 1 1 100%; }  /* Call button always full-width  =  biggest possible tap target */
    .ba-slider { max-width: 280px; }

    .section { padding: 56px 0; }
    .section__head { margin-bottom: 28px; }
    .section__lead { font-size: 1rem; }

    .services { grid-template-columns: 1fr; gap: 14px; }
    .service { padding: 22px 20px; }
    .devices { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .device-card { padding: 16px 14px; }
    .pillars { grid-template-columns: 1fr; gap: 12px; }
    .pillar { padding: 24px 20px; }
    .reviews { grid-template-columns: 1fr; }
    .gallery { padding: 24px; margin-top: 44px; }
    .gallery__grid { grid-template-columns: 1fr 1fr; gap: 10px; }

    .location { gap: 22px; }
    .location__info { grid-template-columns: 1fr; gap: 14px; }
    .location__map, .location__map iframe { min-height: 320px; }

    .contact { gap: 28px; }
    .form { padding: 22px; }
    .form__row { grid-template-columns: 1fr; gap: 12px; }
    .contact__faq { padding: 22px; }

    .site-footer { padding-top: 44px; }
    .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 24px; padding-bottom: 32px; }
    .site-footer__brand { grid-column: 1 / -1; }
    .site-footer__bottom .container { justify-content: center; text-align: center; }

    /* Show the always-visible bottom action bar */
    .sticky-cta { display: flex; }
    body { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }
}

/* =================================================================
   Small phones  —  ≤ 480px  (iPhone SE, mini, most Androids)
   ================================================================= */
@media (max-width: 480px) {
    .container { padding-inline: 18px; }

    .hero__title { font-size: clamp(1.95rem, 8vw, 2.5rem); line-height: 1.1; }
    .hero__sub { font-size: .98rem; }
    /* Every hero CTA gets its own full-width row  =  unmissable tap target */
    .hero__ctas .btn { flex: 1 1 100%; padding: 15px 18px; }
    .hero__visual-caption { font-size: .82rem; }

    .devices { grid-template-columns: 1fr; }
    .gallery__grid { grid-template-columns: 1fr; }

    .review { padding: 22px 20px; }

    .ba-slider { max-width: 260px; }

    /* Larger comfortable tap zone for FAQ rows */
    .contact__faq summary { padding: 6px 28px 6px 0; font-size: .98rem; }

    .site-footer__inner { grid-template-columns: 1fr; }
}

/* =================================================================
   Tiny phones  —  ≤ 360px  (iPhone SE 1st gen, older Androids)
   ================================================================= */
@media (max-width: 360px) {
    .container { padding-inline: 16px; }
    .logo__text { font-size: .95rem; }
    .btn { font-size: .92rem; }
    .hero__title { font-size: 1.85rem; }
    .sticky-cta a span { font-size: .68rem; }
}

/* =================================================================
   Landscape on short viewports  —  e.g. phone held sideways.
   Don't waste the small vertical real estate with a sticky bar.
   ================================================================= */
@media (max-height: 480px) and (orientation: landscape) {
    .sticky-cta { display: none; }
    body { padding-bottom: 0; }
    .site-header { position: relative; }
    .hero { padding: 32px 0 48px; }
}

/* =================================================================
   EDIT MODE  =  visible only when body has .is-editing class.
   Activated by visiting any URL with ?edit=1.
   ================================================================= */
.edit-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: #0b1024;
    color: #fff;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
    font-family: var(--font-display);
    font-size: .88rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.edit-bar__title { font-weight: 800; color: var(--gold); white-space: nowrap; }
.edit-bar__hint { flex: 1; color: rgba(255,255,255,.62); font-weight: 400; font-size: .82rem; }
.edit-bar__badge {
    background: rgba(255,255,255,.12);
    padding: 5px 11px;
    border-radius: 999px;
    font-size: .76rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}
.edit-bar__btn {
    background: rgba(255,255,255,.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,.18);
    padding: 8px 14px;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 700;
    font-size: .78rem;
    cursor: pointer;
    transition: background .15s ease, transform .08s ease;
    white-space: nowrap;
}
.edit-bar__btn:hover { background: rgba(255,255,255,.18); }
.edit-bar__btn:active { transform: scale(.96); }
.edit-bar__btn--primary {
    background: var(--gold);
    color: var(--ink);
    border-color: var(--gold);
    box-shadow: 0 4px 12px rgba(255,209,102,.35);
}
.edit-bar__btn--primary:hover { background: #ffc233; }

/* Make room for the fixed edit bar at the top of the viewport */
body.is-editing { padding-top: 56px; }
body.is-editing .site-header { top: 56px; }

/* Show editable text on hover so the owner can find what's clickable */
.is-editing [contenteditable="true"] { transition: background .12s ease, outline .12s ease; border-radius: 4px; }
.is-editing [contenteditable="true"]:hover {
    background: rgba(255, 209, 102, .14);
    cursor: text;
}
.is-editing [contenteditable="true"]:focus {
    outline: 2px dashed var(--brand);
    outline-offset: 4px;
    background: rgba(255, 209, 102, .22);
}

/* Photo drop zones overlay each gallery box */
.is-editing .drop-zone { position: relative; cursor: pointer; }
.is-editing .drop-zone::after {
    content: "\1F4F7 Drop photo or click";
    position: absolute;
    inset: 6px;
    border: 2px dashed rgba(255,255,255,.6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .04em;
    text-shadow: 0 1px 4px rgba(0,0,0,.7);
    background: rgba(0,0,0,.32);
    pointer-events: none;
    opacity: 0;
    transition: opacity .2s ease;
    z-index: 2;
}
.is-editing .drop-zone:hover::after { opacity: 1; }
.is-editing .drop-zone.is-dragover {
    outline: 3px solid var(--gold);
    outline-offset: -3px;
}
.is-editing .drop-zone.is-dragover::after {
    opacity: 1;
    background: rgba(255,209,102,.9);
    color: var(--ink);
    text-shadow: none;
    border-color: var(--ink);
}

@media (max-width: 720px) {
    .edit-bar { padding: 8px; gap: 6px; flex-wrap: wrap; font-size: .8rem; justify-content: center; }
    .edit-bar__hint { display: none; }
    .edit-bar__btn { padding: 7px 11px; font-size: .74rem; }
    .edit-bar__badge { padding: 4px 9px; font-size: .72rem; }
    body.is-editing { padding-top: 92px; }
    body.is-editing .site-header { top: 92px; }
}
