/* =====================================================================
   LS COMPUTER REPAIR — Custom Dark Theme
   Modern, dark-only design system. No light mode.
   ===================================================================== */

/* ----- 1. Design tokens ------------------------------------------------ */
:root {
    /* LochStudios umbrella brand — near-black ink + cyan (matches site.css). */
    --bg: #070B11;
    --bg-alt: #04070C;
    --surface: #0E141C;
    --surface-2: #141C26;
    --surface-3: #1B2531;
    --border: #1E2733;
    --border-strong: #2B3644;

    --text: #F4F7FB;
    --text-dim: #CFD8E2;
    --text-muted: #8693A6;

    --accent: #5DD3FF;
    --accent-hover: #8FE3FF;
    --accent-2: #19A7E0;
    --accent-2-hover: #36B8EC;
    --accent-glow: rgba(93, 211, 255, 0.35);
    --accent-2-glow: rgba(25, 167, 224, 0.30);

    --success: #4ade80;
    --danger: #ff5577;
    --warning: #fbbf24;

    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
    --shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.45);
    --shadow-glow: 0 0 32px var(--accent-glow);

    --gradient: linear-gradient(135deg, #5DD3FF 0%, #19A7E0 100%);
    --gradient-soft: linear-gradient(135deg, rgba(93, 211, 255, 0.15) 0%, rgba(25, 167, 224, 0.12) 100%);
    --gradient-text: linear-gradient(135deg, #5DD3FF 0%, #19A7E0 100%);

    --header-h: 76px;
    --container: 1200px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --t-fast: 150ms;
    --t-med: 280ms;
    --t-slow: 500ms;

    --font-sans: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Instrument Serif', 'Times New Roman', Georgia, serif;
    --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Consolas, monospace;

    color-scheme: dark;
}

/* ----- 2. Reset -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
}

body {
    font-family: var(--font-sans);
    font-size: clamp(0.95rem, 0.5vw + 0.85rem, 1.05rem);
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

img, svg, video, canvas, iframe {
    display: block;
    max-width: 100%;
    height: auto;
}

iframe { border: 0; }

a { color: var(--accent); text-decoration: none; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--accent-hover); }

ul, ol { list-style: none; }

button {
    font: inherit;
    cursor: pointer;
    border: 0;
    background: transparent;
    color: inherit;
}

table { border-collapse: collapse; border-spacing: 0; width: 100%; }

::selection { background: var(--accent); color: var(--bg); }

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

/* ----- 3. Decorative background --------------------------------------- */
body::before,
body::after {
    content: "";
    position: fixed;
    pointer-events: none;
    z-index: -1;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
}

body::before {
    width: 700px;
    height: 700px;
    top: -250px;
    left: -200px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    animation: float 20s var(--ease) infinite alternate;
}

body::after {
    width: 600px;
    height: 600px;
    bottom: -200px;
    right: -150px;
    background: radial-gradient(circle, var(--accent-2) 0%, transparent 70%);
    animation: float 25s var(--ease) infinite alternate-reverse;
}

@keyframes float {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(80px, 60px) scale(1.15); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

/* ----- 4. Typography --------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400; /* Instrument Serif is a 400-weight display serif */
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: var(--text);
}

h1 { font-size: clamp(2.25rem, 4vw + 1rem, 4rem); }
h2 { font-size: clamp(1.75rem, 2.5vw + 1rem, 2.75rem); }
h3 { font-size: clamp(1.25rem, 1vw + 1rem, 1.75rem); }
h4 { font-size: 1.25rem; }

p { color: var(--text-dim); }
p + p { margin-top: 1em; }

strong { color: var(--text); font-weight: 600; }

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    padding: 0.4rem 0.85rem;
    background: rgba(93, 211, 255, 0.08);
    border: 1px solid rgba(93, 211, 255, 0.25);
    border-radius: 999px;
}

.section-lead {
    color: var(--text-dim);
    font-size: clamp(1rem, 0.5vw + 0.95rem, 1.15rem);
    max-width: 60ch;
    margin: 0 auto;
}

/* ----- 5. Layout helpers ---------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.section {
    padding-block: clamp(4rem, 8vw, 7rem);
}

.section-head {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    display: grid;
    gap: 1rem;
    justify-items: center;
}

.grid {
    display: grid;
    gap: clamp(1rem, 2vw, 1.75rem);
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 980px) {
    .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.flex { display: flex; gap: 1rem; flex-wrap: wrap; }
.flex-center { display: flex; align-items: center; justify-content: center; gap: 0.75rem; }

.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ----- 6. Header / Nav ------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-h);
    background: rgba(7, 11, 17, 0.7);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-bottom: 1px solid transparent;
    transition: background var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}

.site-header.scrolled {
    background: rgba(7, 11, 17, 0.92);
    border-bottom-color: var(--border);
}

.nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}
.nav-brand:hover { color: var(--text); }

.nav-brand img {
    height: 38px;
    width: auto;
    filter: drop-shadow(0 0 12px rgba(93, 211, 255, 0.25));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-links a {
    color: var(--text-dim);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-sm);
    position: relative;
    transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}

.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.04); }

.nav-links a.active { color: var(--text); }
.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.2rem;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
}

.has-dropdown { position: relative; }
.has-dropdown > a::after {
    content: "\f078";
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
    font-size: 0.65em;
    margin-left: 0.4rem;
    opacity: 0.7;
    transition: transform var(--t-fast) var(--ease);
}
.has-dropdown:hover > a::after { transform: rotate(180deg); }

/* Invisible hover bridge so the mouse can travel from the link to the
   dropdown without crossing a dead zone. Counts as part of .has-dropdown
   for :hover, so the dropdown stays open. */
.has-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: -0.5rem;
    right: -0.5rem;
    height: 0.75rem;
    background: transparent;
    pointer-events: auto;
}

.dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    min-width: 220px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 0.85rem;
    border-radius: var(--radius-sm);
    color: var(--text-dim);
    font-size: 0.92rem;
}
.dropdown a:hover { background: var(--surface-2); color: var(--text); }
.dropdown a i { color: var(--accent); width: 1.1em; text-align: center; }

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    color: var(--text);
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: background var(--t-fast) var(--ease);
}
.nav-toggle:hover { background: rgba(255,255,255,0.06); }

@media (max-width: 860px) {
    .nav-links { display: none; }
    .nav-toggle { display: inline-flex; }
}

/* Mobile menu drawer */
.mobile-menu {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: rgba(6, 9, 18, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99;
    padding: 2rem 1.5rem;
    transform: translateX(100%);
    transition: transform var(--t-med) var(--ease-out);
    overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu ul { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu a {
    display: block;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    color: var(--text-dim);
    font-weight: 500;
    border: 1px solid transparent;
}
.mobile-menu a:hover, .mobile-menu a.active {
    color: var(--text);
    background: var(--surface);
    border-color: var(--border);
}
.mobile-menu .group-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    padding: 1.25rem 1.25rem 0.5rem;
}
.mobile-menu .submenu a { padding-left: 2rem; font-size: 0.95rem; }

/* ----- 7. Buttons ------------------------------------------------------ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.85rem 1.5rem;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    line-height: 1;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition:
        transform var(--t-fast) var(--ease),
        box-shadow var(--t-med) var(--ease),
        background var(--t-fast) var(--ease),
        border-color var(--t-fast) var(--ease),
        color var(--t-fast) var(--ease);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    isolation: isolate;
}

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

.btn-primary {
    background: var(--gradient);
    color: #08111d;
    box-shadow: 0 8px 24px var(--accent-glow);
}
.btn-primary:hover {
    color: #08111d;
    box-shadow: 0 12px 32px var(--accent-glow), 0 0 0 1px rgba(255,255,255,0.1) inset;
}

.btn-secondary {
    background: var(--surface-2);
    border-color: var(--border);
    color: var(--text);
}
.btn-secondary:hover {
    background: var(--surface-3);
    border-color: var(--border-strong);
    color: var(--text);
}

.btn-outline {
    background: transparent;
    border-color: var(--border-strong);
    color: var(--text);
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent) inset;
}

.btn-ghost {
    background: transparent;
    color: var(--text-dim);
}
.btn-ghost:hover { color: var(--text); background: rgba(255,255,255,0.04); }

.btn-lg { padding: 1.05rem 1.85rem; font-size: 1rem; }
.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ----- 8. Hero --------------------------------------------------------- */
.hero {
    position: relative;
    padding-block: clamp(4rem, 9vw, 8rem) clamp(3rem, 6vw, 5rem);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 {
    font-size: clamp(2.5rem, 4vw + 1.4rem, 4.5rem);
    margin-block: 1.25rem 1.5rem;
}

.hero p.lead {
    font-size: clamp(1.05rem, 0.6vw + 0.95rem, 1.2rem);
    color: var(--text-dim);
    max-width: 56ch;
    margin-bottom: 2rem;
}

.hero-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.hero-stats {
    display: flex;
    gap: clamp(1.5rem, 4vw, 3rem);
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.hero-stat .num {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2vw + 0.5rem, 2.25rem);
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.hero-stat .lbl {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
    letter-spacing: 0.02em;
}

/* Hero visual: animated terminal-style window */
.hero-visual {
    position: relative;
    aspect-ratio: 4 / 3;
    background: linear-gradient(160deg, var(--surface) 0%, var(--surface-2) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    isolation: isolate;
}
.hero-visual::before {
    content: "";
    position: absolute;
    inset: -1px;
    padding: 1px;
    border-radius: inherit;
    background: var(--gradient);
    opacity: 0.4;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.window-bar {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--border);
    background: rgba(0,0,0,0.2);
}
.window-bar .dot {
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--text-muted); opacity: 0.5;
}
.window-bar .dot:nth-child(1) { background: #ff5f57; opacity: 1; }
.window-bar .dot:nth-child(2) { background: #febc2e; opacity: 1; }
.window-bar .dot:nth-child(3) { background: #28c840; opacity: 1; }
.window-bar .title {
    margin-left: 0.6rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.window-body {
    padding: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-dim);
}
.window-body .line { display: block; opacity: 0; animation: type-in 0.4s var(--ease-out) forwards; }
.window-body .line:nth-child(1) { animation-delay: 0.3s; }
.window-body .line:nth-child(2) { animation-delay: 0.7s; }
.window-body .line:nth-child(3) { animation-delay: 1.1s; }
.window-body .line:nth-child(4) { animation-delay: 1.5s; }
.window-body .line:nth-child(5) { animation-delay: 1.9s; }
.window-body .line:nth-child(6) { animation-delay: 2.3s; }
.window-body .line:nth-child(7) { animation-delay: 2.7s; }
.window-body .prompt { color: var(--accent); }
.window-body .ok { color: var(--success); }
.window-body .key { color: var(--accent-2); }
.window-body .cursor::after {
    content: "▋";
    color: var(--accent);
    animation: blink 1s steps(1) infinite;
    margin-left: 0.2rem;
}
@keyframes type-in {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes blink { 50% { opacity: 0; } }

/* ----- 9. Cards ------------------------------------------------------- */
.card {
    position: relative;
    padding: clamp(1.5rem, 2vw, 2rem);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition:
        transform var(--t-med) var(--ease-out),
        border-color var(--t-med) var(--ease),
        background var(--t-med) var(--ease);
    overflow: hidden;
    isolation: isolate;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--gradient-soft);
    opacity: 0;
    transition: opacity var(--t-med) var(--ease);
    z-index: -1;
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    background: var(--surface-2);
}
.card:hover::before { opacity: 1; }

.card .icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: var(--gradient-soft);
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(93, 211, 255, 0.2);
    transition: transform var(--t-med) var(--ease), color var(--t-med) var(--ease);
}
.card:hover .icon-wrap {
    transform: scale(1.05) rotate(-3deg);
    color: var(--accent-hover);
}

.card h3 { margin-bottom: 0.75rem; }
.card p + p { margin-top: 0.85rem; }

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.25rem;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--accent);
}
.card-link i { transition: transform var(--t-fast) var(--ease); }
.card:hover .card-link i { transform: translateX(4px); }

.card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    background: var(--surface-2);
}

/* ----- 10. Pricing ----------------------------------------------------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
}
@media (max-width: 980px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 2vw, 2rem);
    display: flex;
    flex-direction: column;
    transition: transform var(--t-med) var(--ease-out), border-color var(--t-med) var(--ease);
    overflow: hidden;
    isolation: isolate;
}
.price-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
}
.price-card.featured {
    background: linear-gradient(160deg, var(--surface-2) 0%, var(--surface) 100%);
    border-color: rgba(93, 211, 255, 0.35);
    box-shadow: 0 0 0 1px rgba(93, 211, 255, 0.15), 0 24px 48px rgba(93, 211, 255, 0.08);
}
.price-card.featured::before {
    content: "MOST POPULAR";
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    background: var(--gradient);
    color: #08111d;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    font-weight: 700;
}

.price-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}
.price-tag {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-block: 1rem 0.25rem;
}
.price-tag .currency {
    font-size: 1.25rem;
    color: var(--text-dim);
    font-weight: 600;
}
.price-tag .amount {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 3vw + 1rem, 3.5rem);
    font-weight: 700;
    line-height: 1;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.price-period { color: var(--text-muted); font-size: 0.9rem; }
.price-asterisk { color: var(--danger); font-size: 0.8em; vertical-align: super; }

.price-features {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-block: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    flex: 1;
}
.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: var(--text-dim);
    font-size: 0.93rem;
    line-height: 1.5;
}
.price-features li i {
    color: var(--success);
    margin-top: 0.2em;
    flex-shrink: 0;
}

.price-card .btn { margin-top: auto; }

.price-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
    margin-top: 1.5rem;
}
.price-note .price-asterisk { font-size: 0.9em; }

/* ----- 11. Service list / chips --------------------------------------- */
.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.85rem;
}
.service-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.15rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--t-fast) var(--ease);
}
.service-item:hover {
    border-color: var(--accent);
    background: var(--surface-2);
    transform: translateX(2px);
}
.service-item i {
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}
.service-item span { font-weight: 500; color: var(--text); }

/* ----- 12. Contact info / cards --------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-method {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--t-fast) var(--ease);
}
.contact-method:hover { border-color: var(--accent); transform: translateY(-2px); }
.contact-method .icon-wrap {
    width: 44px; height: 44px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--gradient-soft);
    color: var(--accent);
    border: 1px solid rgba(93, 211, 255, 0.2);
}
.contact-method .label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}
.contact-method .value {
    color: var(--text);
    font-weight: 500;
    font-size: 1rem;
    word-break: break-word;
}
.contact-method a.value:hover { color: var(--accent); }

.map-frame {
    width: 100%;
    height: clamp(320px, 50vh, 520px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--surface);
    filter: invert(0.92) hue-rotate(180deg) saturate(0.7);
}

/* ----- 13. Page hero (smaller, for inner pages) ---------------------- */
.page-hero {
    text-align: center;
    padding-block: clamp(3.5rem, 6vw, 5.5rem) clamp(2rem, 4vw, 3.5rem);
    position: relative;
}
.page-hero h1 {
    font-size: clamp(2.25rem, 3.5vw + 1rem, 3.75rem);
    margin-block: 1rem 1rem;
}
.page-hero p { max-width: 60ch; margin: 0 auto; }

/* ----- 14. Callout / Banner -------------------------------------------- */
.callout {
    position: relative;
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: clamp(2rem, 4vw, 3.5rem);
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}
.callout::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 60%);
    opacity: 0.25;
    z-index: -1;
}
.callout h2 { margin-bottom: 1rem; }
.callout p { max-width: 60ch; margin: 0 auto 2rem; }
.callout .btn-row { display: inline-flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

/* ----- 15. Footer ----------------------------------------------------- */
.site-footer {
    margin-top: clamp(4rem, 8vw, 6rem);
    padding-block: clamp(3rem, 5vw, 4.5rem) 1.5rem;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    color: var(--text-dim);
    font-size: 0.93rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: clamp(1.5rem, 3vw, 3rem);
    margin-bottom: 3rem;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img {
    height: 44px;
    width: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 12px rgba(93, 211, 255, 0.2));
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: var(--text-muted); }

.footer-col h4 {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 1.1rem;
    font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
    color: var(--text-dim);
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-col a:hover { color: var(--accent); }
.footer-col a i { color: var(--text-muted); width: 1.1em; text-align: center; transition: color var(--t-fast) var(--ease); }
.footer-col a:hover i { color: var(--accent); }

.social-row {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}
.social-row a {
    width: 40px; height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-dim);
    font-size: 1rem;
    transition: all var(--t-fast) var(--ease);
}
.social-row a:hover {
    color: var(--bg);
    background: var(--gradient);
    border-color: transparent;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.footer-bottom strong { color: var(--text-dim); }
.footer-bottom .abn { font-family: var(--font-mono); font-size: 0.78rem; }

/* ----- 16. Tables (if needed) ----------------------------------------- */
.data-table {
    width: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.data-table th, .data-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.data-table th {
    background: var(--surface-2);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
}
.data-table tr:last-child td { border-bottom: 0; }

/* ----- 17. Reveal-on-scroll ------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }

.reveal-stagger > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* ----- 18. Utility ---------------------------------------------------- */
.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
a.visually-hidden:focus,
a.visually-hidden:focus-visible {
    position: fixed !important;
    top: 1rem; left: 1rem;
    width: auto !important; height: auto !important;
    padding: 0.75rem 1.1rem;
    background: var(--gradient);
    color: #08111d;
    font-weight: 700;
    border-radius: var(--radius);
    z-index: 1000;
    clip: auto !important;
    box-shadow: var(--shadow-lg);
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin-block: clamp(2rem, 4vw, 3rem);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: rgba(74, 222, 128, 0.1);
    color: var(--success);
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid rgba(74, 222, 128, 0.25);
}
.badge .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 8px var(--success);
    animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

/* ----- 19. SweetAlert2 dark overrides --------------------------------- */
.swal2-popup {
    background: var(--surface) !important;
    color: var(--text) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-lg) !important;
    font-family: var(--font-sans) !important;
}
.swal2-title { color: var(--text) !important; font-family: var(--font-display) !important; }
.swal2-html-container { color: var(--text-dim) !important; }
.swal2-actions { gap: 0.5rem !important; }
.swal2-styled.swal2-confirm {
    background: var(--gradient) !important;
    color: #08111d !important;
    border-radius: var(--radius) !important;
    box-shadow: 0 8px 24px var(--accent-glow) !important;
    font-weight: 600 !important;
}
.swal2-styled.swal2-cancel,
.swal2-styled.swal2-deny {
    background: var(--surface-2) !important;
    border: 1px solid var(--border) !important;
    color: var(--text) !important;
    border-radius: var(--radius) !important;
    font-weight: 600 !important;
}
.swal2-icon { border-color: var(--border) !important; }
.swal2-icon.swal2-success [class^='swal2-success-line'] { background-color: var(--success) !important; }
.swal2-icon.swal2-success .swal2-success-ring { border-color: rgba(74, 222, 128, 0.3) !important; }
.swal2-icon.swal2-error { border-color: var(--danger) !important; color: var(--danger) !important; }
.swal2-icon.swal2-error [class^='swal2-x-mark-line'] { background-color: var(--danger) !important; }
.swal2-icon.swal2-warning { border-color: var(--warning) !important; color: var(--warning) !important; }
.swal2-icon.swal2-info, .swal2-icon.swal2-question { border-color: var(--accent) !important; color: var(--accent) !important; }
.swal2-input, .swal2-textarea, .swal2-select {
    background: var(--bg) !important;
    border: 1px solid var(--border) !important;
    color: var(--text) !important;
    border-radius: var(--radius) !important;
}
.swal2-input:focus, .swal2-textarea:focus, .swal2-select:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 3px var(--accent-glow) !important;
}
.swal2-backdrop-show { background: rgba(6, 9, 18, 0.75) !important; backdrop-filter: blur(6px); }
.swal2-close { color: var(--text-muted) !important; }
.swal2-close:hover { color: var(--text) !important; }

/* ----- 20. Print ------------------------------------------------------ */
@media print {
    body::before, body::after { display: none; }
    .site-header, .site-footer, .nav-toggle, .mobile-menu { display: none; }
    body { background: white; color: black; }
}
