/* ============================================
   COLIN MILAS — Design System Premium
   Creative Hot Forging — Since 1900+
   Palette: Bleu Acier #1867a6 / Orange Forge #E8590C / Gris Industriel
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --blue: #1867a6;
    --blue-dark: #0d4a7a;
    --blue-light: #2394c6;
    --orange: #E8590C;
    --orange-light: #FF6B1A;
    --orange-glow: #FF8C42;
    --dark: #0a0a0a;
    --dark-card: #111111;
    --dark-surface: #1a1a1a;
    --gray-900: #1a1a1a;
    --gray-800: #2d2d2d;
    --gray-700: #404040;
    --gray-600: #525252;
    --gray-500: #6b6b6b;
    --gray-400: #8a8a8a;
    --gray-300: #b0b0b0;
    --gray-200: #d4d4d4;
    --gray-100: #eeeeee;
    --gray-50: #f8f8f8;
    --white: #ffffff;
    --font-heading: 'Bebas Neue', 'Impact', sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0,0,0,0.12);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 30px rgba(232,89,12,0.3);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--gray-200);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}

a { color: var(--orange-light); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--orange-glow); }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--white); line-height: 1.1; letter-spacing: 1px; text-transform: uppercase; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; position: relative; }

/* === CUSTOM CURSOR (FORGE EMBER) === */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.1s, opacity 0.3s;
    box-shadow: 0 0 12px var(--orange), 0 0 24px rgba(232,89,12,0.4);
}
.cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(232,89,12,0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.15s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor-dot.hover { transform: scale(2.5); }
.cursor-ring.hover { width: 60px; height: 60px; border-color: var(--orange-glow); }
@media (max-width: 768px) { .cursor-dot, .cursor-ring { display: none !important; } body { cursor: auto; } }

/* === SCROLL PROGRESS BAR === */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-glow), var(--blue-light));
    z-index: 100000;
    transition: width 0.1s;
}

/* === TOPBAR === */
.topbar {
    background: var(--dark);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--gray-400);
    position: relative;
    z-index: 1000;
}
.topbar a { color: var(--gray-300); }
.topbar a:hover { color: var(--orange-light); }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }

/* === NAVBAR === */
.navbar {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.4s ease, box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.navbar.hidden { transform: translateY(-100%); }
.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    max-width: 1280px;
    margin: 0 auto;
}
.navbar-logo img { height: 48px; filter: brightness(1.1); transition: var(--transition); }
.navbar-logo:hover img { filter: brightness(1.3) drop-shadow(0 0 8px rgba(232,89,12,0.4)); }
.navbar-menu { display: flex; gap: 8px; list-style: none; align-items: center; }
.navbar-menu a {
    display: block;
    padding: 10px 18px;
    color: var(--gray-200);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}
.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: var(--transition);
    transform: translateX(-50%);
}
.navbar-menu a:hover, .navbar-menu a.active { color: var(--white); background: rgba(232,89,12,0.1); }
.navbar-menu a:hover::after, .navbar-menu a.active::after { width: 60%; }

/* Mobile hamburger */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10001;
}
.navbar-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}
.navbar-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-toggle.active span:nth-child(2) { opacity: 0; }
.navbar-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 968px) {
    .navbar-toggle { display: flex; }
    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(10,10,10,0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 100px 32px 40px;
        gap: 4px;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(255,255,255,0.05);
    }
    .navbar-menu.open { right: 0; }
    .navbar-menu a { font-size: 1.1rem; padding: 14px 20px; }
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.3);
    transform: scale(1.1);
    transition: transform 8s ease-out;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.8) 0%, rgba(24,103,166,0.4) 50%, rgba(232,89,12,0.3) 100%);
}
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 24px;
    max-width: 900px;
}
.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(232,89,12,0.15);
    border: 1px solid rgba(232,89,12,0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--orange-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}
.hero h1 { margin-bottom: 20px; }
.hero h1 span { color: var(--orange); text-shadow: 0 0 40px rgba(232,89,12,0.4); }
.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--gray-300);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    border: none;
    cursor: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
    transform: translate(-50%, -50%);
}
.btn:hover::before { width: 300px; height: 300px; }
.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(232,89,12,0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(232,89,12,0.5); color: var(--white); }
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange-light); transform: translateY(-3px); }
.btn-blue {
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(24,103,166,0.4);
}
.btn-blue:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(24,103,166,0.5); color: var(--white); }

/* === SECTION TITLES === */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 16px;
    font-family: var(--font-body);
}
.section-header h2 { margin-bottom: 20px; }
.section-header h2 span { color: var(--orange); }
.section-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--blue-light));
    margin: 0 auto 20px;
    border-radius: 3px;
}
.section-desc { font-size: 1.1rem; color: var(--gray-400); max-width: 600px; margin: 0 auto; }

/* === CARDS === */
.card {
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232,89,12,0.2);
}
.card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.card:hover .card-img { transform: scale(1.08); }
.card-img-wrap { overflow: hidden; position: relative; }
.card-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 50%);
}
.card-body { padding: 28px; position: relative; }
.card-body h3 { margin-bottom: 12px; font-size: 1.3rem; }
.card-body p { color: var(--gray-400); font-size: 0.95rem; line-height: 1.7; }

/* Tilt card 3D */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}
.tilt-card .card-body { transform: translateZ(30px); }

/* Glass card */
.glass-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition);
}
.glass-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(232,89,12,0.3);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

/* === GRID LAYOUTS === */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 968px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* === STATS / COUNTERS === */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding: 60px 0;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--orange);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(232,89,12,0.3);
}
.stat-label {
    font-size: 0.9rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
}
@media (max-width: 768px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }

/* === TIMELINE === */
.timeline { position: relative; padding: 40px 0; }
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--orange), var(--blue), var(--orange));
    transform: translateX(-50%);
}
.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 40px);
    margin-bottom: 60px;
    position: relative;
}
.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 40px);
}
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 16px;
    height: 16px;
    background: var(--orange);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(232,89,12,0.5);
    z-index: 2;
}
.timeline-content {
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 28px;
    max-width: 480px;
    transition: var(--transition);
}
.timeline-content:hover { border-color: rgba(232,89,12,0.3); box-shadow: var(--shadow-glow); }
.timeline-content h3 { margin-bottom: 12px; color: var(--orange); font-size: 1.2rem; }
.timeline-content p { color: var(--gray-400); font-size: 0.95rem; }

@media (max-width: 768px) {
    .timeline::before { left: 20px; }
    .timeline-item, .timeline-item:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
        justify-content: flex-start;
    }
    .timeline-dot { left: 20px; }
}

/* === FEATURE ROWS (alternating) === */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}
.feature-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.feature-img:hover img { transform: scale(1.05); }
.feature-img::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
    pointer-events: none;
}
.feature-text h3 { margin-bottom: 16px; }
.feature-text p { color: var(--gray-400); margin-bottom: 16px; }
.feature-list { list-style: none; }
.feature-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--gray-300);
}
.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(232,89,12,0.5);
}
@media (max-width: 768px) {
    .feature-row, .feature-row.reverse { grid-template-columns: 1fr; gap: 32px; direction: ltr; }
}

/* === GALLERY / LIGHTBOX === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    aspect-ratio: 4/3;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after {
    content: '\f065';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232,89,12,0.4);
    color: white;
    font-size: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

#lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}
#lightbox-overlay.active { display: flex; }
#lightbox-overlay img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-close:hover { background: var(--orange); }
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-nav:hover { background: var(--orange); border-color: var(--orange); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* === FORM (Glassmorphism) === */
.form-glass {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 48px;
    backdrop-filter: blur(20px);
}
.form-group { margin-bottom: 24px; }
.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-200);
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 20px rgba(232,89,12,0.15);
    background: rgba(255,255,255,0.08);
}
.form-group textarea { resize: vertical; min-height: 140px; }

/* === FOOTER === */
.footer {
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 80px 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand img { height: 56px; margin-bottom: 16px; filter: brightness(1.1); }
.footer-brand p { color: var(--gray-400); font-size: 0.95rem; line-height: 1.7; }
.footer h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--gray-400); font-size: 0.9rem; }
.footer-links a:hover { color: var(--orange-light); padding-left: 4px; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--gray-400);
    font-size: 0.9rem;
}
.footer-contact i { color: var(--orange); margin-top: 4px; min-width: 16px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--gray-500);
}
.footer-bottom a { color: var(--gray-400); }
@media (max-width: 968px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }

/* === SCROLL TO TOP === */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 9990;
    box-shadow: 0 4px 20px rgba(232,89,12,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(232,89,12,0.6); }

/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed;
    bottom: -200px;
    left: 24px;
    right: 24px;
    max-width: 500px;
    background: var(--dark-surface);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 24px;
    z-index: 99999;
    transition: bottom 0.5s ease;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.4);
}
.cookie-banner.show { bottom: 24px; }
.cookie-banner p { font-size: 0.9rem; color: var(--gray-300); margin-bottom: 16px; }
.cookie-btns { display: flex; gap: 12px; }
.cookie-btns button {
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition);
}
.cookie-accept { background: var(--orange); color: white; }
.cookie-accept:hover { background: var(--orange-light); }
.cookie-refuse { background: rgba(255,255,255,0.08); color: var(--gray-300); }
.cookie-refuse:hover { background: rgba(255,255,255,0.15); }

/* === PHONE FLOATING BUTTON === */
.phone-float {
    position: fixed;
    bottom: 32px;
    left: 32px;
    z-index: 9990;
    display: flex;
    align-items: center;
    gap: 12px;
}
.phone-float-btn {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 4px 20px rgba(24,103,166,0.5);
    animation: pulse-blue 2s infinite;
    transition: var(--transition);
    text-decoration: none;
}
.phone-float-btn:hover { transform: scale(1.1); color: white; }
.phone-float-tooltip {
    background: var(--dark-surface);
    color: var(--gray-200);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
    pointer-events: none;
}
.phone-float:hover .phone-float-tooltip { opacity: 1; transform: translateX(0); }

@keyframes pulse-blue {
    0%, 100% { box-shadow: 0 0 0 0 rgba(24,103,166,0.5); }
    50% { box-shadow: 0 0 0 15px rgba(24,103,166,0); }
}

/* === SPARKS / FIRE PARTICLES === */
@keyframes spark-rise {
    0% { transform: translateY(0) scale(1); opacity: 1; }
    100% { transform: translateY(-120px) translateX(var(--drift)) scale(0); opacity: 0; }
}
.spark {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--orange-glow);
    border-radius: 50%;
    animation: spark-rise var(--duration) ease-out infinite;
    animation-delay: var(--delay);
    box-shadow: 0 0 6px var(--orange), 0 0 12px rgba(232,89,12,0.3);
}

/* === PROCESS STEPS === */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 32px; }
.process-step {
    text-align: center;
    padding: 40px 24px;
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
}
.process-step:hover { border-color: rgba(232,89,12,0.3); transform: translateY(-6px); box-shadow: var(--shadow-glow); }
.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--orange);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}
.process-step:hover .step-number { opacity: 1; }
.process-step i { font-size: 2.5rem; color: var(--blue-light); margin-bottom: 16px; }
.process-step h3 { margin-bottom: 12px; font-size: 1.1rem; }
.process-step p { color: var(--gray-400); font-size: 0.9rem; }

/* === CERTIFICATIONS / BADGES === */
.cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.cert-badge {
    text-align: center;
    padding: 32px 20px;
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    transition: var(--transition);
}
.cert-badge:hover { border-color: rgba(24,103,166,0.4); box-shadow: 0 0 30px rgba(24,103,166,0.2); transform: translateY(-4px); }
.cert-badge i { font-size: 2.5rem; color: var(--blue-light); margin-bottom: 16px; }
.cert-badge h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; text-transform: uppercase; }
.cert-badge p { font-size: 0.85rem; color: var(--gray-400); }

/* === TABS === */
.tabs-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 16px;
}
.tab-btn {
    padding: 12px 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    color: var(--gray-400);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.tab-btn:hover { background: rgba(232,89,12,0.1); color: var(--white); border-color: rgba(232,89,12,0.3); }
.tab-btn.active { background: var(--orange); color: var(--white); border-color: var(--orange); }
.tab-content { display: none; animation: fadeIn 0.5s ease; }
.tab-content.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* === PARALLAX SECTION === */
.parallax-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}
.parallax-bg {
    position: absolute;
    inset: -100px 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.25);
    will-change: transform;
}
.parallax-section .container { position: relative; z-index: 2; }

/* === DIVIDER GLOW === */
.divider-glow {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), var(--blue-light), transparent);
    margin: 0;
    opacity: 0.4;
}

/* === TEXT HIGHLIGHT === */
.text-orange { color: var(--orange); }
.text-blue { color: var(--blue-light); }
.text-gradient {
    background: linear-gradient(135deg, var(--orange), var(--orange-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === REVEAL ANIMATION === */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* === MAGNETIC BUTTONS === */
.magnetic { transition: transform 0.3s ease; }

/* === PAGE HEADER (inner pages) === */
.page-header {
    position: relative;
    padding: 140px 0 80px;
    text-align: center;
    overflow: hidden;
}
.page-header-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.2);
}
.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.5), var(--dark));
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { margin-bottom: 16px; }
.page-header p { color: var(--gray-400); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.breadcrumb {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 0.9rem;
}
.breadcrumb a { color: var(--gray-400); }
.breadcrumb span { color: var(--orange); }

/* === MISC === */
.bg-darker { background: var(--dark-surface); }
.bg-gradient { background: linear-gradient(135deg, rgba(24,103,166,0.1), rgba(232,89,12,0.05)); }
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mb-48 { margin-bottom: 48px; }
.overflow-hidden { overflow: hidden; }

/* Smooth list items */
.icon-list { list-style: none; }
.icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
    color: var(--gray-300);
}
.icon-list i { color: var(--orange); margin-top: 4px; min-width: 20px; }

/* === DOWNLOAD LIST === */
.download-list { list-style: none; }
.download-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 28px;
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    margin-bottom: 16px;
    transition: var(--transition);
}
.download-item:hover { border-color: rgba(232,89,12,0.3); transform: translateX(6px); box-shadow: var(--shadow-glow); }
.download-item i { font-size: 2rem; color: var(--orange); }
.download-item .dl-info h4 { font-family: var(--font-body); color: var(--white); font-weight: 600; margin-bottom: 4px; text-transform: none; }
.download-item .dl-info p { color: var(--gray-400); font-size: 0.85rem; }
.download-item .btn { margin-left: auto; white-space: nowrap; padding: 10px 24px; font-size: 0.85rem; }
