/* =========================================
   Arolesa UAB — Main Stylesheet
   ========================================= */

:root {
    /* Core brand colors */
    --blue:        #002452;
    --blue-light:  #0a3d80;
    --blue-dark:   #010c1e;
    --blue-mid:    #051d3a;
    --orange:      #F47933;
    --orange-dark: #D96826;
    --orange-glow: rgba(244, 121, 51, 0.20);
    --white:       #ffffff;

    /* Dark theme backgrounds */
    --bg:          #010c1e;
    --bg-2:        #050f22;
    --bg-3:        #061428;

    /* Glass effects */
    --glass:              rgba(255, 255, 255, 0.04);
    --glass-hover:        rgba(255, 255, 255, 0.07);
    --glass-border:       rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(244, 121, 51, 0.45);

    /* Text */
    --text:       #dce5f0;
    --text-muted: rgba(220, 229, 240, 0.60);
    --text-dim:   rgba(220, 229, 240, 0.40);

    /* Legacy gray aliases — keep HTML classes working */
    --gray-50:  #0d1929;
    --gray-100: #0f1e33;
    --gray-200: rgba(255,255,255,0.08);
    --gray-400: rgba(220,229,240,0.45);
    --gray-600: rgba(220,229,240,0.60);
    --gray-800: rgba(220,229,240,0.85);

    /* Geometry */
    --radius:    10px;
    --radius-lg: 18px;

    /* Shadows */
    --shadow:    0 4px 24px rgba(0, 0, 0, 0.50);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.65);

    /* Animation */
    --transition: 0.25s ease;

    /* Fonts */
    --font-heading: 'Space Grotesk', 'Inter', sans-serif;
    --font:         'Inter', sans-serif;
}

/* ---- Skip link (accessibility) ---- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 9999;
    padding: 10px 20px;
    background: var(--orange);
    color: var(--white);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 0 0 var(--radius) var(--radius);
    transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); }

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }

.section-alt {
    background: var(--bg-2);
    position: relative;
}
.section-alt::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}
.section-dark { background: var(--bg-3); color: var(--white); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.025em;
}
.section-dark .section-header h2 { color: var(--white); }
.section-header .subtitle {
    margin-top: 14px;
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}
.section-dark .section-header .subtitle { color: var(--text-muted); }
.section-header .accent-line {
    display: inline-block;
    width: 44px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
    margin: 20px auto 0;
    box-shadow: 0 0 12px rgba(244,121,51,0.5);
}

.section-header--left { text-align: left; }
.section-header--left .subtitle { margin-left: 0; margin-right: 0; max-width: 640px; }
.section-header--left .accent-line { margin: 16px 0 0; }

.section-footer { text-align: center; margin-top: 48px; }

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font);
    transition: all var(--transition);
    letter-spacing: 0.01em;
}
.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(244,121,51,0.35);
}
.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(244,121,51,0.55);
}
.btn-secondary {
    background: var(--glass);
    color: var(--white);
    border: 1.5px solid var(--glass-border);
    backdrop-filter: blur(8px);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.22);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--orange);
    border: 1.5px solid rgba(244,121,51,0.45);
}
.btn-outline:hover {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
    box-shadow: 0 4px 20px rgba(244,121,51,0.45);
}
.btn svg { width: 18px; height: 18px; }

/* =========================================
   HEADER
   ========================================= */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(1, 12, 30, 0.72);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.site-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(244,121,51,0.40) 20%,
        rgba(244,121,51,0.40) 80%,
        transparent 100%);
    pointer-events: none;
    transition: background 0.35s ease;
}
.site-header.scrolled {
    background: rgba(1, 12, 30, 0.97);
    border-bottom-color: transparent;
    box-shadow: 0 8px 48px rgba(0,0,0,0.60);
}
.site-header.scrolled::after {
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(244,121,51,0.80) 20%,
        rgba(244,121,51,0.80) 80%,
        transparent 100%);
}

.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { height: 32px; width: auto; }
.logo-link { display: flex; align-items: center; }

.main-nav ul { display: flex; align-items: center; gap: 2px; }
.main-nav a {
    position: relative;
    color: rgba(220,229,240,0.62);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: color 0.22s ease;
    letter-spacing: 0.02em;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%; right: 50%;
    height: 1.5px;
    background: var(--orange);
    border-radius: 2px;
    transition: left 0.22s ease, right 0.22s ease;
}
.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after { left: 20px; right: 20px; }
.main-nav a.active { color: var(--white); }
.main-nav a.active::after { left: 14px; right: 14px; }

.main-nav .nav-cta {
    background: var(--orange);
    color: var(--white);
    padding: 8px 20px;
    box-shadow: 0 2px 14px rgba(244,121,51,0.35);
    transition: background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
.main-nav .nav-cta::after { display: none; }
.main-nav .nav-cta:hover {
    background: var(--orange-dark);
    box-shadow: 0 4px 24px rgba(244,121,51,0.55);
    transform: translateY(-1px);
    color: var(--white);
}
.main-nav .nav-cta.active {
    background: var(--orange);
    box-shadow: 0 2px 14px rgba(244,121,51,0.35);
    color: var(--white);
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(220,229,240,0.75);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    background: var(--glass);
    transition: color var(--transition), border-color var(--transition), background var(--transition);
    white-space: nowrap;
}
.header-phone svg { width: 15px; height: 15px; flex-shrink: 0; }
.header-phone:hover {
    color: var(--white);
    border-color: rgba(244,121,51,0.45);
    background: var(--glass-hover);
}

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================
   HERO
   ========================================= */
.hero {
    min-height: 100vh;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    padding-top: 72px;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 80% at 95% 5%,  rgba(244,121,51,0.10) 0%, transparent 55%),
        radial-gradient(ellipse 50% 60% at  0% 100%, rgba(0,36,82,0.75)  0%, transparent 60%),
        radial-gradient(ellipse 70% 50% at 50%   0%, rgba(5,29,58,0.90)  0%, transparent 65%),
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 100%, 100%, 100%, 60px 60px, 60px 60px;
}
.hero-grid {
    position: absolute;
    bottom: 0; left: -20%; right: -20%;
    height: 40%;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    transform: perspective(500px) rotateX(55deg);
    transform-origin: bottom center;
    mask-image: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 80%);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 80%);
}

/* ---- Split layout ---- */
.hero-body {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    padding: 72px 0 56px;
}

.hero-content { position: relative; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244,121,51,0.10);
    border: 1px solid rgba(244,121,51,0.28);
    color: var(--orange);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}
.hero h1 {
    font-size: clamp(2rem, 3.2vw, 3.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -0.035em;
}
.hero h1 span { color: var(--orange); }
.hero p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.80;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- Stats bar ---- */
.hero-stats-bar {
    position: relative;
    z-index: 1;
    padding-bottom: 44px;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
}
.hero-stat {
    background: rgba(255,255,255,0.03);
    padding: 24px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: background var(--transition);
}
.hero-stat:hover { background: rgba(255,255,255,0.06); }
.hero-stat strong {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    font-family: var(--font-heading);
    letter-spacing: -0.025em;
}
.hero-stat strong span { color: var(--orange); }
.hero-stat small {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-top: 8px;
    display: block;
    letter-spacing: 0.02em;
}

/* =========================================
   ORBIT VISUAL
   ========================================= */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.orbit-wrap {
    position: relative;
    width: 420px;
    height: 420px;
    flex-shrink: 0;
}

/* Ambient glow behind the core */
.orbit-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 160px; height: 160px;
    background: radial-gradient(circle, rgba(244,121,51,0.18) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow-pulse 3.5s ease-in-out infinite;
    pointer-events: none;
}
@keyframes glow-pulse {
    0%, 100% { opacity: 0.7; transform: translate(-50%,-50%) scale(1);    }
    50%       { opacity: 1;   transform: translate(-50%,-50%) scale(1.25); }
}

/* Central icon */
.orbit-core {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 76px; height: 76px;
    background: linear-gradient(135deg, rgba(244,121,51,0.20) 0%, rgba(4,12,30,0.92) 100%);
    border: 1.5px solid rgba(244,121,51,0.55);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 0 8px rgba(244,121,51,0.06),
        0 0 28px rgba(244,121,51,0.25),
        0 0 56px rgba(244,121,51,0.08);
    z-index: 5;
}
.orbit-core svg { width: 34px; height: 34px; stroke: var(--orange); }

/* Orbit rings */
.orbit {
    position: absolute;
    top: 50%; left: 50%;
    border-radius: 50%;
    border: 1px solid;
}
.orbit-1 {
    width: 170px; height: 170px;
    margin-left: -85px; margin-top: -85px;
    border-color: rgba(244,121,51,0.25);
    box-shadow: inset 0 0 16px rgba(244,121,51,0.04);
    animation: orbit-cw 9s linear infinite;
}
.orbit-2 {
    width: 286px; height: 286px;
    margin-left: -143px; margin-top: -143px;
    border-color: rgba(255,255,255,0.07);
    animation: orbit-ccw 16s linear infinite;
}
.orbit-3 {
    width: 406px; height: 406px;
    margin-left: -203px; margin-top: -203px;
    border-color: rgba(10,61,128,0.30);
    animation: orbit-cw 26s linear infinite;
}

@keyframes orbit-cw  { to { transform: rotate( 360deg); } }
@keyframes orbit-ccw { to { transform: rotate(-360deg); } }

/* Icons sit at 12 o'clock of each ring and counter-rotate to stay upright */
.orbit-item {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px; height: 44px;
    background: rgba(4,11,28,0.94);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}
.orbit-item svg { width: 20px; height: 20px; }

.orbit-1 .orbit-item {
    border: 1px solid rgba(244,121,51,0.40);
    box-shadow: 0 0 16px rgba(244,121,51,0.20);
    animation: item-ccw 9s linear infinite;
}
.orbit-1 .orbit-item svg { stroke: var(--orange); }

.orbit-2 .orbit-item {
    border: 1px solid rgba(255,255,255,0.11);
    animation: item-cw 16s linear infinite;
}
.orbit-2 .orbit-item svg { stroke: rgba(220,229,240,0.65); }

.orbit-3 .orbit-item {
    border: 1px solid rgba(10,61,128,0.50);
    animation: item-ccw 26s linear infinite;
}
.orbit-3 .orbit-item svg { stroke: rgba(220,229,240,0.55); }

@keyframes item-ccw { to { transform: translateX(-50%) rotate(-360deg); } }
@keyframes item-cw  { to { transform: translateX(-50%) rotate( 360deg); } }

/* =========================================
   PRODUCT CATEGORIES
   ========================================= */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 20px; }
.category-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
    backdrop-filter: blur(4px);
    color: inherit;
}
.category-card:hover {
    border-color: rgba(244,121,51,0.40);
    background: var(--glass-hover);
    box-shadow: 0 0 28px rgba(244,121,51,0.10), var(--shadow);
    transform: translateY(-4px);
}
.category-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: all var(--transition);
}
.category-card:hover .category-icon {
    background: rgba(244,121,51,0.12);
    border-color: rgba(244,121,51,0.30);
}
.category-icon svg {
    width: 28px;
    height: 28px;
    stroke: rgba(220,229,240,0.60);
    transition: stroke var(--transition);
}
.category-card:hover .category-icon svg { stroke: var(--orange); }
.category-card h3 {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.category-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }

/* =========================================
   STATS COUNTER
   ========================================= */
.stats-section {
    background: var(--bg-2);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 100% at 15% 50%, rgba(244,121,51,0.07) 0%, transparent 60%),
        radial-gradient(ellipse 50% 100% at 85% 50%, rgba(10,61,128,0.18) 0%, transparent 60%);
    pointer-events: none;
}
.stats-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.stat-item {
    padding: 24px 16px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.06);
}
.stat-item:last-child { border-right: none; }
.stat-item strong {
    display: block;
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-heading);
    letter-spacing: -0.035em;
}
.stat-item strong .counter-suffix { color: var(--orange); }
.stat-item p { color: var(--text-muted); font-size: 0.875rem; margin-top: 6px; }

/* =========================================
   WHY CHOOSE US
   ========================================= */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    background: var(--glass);
    border: 1px solid var(--glass-border);
    transition: all var(--transition);
    backdrop-filter: blur(4px);
}
.why-card:hover {
    border-color: rgba(244,121,51,0.35);
    background: var(--glass-hover);
    box-shadow: 0 0 20px rgba(244,121,51,0.08), var(--shadow);
    transform: translateY(-3px);
}
.why-number {
    font-size: 2.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: rgba(244,121,51,0.14);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
    transition: color var(--transition);
}
.why-card:hover .why-number { color: rgba(244,121,51,0.28); }
.why-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.why-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; }

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
    background: linear-gradient(135deg, #010c1e 0%, #001530 45%, #051d3a 100%);
    padding: 96px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
}
.cta-banner::after {
    content: '';
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 900px; height: 500px;
    background: radial-gradient(ellipse, rgba(244,121,51,0.14) 0%, transparent 65%);
    pointer-events: none;
}
.cta-banner h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.025em;
}
.cta-banner p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}
.cta-banner .btn { position: relative; z-index: 1; }

/* =========================================
   ABOUT PAGE
   ========================================= */
.page-hero {
    background: var(--bg);
    padding: 150px 0 96px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 80% at 82% 22%, rgba(244,121,51,0.11) 0%, transparent 65%),
        radial-gradient(ellipse 40% 60% at 10% 90%, rgba(10,61,128,0.28) 0%, transparent 55%),
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 100%, 100%, 60px 60px, 60px 60px;
    pointer-events: none;
}
.page-hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 700;
    color: var(--white);
    position: relative;
    letter-spacing: -0.03em;
}
.page-hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 16px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    line-height: 1.75;
}
.page-hero .accent-line {
    display: block;
    width: 44px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
    margin: 20px auto 0;
    position: relative;
    box-shadow: 0 0 14px rgba(244,121,51,0.55);
}

.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-intro-text h2 {
    font-size: clamp(1.7rem, 2.5vw, 2.4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.about-intro-text p { color: var(--text-muted); line-height: 1.85; margin-bottom: 16px; }
.about-visual {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    backdrop-filter: blur(8px);
}
.about-visual-item { display: flex; align-items: flex-start; gap: 18px; }
.about-visual-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(244,121,51,0.10);
    border: 1px solid rgba(244,121,51,0.22);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-visual-icon svg { width: 22px; height: 22px; stroke: var(--orange); }
.about-visual-item h4 { font-size: 0.95rem; font-weight: 600; color: var(--white); letter-spacing: -0.01em; }
.about-visual-item p { font-size: 0.85rem; color: var(--text-muted); margin-top: 3px; line-height: 1.6; }

.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.value-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all var(--transition);
    backdrop-filter: blur(4px);
}
.value-card:hover {
    border-color: rgba(244,121,51,0.35);
    background: var(--glass-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(244,121,51,0.08);
}
.value-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    background: var(--orange);
    border-radius: 50%;
    margin-top: 7px;
    box-shadow: 0 0 8px rgba(244,121,51,0.55);
}
.value-card h3 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 8px; letter-spacing: -0.01em; }
.value-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; }

/* =========================================
   PRODUCTS PAGE
   ========================================= */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 24px; }
.product-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
    z-index: 1;
}
.product-card:hover {
    border-color: rgba(244,121,51,0.35);
    box-shadow: 0 0 36px rgba(244,121,51,0.10), var(--shadow-lg);
    transform: translateY(-5px);
    z-index: 2;
}
.product-card-header {
    background: linear-gradient(135deg, rgba(0,36,82,0.80) 0%, rgba(10,61,128,0.50) 100%);
    border-bottom: 1px solid var(--glass-border);
    padding: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.product-card-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 70% at 80% 20%, rgba(244,121,51,0.08) 0%, transparent 70%);
}
.products-grid .product-card:nth-child(3n+2) .product-card-header {
    background: linear-gradient(135deg, rgba(1,12,30,0.90) 0%, rgba(5,29,58,0.70) 100%);
}
.products-grid .product-card:nth-child(3n) .product-card-header {
    background: linear-gradient(135deg, rgba(5,18,45,0.90) 0%, rgba(0,48,112,0.40) 100%);
}
.product-card-header svg { width: 48px; height: 48px; stroke: rgba(255,255,255,0.80); position: relative; }
.product-card-body { padding: 28px; }
.product-card-body h3 { font-size: 1.05rem; font-weight: 600; color: var(--white); margin-bottom: 10px; letter-spacing: -0.01em; }
.product-card-body p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }
.product-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
.product-tag {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.09);
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.02em;
}

/* =========================================
   SERVICES PAGE
   ========================================= */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    transition: all var(--transition);
    backdrop-filter: blur(4px);
}
.service-card:hover {
    border-color: rgba(244,121,51,0.40);
    box-shadow: 0 0 28px rgba(244,121,51,0.10), var(--shadow);
    transform: translateY(-3px);
}
.service-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(244,121,51,0.10);
    border: 1px solid rgba(244,121,51,0.22);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all var(--transition);
}
.service-card:hover .service-card-icon {
    background: rgba(244,121,51,0.18);
    box-shadow: 0 0 18px rgba(244,121,51,0.28);
}
.service-card-icon svg { width: 26px; height: 26px; stroke: var(--orange); }
.service-card h3 { font-size: 1.2rem; font-weight: 600; color: var(--white); margin-bottom: 12px; letter-spacing: -0.01em; }
.service-card p { color: var(--text-muted); line-height: 1.8; }
.service-card ul { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.service-card ul li {
    font-size: 0.875rem;
    color: var(--text-muted);
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}
.service-card ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 8px;
    width: 7px; height: 7px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(244,121,51,0.45);
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.contact-info h2 { font-size: 1.9rem; font-weight: 700; color: var(--white); margin-bottom: 16px; letter-spacing: -0.02em; }
.contact-info p { color: var(--text-muted); line-height: 1.8; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; }
.contact-detail-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(244,121,51,0.10);
    border: 1px solid rgba(244,121,51,0.20);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-detail-icon svg { width: 20px; height: 20px; stroke: var(--orange); }
.contact-detail h4 { font-size: 0.76rem; font-weight: 600; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.9px; }
.contact-detail p { font-size: 0.95rem; color: var(--white); font-weight: 600; margin-top: 2px; }
.contact-detail a { color: var(--white); }
.contact-detail a:hover { color: var(--orange); }

/* Multi-step form */
.form-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 48px;
    backdrop-filter: blur(12px);
}
.form-progress { display: flex; align-items: center; margin-bottom: 40px; }
.progress-step { display: flex; flex-direction: column; align-items: center; flex: 1; position: relative; }
.progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 16px;
    left: 50%; right: -50%;
    height: 1px;
    background: rgba(255,255,255,0.10);
    z-index: 0;
}
.progress-step.active:not(:last-child)::after,
.progress-step.done:not(:last-child)::after { background: var(--orange); box-shadow: 0 0 8px rgba(244,121,51,0.40); }
.progress-dot {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dim);
    position: relative;
    z-index: 1;
    transition: all var(--transition);
}
.progress-step.active .progress-dot {
    border-color: var(--orange);
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 0 16px rgba(244,121,51,0.45);
}
.progress-step.done .progress-dot { border-color: var(--orange); background: var(--orange); color: var(--white); }
.progress-label { font-size: 0.72rem; color: var(--text-dim); margin-top: 8px; font-weight: 500; }
.progress-step.active .progress-label { color: var(--orange); font-weight: 600; }
.progress-step.done .progress-label { color: rgba(244,121,51,0.70); }

.form-step { display: none; }
.form-step.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.form-step h3 { font-size: 1.25rem; font-weight: 600; color: var(--white); margin-bottom: 6px; letter-spacing: -0.01em; }
.form-step .step-desc { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: rgba(220,229,240,0.70); margin-bottom: 8px; letter-spacing: 0.01em; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(255,255,255,0.10);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.95rem;
    color: var(--white);
    background: rgba(255,255,255,0.04);
    transition: all var(--transition);
    outline: none;
}
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23667a94' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 42px;
    cursor: pointer;
}
.form-group select option { background: #0d1929; color: var(--white); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(220,229,240,0.28); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgba(244,121,51,0.50);
    background: rgba(255,255,255,0.06);
    box-shadow: 0 0 0 3px rgba(244,121,51,0.10);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; }
.form-nav .btn-back {
    color: var(--text-dim);
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition);
    background: none;
}
.form-nav .btn-back:hover { color: var(--white); }
.form-nav .btn-back svg { width: 16px; height: 16px; }

.form-success { text-align: center; padding: 40px 0; display: none; }
.form-success svg { width: 64px; height: 64px; stroke: #4ade80; margin: 0 auto 20px; }
.form-success h3 { font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 10px; letter-spacing: -0.01em; }
.form-success p { color: var(--text-muted); }

.form-error-msg {
    background: rgba(220,38,38,0.10);
    border: 1px solid rgba(220,38,38,0.25);
    border-radius: var(--radius);
    padding: 12px 16px;
    color: #f87171;
    font-size: 0.875rem;
    margin-bottom: 20px;
    display: none;
}

.review-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 20px 24px;
}
.review-list { display: flex; flex-direction: column; gap: 10px; }
.review-item { display: flex; gap: 12px; font-size: 0.875rem; }
.review-label { font-weight: 600; color: rgba(220,229,240,0.75); min-width: 130px; flex-shrink: 0; }
.review-value { color: var(--text-muted); word-break: break-word; }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background: #010a18;
    color: var(--white);
    padding: 72px 0 0;
    position: relative;
    border-top: 1px solid rgba(244,121,51,0.25);
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    opacity: 0.5;
}
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
.footer-brand .footer-logo { height: 34px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; color: var(--text-dim); line-height: 1.8; max-width: 280px; }
.site-footer h4 {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-dim);
    margin-bottom: 18px;
}
.footer-nav ul, .footer-contact ul { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { color: var(--text-muted); font-size: 0.875rem; transition: color var(--transition); }
.footer-nav a:hover { color: var(--orange); }
.footer-contact li { color: var(--text-muted); font-size: 0.875rem; }
.footer-contact a { color: var(--text-muted); transition: color var(--transition); }
.footer-contact a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 20px 0; }
.footer-bottom p { font-size: 0.8rem; color: var(--text-dim); text-align: center; }

/* =========================================
   HOW IT WORKS STEPS
   ========================================= */
.how-steps { display: flex; align-items: flex-start; gap: 0; }
.how-step { flex: 1; text-align: center; padding: 0 16px; }
.how-step-num {
    width: 52px; height: 52px;
    background: rgba(244,121,51,0.10);
    border: 1.5px solid rgba(244,121,51,0.30);
    color: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 auto 18px;
    font-family: var(--font-heading);
    box-shadow: 0 0 18px rgba(244,121,51,0.18);
}
.how-step h3 { font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 8px; letter-spacing: -0.01em; }
.how-step p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
.how-step-arrow { color: rgba(244,121,51,0.45); display: flex; align-items: center; padding-top: 16px; flex-shrink: 0; }
.how-step-arrow svg { width: 24px; height: 24px; }

/* ---- Contact trust callout ---- */
.contact-trust {
    margin-top: 32px;
    background: rgba(244,121,51,0.06);
    border: 1px solid rgba(244,121,51,0.18);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-trust-icon {
    width: 40px; height: 40px; min-width: 40px;
    background: rgba(244,121,51,0.12);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-trust-icon svg { width: 20px; height: 20px; stroke: var(--orange); }
.contact-trust strong { font-size: 0.875rem; font-weight: 700; color: var(--white); display: block; margin-bottom: 4px; }
.contact-trust p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ---- Button spinner ---- */
@keyframes btn-spin { to { transform: rotate(360deg); } }
.btn-spinner {
    display: inline-block;
    width: 16px; height: 16px;
    border: 2px solid rgba(255,255,255,0.25);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btn-spin 0.7s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
    flex-shrink: 0;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .hero-split { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .hero-split { padding: 56px 0 40px; }
    .about-intro { grid-template-columns: 1fr; gap: 40px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .stat-item:nth-child(3),
    .stat-item:nth-child(4) { border-bottom: none; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .section { padding: 64px 0; }
    .hamburger { display: flex; }
    .header-phone span { display: none; }
    .header-phone { padding: 7px; border-radius: 50%; }
    .header-phone svg { width: 17px; height: 17px; }
    .main-nav {
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: rgba(1, 10, 24, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        padding: 16px 24px 24px;
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.28s ease, opacity 0.28s ease;
        border-top: 1px solid rgba(244,121,51,0.30);
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
    .main-nav ul { flex-direction: column; gap: 2px; }
    .main-nav a {
        display: block;
        padding: 12px 16px;
        border-radius: var(--radius);
    }
    .main-nav a::after { display: none; }
    .main-nav a:hover { background: rgba(255,255,255,0.05); color: var(--white); }
    .main-nav a.active {
        background: rgba(244,121,51,0.08);
        border-left: 2px solid var(--orange);
        padding-left: 14px;
        color: var(--white);
    }
    .hero { min-height: auto; }
    .hero-stats-bar { padding-bottom: 32px; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .how-steps { flex-direction: column; align-items: center; }
    .how-step-arrow { transform: rotate(90deg); padding: 0; }
    .contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .form-card { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .stat-item:nth-child(3),
    .stat-item:nth-child(4) { border-bottom: none; }
    .products-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
}

@media (max-width: 480px) {
    .categories-grid { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); }
    .hero-stat { padding: 16px 8px; }
    .hero-stat strong { font-size: 1.5rem; }
    .hero-stat small { font-size: 0.72rem; }
    .form-progress .progress-label { display: none; }
}

/* =========================================
   SCROLL REVEAL
   ========================================= */
@media (prefers-reduced-motion: no-preference) {
    html { scroll-behavior: smooth; }
    .reveal-hidden {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }
}

/* =========================================
   PRODUCT CARD BRANDS LINE
   ========================================= */
.product-card-brands {
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--glass-border);
    line-height: 1.5;
}

.product-card-brands strong {
    font-weight: 600;
    color: var(--text-muted);
    margin-right: 4px;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.testimonial-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: border-color var(--transition), transform var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(255,255,255,0.14);
    transform: translateY(-2px);
}

.testimonial-quote-mark {
    font-size: 3rem;
    line-height: 1;
    color: var(--orange);
    font-family: Georgia, serif;
    opacity: 0.7;
    margin-bottom: -8px;
}

.testimonial-text {
    font-size: 0.9375rem;
    color: var(--text);
    line-height: 1.75;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-light), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.testimonial-author-info strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
}

.testimonial-author-info span {
    font-size: 0.8rem;
    color: var(--text-dim);
}

@media (max-width: 1024px) {
    .testimonials-grid { grid-template-columns: 1fr; }
}

/* =========================================
   BRANDS SECTION
   ========================================= */
.brands-groups {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 48px;
}

.brands-group {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 20px 24px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: border-color var(--transition);
}

.brands-group:hover { border-color: rgba(255,255,255,0.14); }

.brands-group-label {
    flex-shrink: 0;
    width: 160px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding-top: 7px;
}

.brands-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.brand-chip {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    background: var(--bg-3);
    transition: border-color var(--transition), color var(--transition);
}

.brand-chip:hover {
    border-color: rgba(244,121,51,0.45);
    color: var(--white);
}

@media (max-width: 768px) {
    .brands-group { flex-direction: column; gap: 12px; }
    .brands-group-label { width: auto; padding-top: 0; }
}

/* =========================================
   LEGAL PAGES
   ========================================= */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-updated {
    display: inline-block;
    padding: 6px 14px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.legal-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin: 48px 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--glass-border);
}

.legal-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    margin: 28px 0 10px;
}

.legal-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
    color: var(--text-muted);
    line-height: 1.8;
    margin: 12px 0 20px 24px;
    list-style: disc;
}

.legal-content ol { list-style: decimal; }

.legal-content li { margin-bottom: 8px; }

.legal-content a {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-content a:hover { color: var(--orange-dark); }

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

.legal-highlight {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-left: 3px solid var(--orange);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 24px 0;
}

.legal-highlight p { margin-bottom: 0; }

/* Footer legal links */
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    font-size: 0.82rem;
    color: var(--text-dim);
    transition: color var(--transition);
}

.footer-legal-links a:hover { color: var(--text-muted); }

@media (max-width: 600px) {
    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}
