/* ============================================================
   VOLTASERVICES LTD — Main Stylesheet
   "Voltage" Design System — Electric Industrial Precision
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
    /* Core Palette */
    --volt-black: #08090C;
    --volt-deep: #0D0F14;
    --volt-surface: #13161D;
    --volt-elevated: #1A1D26;
    --volt-border: rgba(255, 255, 255, 0.06);
    --volt-border-hover: rgba(255, 255, 255, 0.12);

    /* Accent — Electric Amber */
    --volt-amber: #FFB800;
    --volt-amber-hover: #E5A600;
    --volt-amber-glow: rgba(255, 184, 0, 0.25);
    --volt-amber-light: rgba(255, 184, 0, 0.08);

    /* Secondary — Slate Blue */
    --volt-blue: #6C8EEF;
    --volt-blue-hover: #5A7DE0;
    --volt-blue-glow: rgba(108, 142, 239, 0.2);
    --volt-blue-light: rgba(108, 142, 239, 0.08);

    /* Text */
    --volt-white: #F5F5F7;
    --volt-text: #C8CAD0;
    --volt-muted: #6B6F7B;
    --volt-dim: #3D404A;

    /* Functional */
    --volt-success: #34D399;
    --volt-error: #F87171;

    /* Typography */
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.25rem;
    --fs-2xl: 1.5rem;
    --fs-3xl: 2rem;
    --fs-4xl: 2.75rem;
    --fs-5xl: 3.75rem;
    --fs-6xl: 5rem;
    --lh-tight: 1.1;
    --lh-snug: 1.3;
    --lh-normal: 1.65;
    --fw-normal: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extra: 800;

    /* Spacing */
    --space-2xs: 0.125rem;
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    --space-6xl: 12rem;

    /* Layout */
    --container-max: 1240px;
    --nav-height: 72px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow-amber: 0 0 30px var(--volt-amber-glow);
    --shadow-glow-blue: 0 0 30px var(--volt-blue-glow);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --t-fast: 150ms;
    --t-base: 300ms;
    --t-slow: 500ms;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    line-height: var(--lh-normal);
    color: var(--volt-text);
    background-color: var(--volt-black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Grain texture overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul, ol { list-style: none; }

::selection {
    background: var(--volt-amber);
    color: var(--volt-black);
}

/* ============================================================
   3. BASE TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: var(--lh-tight);
    font-weight: var(--fw-extra);
    color: var(--volt-white);
    letter-spacing: -0.02em;
}

h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }

p { color: var(--volt-text); line-height: var(--lh-normal); }

.text-gradient {
    background: linear-gradient(135deg, var(--volt-amber), #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient--blue {
    background: linear-gradient(135deg, var(--volt-blue), #A5B4FC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    padding: var(--space-5xl) 0;
    position: relative;
}

.section--alt {
    background-color: var(--volt-deep);
}

/* Circuit grid background for alt sections */
.section--alt::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--volt-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--volt-border) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    pointer-events: none;
}

.grid {
    display: grid;
    gap: var(--space-lg);
}

.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }

.split {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

/* ============================================================
   5. SKIP LINK
   ============================================================ */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-md);
    background: var(--volt-amber);
    color: var(--volt-black);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    z-index: 10000;
    font-weight: var(--fw-bold);
    transition: top var(--t-fast);
}

.skip-link:focus {
    top: var(--space-md);
    outline: 2px solid var(--volt-white);
    outline-offset: 2px;
}

/* ============================================================
   6. NAVIGATION
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    transition: background-color var(--t-base) var(--ease-out),
                box-shadow var(--t-base) var(--ease-out);
}

.site-header.nav--scrolled {
    background-color: rgba(8, 9, 12, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 var(--volt-border);
}

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

.nav__logo {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: var(--fw-extra);
    color: var(--volt-white);
    display: flex;
    align-items: center;
    gap: var(--space-2xs);
    z-index: 1001;
    letter-spacing: -0.03em;
}

.nav__logo .logo-accent {
    color: var(--volt-amber);
}

/* Hamburger */
.nav__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    z-index: 1001;
    padding: 4px;
}

.nav__toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--volt-white);
    border-radius: 2px;
    transition: all var(--t-base) var(--ease-out);
    transform-origin: center;
}

.nav--open .nav__toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav--open .nav__toggle-bar:nth-child(2) {
    opacity: 0;
}
.nav--open .nav__toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.nav__menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--volt-black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    transform: translateX(100%);
    transition: transform var(--t-slow) var(--ease-out);
    z-index: 999;
}

.nav--open .nav__menu {
    transform: translateX(0);
}

.nav__link {
    font-family: var(--font-display);
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    color: var(--volt-muted);
    transition: color var(--t-fast);
    position: relative;
}

.nav__link:hover,
.nav__link.active {
    color: var(--volt-white);
}

.nav__link--cta {
    background: var(--volt-amber);
    color: var(--volt-black) !important;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-sm);
    font-size: var(--fs-lg) !important;
    font-weight: var(--fw-bold);
    transition: background-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
}

.nav__link--cta:hover {
    background: var(--volt-amber-hover);
    box-shadow: var(--shadow-glow-amber);
    transform: translateY(-1px);
}

.nav__link:focus-visible,
.nav__toggle:focus-visible {
    outline: 2px solid var(--volt-amber);
    outline-offset: 4px;
    border-radius: 2px;
}

/* ============================================================
   7. HERO SECTIONS
   ============================================================ */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: calc(var(--nav-height) + var(--space-4xl)) 0 var(--space-4xl);
    overflow: hidden;
}

.hero--home {
    min-height: 100vh;
}

.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Dot grid pattern */
.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, var(--volt-dim) 0.5px, transparent 0);
    background-size: 32px 32px;
    opacity: 0.3;
}

/* Ambient glow */
.hero__bg::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 140%;
    height: 140%;
    background:
        radial-gradient(ellipse at 20% 50%, var(--volt-amber-glow) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, var(--volt-blue-glow) 0%, transparent 50%);
    opacity: 0.5;
    animation: ambientDrift 20s ease-in-out infinite alternate;
}

@keyframes ambientDrift {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(3%, -2%) scale(1.02); }
    100% { transform: translate(-2%, 3%) scale(0.98); }
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    color: var(--volt-amber);
    border: 1px solid rgba(255, 184, 0, 0.3);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-xl);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: var(--volt-amber-light);
}

.hero__badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--volt-amber);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.hero__title {
    font-size: var(--fs-5xl);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.03em;
    line-height: var(--lh-tight);
}

.hero__subtitle {
    font-size: var(--fs-lg);
    color: var(--volt-text);
    max-width: 620px;
    margin: 0 auto var(--space-2xl);
    line-height: var(--lh-normal);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--fs-sm);
    color: var(--volt-muted);
    margin-bottom: var(--space-lg);
    justify-content: center;
}

.breadcrumb a {
    color: var(--volt-text);
    transition: color var(--t-fast);
}

.breadcrumb a:hover {
    color: var(--volt-amber);
}

/* ============================================================
   8. SECTION HEADERS
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header__label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    color: var(--volt-amber);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: var(--volt-amber-light);
    border: 1px solid rgba(255, 184, 0, 0.15);
}

.section-header__title {
    margin-bottom: var(--space-md);
}

.section-header__desc {
    max-width: 600px;
    margin: 0 auto;
    font-size: var(--fs-lg);
    color: var(--volt-text);
}

/* ============================================================
   9. BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-weight: var(--fw-semibold);
    border-radius: var(--radius-sm);
    transition: all var(--t-base) var(--ease-out);
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    border: none;
    position: relative;
}

.btn--primary {
    background: var(--volt-amber);
    color: var(--volt-black);
}

.btn--primary:hover {
    background: var(--volt-amber-hover);
    box-shadow: var(--shadow-glow-amber);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    border: 1px solid var(--volt-border-hover);
    color: var(--volt-white);
}

.btn--outline:hover {
    border-color: var(--volt-amber);
    color: var(--volt-amber);
    transform: translateY(-2px);
}

.btn--accent {
    background: var(--volt-amber);
    color: var(--volt-black);
}

.btn--accent:hover {
    background: var(--volt-amber-hover);
    box-shadow: var(--shadow-glow-amber);
    transform: translateY(-2px);
}

.btn--blue {
    background: var(--volt-blue);
    color: var(--volt-white);
}

.btn--blue:hover {
    background: var(--volt-blue-hover);
    box-shadow: var(--shadow-glow-blue);
    transform: translateY(-2px);
}

.btn--sm { padding: 8px 16px; font-size: var(--fs-sm); }
.btn--md { padding: 12px 24px; font-size: var(--fs-base); }
.btn--lg { padding: 14px 28px; font-size: var(--fs-base); }
.btn--full-width { width: 100%; }

.btn:focus-visible {
    outline: 2px solid var(--volt-amber);
    outline-offset: 2px;
}

.btn i {
    font-size: 0.85em;
    transition: transform var(--t-fast) var(--ease-out);
}

.btn:hover i {
    transform: translateX(3px);
}

/* ============================================================
   10. CARDS
   ============================================================ */
.card {
    position: relative;
    background: var(--volt-surface);
    border: 1px solid var(--volt-border);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    transition: all var(--t-base) var(--ease-out);
}

.card:hover {
    border-color: rgba(255, 184, 0, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Amber top-line accent on hover */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--volt-amber), transparent);
    opacity: 0;
    transition: opacity var(--t-base);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.card:hover::before {
    opacity: 1;
}

.card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--volt-amber-light);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    font-size: var(--fs-xl);
    color: var(--volt-amber);
}

.card__title {
    font-family: var(--font-display);
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    margin-bottom: var(--space-sm);
    color: var(--volt-white);
}

.card__text {
    font-size: var(--fs-sm);
    color: var(--volt-text);
    margin-bottom: var(--space-lg);
    line-height: var(--lh-normal);
}

.card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--volt-amber);
    font-weight: var(--fw-medium);
    font-size: var(--fs-sm);
    transition: gap var(--t-fast), color var(--t-fast);
}

.card__link:hover {
    gap: var(--space-sm);
}

.card__link:focus-visible {
    outline: 2px solid var(--volt-amber);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Card variant: blue accent */
.card--accent .card__icon {
    background: var(--volt-blue-light);
    color: var(--volt-blue);
}

.card--accent:hover {
    border-color: rgba(108, 142, 239, 0.3);
}

.card--accent::before {
    background: linear-gradient(90deg, var(--volt-blue), transparent);
}

/* ============================================================
   11. SERVICE DETAIL SECTIONS
   ============================================================ */
.service-detail {
    padding: var(--space-4xl) 0;
    border-bottom: 1px solid var(--volt-border);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--volt-amber-light);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    font-size: var(--fs-2xl);
    color: var(--volt-amber);
}

.service-detail__title {
    margin-bottom: var(--space-md);
}

.service-detail__desc {
    font-size: var(--fs-lg);
    margin-bottom: var(--space-xl);
    max-width: 600px;
}

.service-detail__features {
    display: grid;
    gap: var(--space-md);
}

.service-detail__feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.service-detail__feature i {
    color: var(--volt-amber);
    margin-top: 4px;
    flex-shrink: 0;
}

.service-detail__feature span {
    color: var(--volt-text);
}

/* Alternating layout */
.service-detail:nth-child(even) .split {
    direction: rtl;
}

.service-detail:nth-child(even) .split > * {
    direction: ltr;
}

/* ============================================================
   12. STATS / COUNTERS
   ============================================================ */
.stats {
    padding: var(--space-3xl) 0;
    background: var(--volt-deep);
    border-top: 1px solid var(--volt-border);
    border-bottom: 1px solid var(--volt-border);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    text-align: center;
}

.stat__number {
    font-family: var(--font-display);
    font-size: var(--fs-4xl);
    font-weight: var(--fw-extra);
    color: var(--volt-amber);
    margin-bottom: var(--space-xs);
    letter-spacing: -0.02em;
}

.stat__label {
    font-size: var(--fs-xs);
    color: var(--volt-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: var(--fw-medium);
}

/* ============================================================
   13. CTA BANNER
   ============================================================ */
.cta-banner {
    position: relative;
    padding: var(--space-5xl) 0;
    overflow: hidden;
}

.cta-banner__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 184, 0, 0.06), rgba(108, 142, 239, 0.04));
    border-top: 1px solid rgba(255, 184, 0, 0.1);
    border-bottom: 1px solid rgba(255, 184, 0, 0.1);
}

/* Diagonal stripe accent */
.cta-banner__bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 80px,
        rgba(255, 184, 0, 0.02) 80px,
        rgba(255, 184, 0, 0.02) 81px
    );
}

.cta-banner__content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-banner__title {
    margin-bottom: var(--space-md);
}

.cta-banner__text {
    font-size: var(--fs-lg);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

/* ============================================================
   14. FAQ ACCORDION
   ============================================================ */
.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    border: 1px solid var(--volt-border);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    overflow: hidden;
    transition: border-color var(--t-base);
}

.faq__item.active {
    border-color: rgba(255, 184, 0, 0.3);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-xl);
    background: var(--volt-surface);
    color: var(--volt-white);
    font-family: var(--font-display);
    font-size: var(--fs-base);
    font-weight: var(--fw-bold);
    text-align: left;
    transition: background-color var(--t-base);
    cursor: pointer;
}

.faq__question:hover {
    background: var(--volt-elevated);
}

.faq__question:focus-visible {
    outline: 2px solid var(--volt-amber);
    outline-offset: -2px;
}

.faq__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--t-base) var(--ease-out);
    color: var(--volt-amber);
}

.faq__item.active .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t-slow) var(--ease-out);
}

.faq__answer-inner {
    padding: 0 var(--space-xl) var(--space-lg);
    color: var(--volt-text);
    line-height: var(--lh-normal);
}

/* ============================================================
   15. CONTACT FORM
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.contact-info__item i {
    color: var(--volt-amber);
    font-size: var(--fs-xl);
    margin-top: 2px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.contact-info__item h4 {
    font-size: var(--fs-base);
    margin-bottom: var(--space-xs);
}

.contact-info__item p {
    font-size: var(--fs-base);
}

/* Next steps timeline */
.next-steps {
    margin-top: var(--space-2xl);
    padding: var(--space-xl);
    background: var(--volt-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--volt-border);
}

.next-steps h4 {
    margin-bottom: var(--space-lg);
    font-size: var(--fs-lg);
}

.next-steps__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    position: relative;
}

.next-steps__item:last-child {
    margin-bottom: 0;
}

.next-steps__number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--volt-amber);
    color: var(--volt-black);
    border-radius: 50%;
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    flex-shrink: 0;
}

.next-steps__text h5 {
    font-size: var(--fs-base);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-xs);
}

.next-steps__text p {
    font-size: var(--fs-sm);
}

/* Form */
.form {
    background: var(--volt-surface);
    border: 1px solid var(--volt-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
}

.form__title {
    font-size: var(--fs-2xl);
    margin-bottom: var(--space-xl);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--volt-white);
    margin-bottom: var(--space-sm);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: var(--volt-deep);
    border: 1px solid var(--volt-border);
    border-radius: var(--radius-sm);
    color: var(--volt-white);
    font-family: var(--font-body);
    font-size: var(--fs-base);
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
    -webkit-appearance: none;
}

.form-input::placeholder {
    color: var(--volt-dim);
}

.form-input:focus {
    outline: none;
    border-color: var(--volt-amber);
    box-shadow: 0 0 0 3px var(--volt-amber-light);
}

.form-input[aria-invalid="true"] {
    border-color: var(--volt-error);
    box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.1);
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

select.form-input {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B6F7B' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-error {
    display: block;
    font-size: var(--fs-sm);
    color: var(--volt-error);
    margin-top: var(--space-xs);
    min-height: 0;
}

/* Submit loading */
.btn__loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-top-color: var(--volt-black);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

.btn--loading .btn__text { display: none; }
.btn--loading .btn__loader { display: block; }

@keyframes spin { to { transform: rotate(360deg); } }

/* Success / Error */
.form-success,
.form-message-error {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
    display: none;
}

.form-success i,
.form-message-error i {
    font-size: var(--fs-4xl);
    margin-bottom: var(--space-md);
}

.form-success i { color: var(--volt-success); }
.form-message-error i { color: var(--volt-error); }

.form-success h3,
.form-message-error h3 {
    margin-bottom: var(--space-sm);
}

.form-success.visible,
.form-message-error.visible {
    display: block;
}

/* ============================================================
   16. GOOGLE MAPS
   ============================================================ */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--volt-border);
    background: var(--volt-surface);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================================
   17. TEAM GRID
   ============================================================ */
.team-card {
    background: var(--volt-surface);
    border: 1px solid var(--volt-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    transition: all var(--t-base) var(--ease-out);
}

.team-card:hover {
    border-color: rgba(255, 184, 0, 0.3);
    transform: translateY(-4px);
}

.team-card__avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--volt-elevated);
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-3xl);
    color: var(--volt-amber);
    border: 2px solid var(--volt-border);
}

.team-card__name {
    font-size: var(--fs-xl);
    margin-bottom: var(--space-xs);
}

.team-card__role {
    font-size: var(--fs-sm);
    color: var(--volt-amber);
    margin-bottom: var(--space-md);
    font-weight: var(--fw-medium);
}

.team-card__bio {
    font-size: var(--fs-sm);
    color: var(--volt-text);
    margin-bottom: var(--space-lg);
}

.team-card__social {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

.team-card__social a {
    color: var(--volt-muted);
    font-size: var(--fs-lg);
    transition: color var(--t-fast);
}

.team-card__social a:hover {
    color: var(--volt-amber);
}

/* ============================================================
   18. VALUES GRID
   ============================================================ */
.value-card {
    text-align: center;
    padding: var(--space-xl);
}

.value-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--volt-amber-light);
    border-radius: var(--radius-md);
    margin: 0 auto var(--space-lg);
    font-size: var(--fs-xl);
    color: var(--volt-amber);
}

.value-card__title {
    font-size: var(--fs-lg);
    margin-bottom: var(--space-sm);
}

.value-card__text {
    font-size: var(--fs-sm);
    color: var(--volt-text);
}

/* ============================================================
   19. PROCESS / STEPS
   ============================================================ */
.process {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    counter-reset: step;
}

.process__step {
    position: relative;
    background: var(--volt-surface);
    border: 1px solid var(--volt-border);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    padding-top: var(--space-2xl);
    text-align: center;
    transition: all var(--t-base) var(--ease-out);
}

.process__step:hover {
    border-color: rgba(255, 184, 0, 0.3);
}

.process__number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--volt-amber);
    color: var(--volt-black);
    border-radius: 50%;
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    font-family: var(--font-display);
}

.process__title {
    font-size: var(--fs-lg);
    margin-bottom: var(--space-sm);
}

.process__text {
    font-size: var(--fs-sm);
    color: var(--volt-text);
}

/* ============================================================
   19b. LEGAL PAGES
   ============================================================ */
.legal-content {
    line-height: var(--lh-normal);
}

.legal-content h2 {
    font-size: var(--fs-2xl);
    margin-top: var(--space-3xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--volt-border);
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: var(--space-md);
    color: var(--volt-text);
}

.legal-content ul {
    margin-bottom: var(--space-md);
    padding-left: var(--space-xl);
}

.legal-content ul li {
    color: var(--volt-text);
    margin-bottom: var(--space-sm);
    line-height: var(--lh-normal);
}

.legal-content ul li strong {
    color: var(--volt-white);
}

.legal-content a {
    color: var(--volt-amber);
    transition: color var(--t-fast);
}

.legal-content a:hover {
    color: var(--volt-blue);
}

.legal-meta {
    font-size: var(--fs-sm);
    color: var(--volt-muted);
    margin-bottom: var(--space-2xl);
    padding: var(--space-md) var(--space-lg);
    background: var(--volt-surface);
    border-radius: var(--radius-sm);
    border: 1px solid var(--volt-border);
}

.legal-related {
    margin-top: var(--space-3xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--volt-border);
}

.legal-related p { color: var(--volt-muted); font-size: var(--fs-sm); }
.legal-related a { color: var(--volt-amber); }
.legal-related a:hover { color: var(--volt-blue); }

/* GDPR rights grid */
.gdpr-rights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.gdpr-right {
    background: var(--volt-surface);
    border: 1px solid var(--volt-border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    transition: border-color var(--t-base);
}

.gdpr-right:hover {
    border-color: rgba(255, 184, 0, 0.3);
}

.gdpr-right h3 {
    font-size: var(--fs-lg);
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.gdpr-right h3 i {
    color: var(--volt-amber);
    font-size: var(--fs-base);
}

.gdpr-right p {
    font-size: var(--fs-sm);
    color: var(--volt-text);
    margin-bottom: 0;
}

/* ============================================================
   20. FOOTER
   ============================================================ */
.footer {
    background: var(--volt-black);
    padding: var(--space-4xl) 0 var(--space-xl);
    border-top: 1px solid var(--volt-border);
    position: relative;
}

/* Subtle top accent line */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--volt-amber), transparent);
    opacity: 0.3;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: var(--fw-extra);
    color: var(--volt-white);
    display: inline-block;
    margin-bottom: var(--space-md);
    letter-spacing: -0.03em;
}

.footer__logo .logo-accent {
    color: var(--volt-amber);
}

.footer__tagline {
    font-size: var(--fs-sm);
    color: var(--volt-muted);
    margin-bottom: var(--space-lg);
}

.footer__social {
    display: flex;
    gap: var(--space-sm);
}

.footer__social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--volt-border);
    border-radius: var(--radius-sm);
    color: var(--volt-muted);
    font-size: var(--fs-sm);
    transition: all var(--t-base) var(--ease-out);
}

.footer__social a:hover {
    border-color: var(--volt-amber);
    color: var(--volt-amber);
    background: var(--volt-amber-light);
}

.footer__social a:focus-visible {
    outline: 2px solid var(--volt-amber);
    outline-offset: 2px;
}

.footer__heading {
    font-family: var(--font-display);
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    color: var(--volt-white);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__links a {
    color: var(--volt-muted);
    font-size: var(--fs-sm);
    transition: color var(--t-fast);
}

.footer__links a:hover {
    color: var(--volt-amber);
}

.footer__links a:focus-visible {
    outline: 2px solid var(--volt-amber);
    outline-offset: 2px;
    border-radius: 2px;
}

.footer__contact p {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--fs-sm);
    color: var(--volt-muted);
    margin-bottom: var(--space-sm);
}

.footer__contact i {
    color: var(--volt-amber);
    width: 16px;
    text-align: center;
}

.footer__divider {
    border: none;
    border-top: 1px solid var(--volt-border);
    margin-bottom: var(--space-lg);
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    font-size: var(--fs-xs);
    color: var(--volt-dim);
}

/* ============================================================
   21. BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--volt-surface);
    color: var(--volt-amber);
    border-radius: var(--radius-sm);
    font-size: var(--fs-base);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--volt-border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--t-base) var(--ease-out);
    z-index: 900;
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--volt-amber);
    color: var(--volt-black);
    border-color: var(--volt-amber);
    box-shadow: var(--shadow-glow-amber);
    transform: translateY(-2px);
}

.back-to-top:focus-visible {
    outline: 2px solid var(--volt-amber);
    outline-offset: 2px;
}

/* ============================================================
   22. ANIMATIONS & UTILITIES
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-center { text-align: center; }

/* ============================================================
   23. MEDIA QUERIES
   ============================================================ */

/* 640px — Tablet portrait */
@media (min-width: 640px) {
    .grid--2 { grid-template-columns: repeat(2, 1fr); }
    .grid--3 { grid-template-columns: repeat(2, 1fr); }
    .grid--4 { grid-template-columns: repeat(2, 1fr); }

    .stats__grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

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

    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
    }

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

/* 768px — Tablet landscape */
@media (min-width: 768px) {
    h1 { font-size: var(--fs-5xl); }
    h2 { font-size: var(--fs-4xl); }

    .hero__title {
        font-size: var(--fs-5xl);
    }

    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

/* 1024px — Desktop */
@media (min-width: 1024px) {
    .hero__title {
        font-size: var(--fs-6xl);
    }

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

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

    .process {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Desktop navigation */
    .nav__toggle {
        display: none;
    }

    .nav__menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        flex-direction: row;
        transform: none;
        gap: var(--space-xs);
    }

    .nav__link {
        font-size: var(--fs-sm);
        padding: var(--space-sm) var(--space-md);
        position: relative;
    }

    /* Underline effect */
    .nav__link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: var(--space-md);
        right: var(--space-md);
        height: 2px;
        background: var(--volt-amber);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform var(--t-base) var(--ease-out);
    }

    .nav__link:hover::after,
    .nav__link.active::after {
        transform: scaleX(1);
        transform-origin: left;
    }

    .nav__link--cta::after {
        display: none;
    }

    .footer__grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    }

    .service-detail .split {
        grid-template-columns: 1fr 1fr;
    }
}

/* 1280px — Large desktop */
@media (min-width: 1280px) {
    .container {
        padding: 0 var(--space-xl);
    }
}
