/* ============================================
   METRIC DIGITAL - PREMIUM AGENCY STYLES
   Versión: 4.0 - Awwwards Level
   ============================================ */

/* ============================================
   VARIABLES & RESET
   ============================================ */
:root {
    /* Palette */
    --bg-color: #050505;
    --bg-dark: #020202;
    --bg-card: rgba(255, 255, 255, 0.03);
    --accent-neon: #00FFD1;
    --accent-neon-rgb: 0, 255, 209;
    --accent-secondary: #00D4AA;
    --accent-glow: rgba(0, 255, 209, 0.4);
    --text-primary: #FFFFFF;
    --text-secondary: #E0E0E0;
    --text-muted: #888888;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-neon: rgba(0, 255, 209, 0.25);

    /* Typography */
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Easing - Ultra Premium curves */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out-expo: cubic-bezier(0.87, 0, 0.13, 1);
    --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);

    /* Spacing */
    --section-padding: 8rem 5%;
    --container-max: 1200px;

    /* Shadows & Glows */
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.8);
    --glow-neon-sm: 0 0 15px rgba(var(--accent-neon-rgb), 0.3);
    --glow-neon-md: 0 0 30px rgba(var(--accent-neon-rgb), 0.5);
    --glow-neon-lg: 0 0 60px rgba(var(--accent-neon-rgb), 0.6);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
    /* Grid background refined */
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(var(--accent-neon-rgb), 0.02) 0%, transparent 80%),
        linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 100% 100%, 60px 60px, 60px 60px;
    background-attachment: fixed;
}

/* Global Background Orbs */
body::before,
body::after {
    content: '';
    position: fixed;
    width: 60vmax;
    height: 60vmax;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    opacity: 0.15;
    filter: blur(80px);
}

body::before {
    top: -20%;
    left: -20%;
    animation: orbMove1 20s infinite alternate linear;
}

body::after {
    bottom: -20%;
    right: -20%;
    animation: orbMove2 25s infinite alternate linear;
}

@keyframes orbMove1 {
    from { transform: translate(0, 0); }
    to { transform: translate(10%, 10%); }
}

@keyframes orbMove2 {
    from { transform: translate(0, 0); }
    to { transform: translate(-10%, -10%); }
}

/* Selection */
::selection {
    background: var(--accent-neon);
    color: var(--bg-color);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 5%;
}

.neon-text {
    color: var(--accent-neon);
    text-shadow: var(--glow-neon-md);
}

/* ============================================
   HERO SECTION - PREMIUM
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 5% 4rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: radial-gradient(circle at center, rgba(var(--accent-neon-rgb), 0.08) 0%, transparent 80%);
}

/* Particles Canvas */
#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

/* Animated Gradient Background */
.hero-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(var(--accent-neon-rgb), 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(var(--accent-neon-rgb), 0.08) 0%, transparent 50%);
    z-index: 0;
    animation: gradientShift 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes gradientShift {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Hero Background Image */
.hero-bg-img {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
    will-change: transform;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.3) 0%,
        rgba(10, 10, 10, 0.85) 50%,
        var(--bg-color) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Floor illumination */
.hero-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    box-shadow: 0 0 100px 50px rgba(var(--accent-neon-rgb), 0.15);
    z-index: 10;
    pointer-events: none;
}

/* Hero Content */
.hero-content {
    max-width: 1000px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* Hero Pretitle */
.hero-pretitle {
    font-size: 0.8rem;
    color: var(--accent-neon);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.hero-pretitle.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Title */
.hero-title {
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease-out-expo) 0.2s, transform 1s var(--ease-out-expo) 0.2s;
    letter-spacing: -0.04em;
    font-weight: 800;
}

.hero-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-title .neon-text {
    color: var(--accent-neon);
    background: linear-gradient(to bottom, #fff 30%, var(--accent-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(var(--accent-neon-rgb), 0.4));
}

/* Hero Caption */
.hero-caption {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--ease-out-expo) 0.3s, transform 0.8s var(--ease-out-expo) 0.3s;
}

.hero-caption.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Ticker */
.ticker-wrapper {
    width: 100%;
    max-width: 900px;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--ease-out-expo) 0.45s, transform 0.8s var(--ease-out-expo) 0.45s;
}

.ticker-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: scrollTicker 40s linear infinite;
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.ticker-content .dot {
    color: var(--accent-neon);
    margin: 0 1.5rem;
    font-size: 0.6rem;
}

@keyframes scrollTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   PREMIUM BUTTON
   ============================================ */
.btn-cyber {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 3rem;
    min-width: 280px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--accent-neon);
    background: transparent;
    border: 1px solid var(--accent-neon);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
    text-transform: uppercase;
    z-index: 1;
    text-align: center;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(20px);
}

.btn-cyber.visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-cyber::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-neon), var(--accent-secondary));
    transition: width 0.5s var(--ease-out-expo);
    z-index: -1;
}

.btn-cyber:hover {
    color: var(--bg-color);
    box-shadow: var(--glow-neon-lg), 0 0 80px rgba(var(--accent-neon-rgb), 0.4);
    border-color: transparent;
    transform: translateY(-3px);
}

.btn-cyber:hover::before {
    width: 100%;
}

.btn-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease-out-expo);
}

.btn-cyber:hover .btn-arrow {
    transform: translateX(5px);
}

/* Pulse Animation for CTA */
.btn-pulse {
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(var(--accent-neon-rgb), 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(var(--accent-neon-rgb), 0.5), 0 0 80px rgba(var(--accent-neon-rgb), 0.2);
    }
}

/* Button Loading States */
.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit.loading .btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-submit .btn-loading {
    display: none;
}

.btn-submit.success .btn-text,
.btn-submit.success .btn-loading {
    display: none;
}

.btn-submit.success .btn-success {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-submit .btn-success {
    display: none;
    color: #22c55e;
}

.spinner {
    width: 18px;
    height: 18px;
    animation: spin 1s linear infinite;
}

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

.btn-cyber--small {
    padding: 0.7rem 1.8rem;
    min-width: auto;
    font-size: 0.85rem;
}

/* ============================================
   NAVIGATION - PREMIUM
   ============================================ */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 5%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(var(--accent-neon-rgb), 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s var(--ease-out-expo);
    will-change: padding, background;
}

.top-nav.scrolled {
    padding: 0.7rem 5%;
    background: rgba(10, 10, 10, 0.95);
}

.nav-brand {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    z-index: 1001;
    letter-spacing: -0.02em;
    transition: text-shadow 0.3s ease;
}

.nav-brand:hover {
    text-shadow: 0 0 20px rgba(var(--accent-neon-rgb), 0.5);
}

.nav-brand span {
    color: var(--accent-neon);
}

.header-cta {
    display: flex;
    align-items: center;
}

.header-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.2rem;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-neon);
    background: transparent;
    border: 1px solid var(--accent-neon);
    border-radius: 4px;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    min-width: 0 !important;
}

.header-cta a:hover {
    background: var(--accent-neon);
    color: var(--bg-color);
    box-shadow: 0 0 20px rgba(var(--accent-neon-rgb), 0.4);
}

/* Desktop Navigation */
.nav-desktop-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-desktop-links a.nav-link {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s var(--ease-out-expo);
    position: relative;
}

.nav-desktop-links a.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-neon);
    transition: width 0.3s var(--ease-out-expo);
}

.nav-desktop-links a.nav-link:hover,
.nav-desktop-links a.nav-link.active {
    color: var(--accent-neon);
    text-shadow: 0 0 10px rgba(var(--accent-neon-rgb), 0.5);
}

.nav-desktop-links a.nav-link:hover::after,
.nav-desktop-links a.nav-link.active::after {
    width: 100%;
}

/* ============================================
   DROPDOWN MENU - PREMIUM
   ============================================ */
.nav-item {
    position: relative;
    list-style: none;
}

.nav-link.dropdown-toggle {
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.3s ease;
}

.nav-link.dropdown-toggle .arrow {
    font-size: 0.7rem;
    transition: transform 0.3s var(--ease-out-expo);
}

.nav-item.dropdown:hover .nav-link.dropdown-toggle .arrow {
    transform: rotate(180deg);
}

/* Dropdown Panel */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 280px;
    padding: 0.75rem;
    list-style: none;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--accent-neon);
    border-radius: 12px;
    box-shadow: var(--shadow-lg), 0 0 30px rgba(var(--accent-neon-rgb), 0.2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.35s var(--ease-out-expo);
    z-index: 200;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Neon Triangle */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: rgba(10, 10, 10, 0.95);
    border-left: 1px solid var(--accent-neon);
    border-top: 1px solid var(--accent-neon);
    border-radius: 2px;
}

/* Dropdown Items */
.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.25s var(--ease-out-expo);
}

.dropdown-menu li a:hover {
    background: var(--accent-neon);
    color: var(--bg-color);
}

.dropdown-menu li a:hover .dd-icon-svg {
    color: var(--bg-color);
    transform: scale(1.1);
}

.dd-icon-svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--accent-neon);
    transition: all 0.25s var(--ease-out-expo);
}

.dropdown-menu li + li {
    margin-top: 4px;
}

/* ============================================
   SOLUTIONS SECTION
   ============================================ */
.solutions-section {
    padding: 8rem 5% 6rem;
    position: relative;
    background: linear-gradient(180deg, var(--bg-color) 0%, #0d1214 100%);
    z-index: 10;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 4rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title .neon-text {
    text-shadow: var(--glow-neon-lg);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   3D TILT SERVICE CARD
   ============================================ */
.service-card {
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
    will-change: transform;
    transform-style: preserve-3d;
}

.service-card:hover {
    border-color: var(--accent-neon);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(var(--accent-neon-rgb), 0.15);
    background: rgba(255, 255, 255, 0.05);
}

/* Glow Effect */
.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(var(--accent-neon-rgb), 0.15) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover .card-glow {
    opacity: 1;
}

/* Top Neon Bar */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-neon), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out-expo);
}

.service-card:hover::after {
    transform: scaleX(1);
}

/* Service Icon Premium */
.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(var(--accent-neon-rgb), 0.1);
    border: 1px solid var(--border-neon);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--accent-neon);
    transition: all 0.5s var(--ease-out-expo);
}

.service-card:hover .service-icon-wrapper {
    background: var(--accent-neon);
    color: var(--bg-color);
    box-shadow: 0 0 30px var(--accent-neon);
    transform: scale(1.1) rotate(5deg);
}

.service-icon-svg {
    width: 30px;
    height: 30px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

/* Updated Chat Simulator */
.chat-window {
    width: 100%;
    max-width: 400px;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-neon);
    border-radius: 24px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: var(--shadow-lg), inset 0 0 20px rgba(var(--accent-neon-rgb), 0.05);
}

.chat-bubble {
    padding: 0.8rem 1.2rem;
    border-radius: 18px;
    font-size: 0.9rem;
    max-width: 85%;
    position: relative;
    animation: slideUp 0.6s var(--ease-out-expo) forwards;
}

.chat-bubble.user {
    background: rgba(255, 255, 255, 0.05);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-bubble.bot {
    background: linear-gradient(135deg, rgba(var(--accent-neon-rgb), 0.1), rgba(var(--accent-neon-rgb), 0.05));
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    color: var(--accent-neon);
    border: 1px solid var(--border-neon);
}

.chat-meta {
    display: flex;
    justify-content: flex-end;
    gap: 4px;
    font-size: 0.7rem;
    opacity: 0.5;
    margin-top: 4px;
}

.chat-status {
    color: var(--accent-neon);
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   METHOD SECTION - TIMELINE
   ============================================ */
.method-section {
    padding: 8rem 5%;
    background: var(--bg-color);
    position: relative;
    z-index: 10;
}

.method-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

/* Vertical Timeline Line */
.method-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    bottom: 0;
    left: 35px;
    width: 2px;
    background: linear-gradient(
        to bottom,
        var(--accent-neon) 0%,
        var(--accent-neon) 100%
    );
    opacity: 0.3;
}

/* Animated Progress Line */
.method-timeline::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 35px;
    width: 2px;
    height: 0;
    background: var(--accent-neon);
    box-shadow: 0 0 15px var(--accent-neon);
    transition: height 1.5s var(--ease-out-expo);
    z-index: 5;
}

.method-section.visible .method-timeline::after {
    height: calc(100% - 60px);
}

/* Method Step */
.method-step {
    position: relative;
    padding-left: 100px;
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s var(--ease-out-expo);
}

.method-step.visible {
    opacity: 1;
    transform: translateX(0);
}

.method-step:last-child {
    margin-bottom: 0;
}

/* Step Indicator */
.step-indicator {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    background: var(--bg-color);
    border: 2px solid var(--accent-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(var(--accent-neon-rgb), 0.3);
    z-index: 10;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-neon);
}

/* Timeline Dot */
.method-step::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 35px;
    width: 12px;
    height: 12px;
    background: var(--accent-neon);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--accent-neon);
    z-index: 8;
}

/* Background Number */
.step-bg-number {
    position: absolute;
    top: -30px;
    left: 80px;
    font-family: var(--font-heading);
    font-size: clamp(4rem, 12vw, 7rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

/* Step Content */
.step-content {
    position: relative;
    z-index: 1;
    padding-top: 1rem;
}

.step-title {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.step-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 500px;
}

/* Progress Bar */
.step-progress {
    position: absolute;
    bottom: -20px;
    left: 100px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-neon), transparent);
    transition: width 0.8s var(--ease-out-expo) 0.3s;
}

.method-step.visible .step-progress {
    width: calc(100% - 120px);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 6rem 5%;
    background: linear-gradient(180deg, var(--bg-color) 0%, #0d1214 100%);
    position: relative;
    z-index: 10;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

/* Contact Info */
.contact-info {
    text-align: center;
}

@media (min-width: 992px) {
    .contact-info {
        text-align: left;
    }
}

.contact-title {
    margin-bottom: 1.5rem;
}

.contact-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* Scarcity Box */
.scarcity-box {
    padding: 1.5rem;
    border: 1px solid var(--border-neon);
    background: rgba(var(--accent-neon-rgb), 0.03);
    border-left: 4px solid var(--accent-neon);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.9rem;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(var(--accent-neon-rgb), 0.1);
}

@media (min-width: 992px) {
    .scarcity-box {
        margin: 0;
    }
}

.scarcity-box strong {
    color: var(--accent-neon);
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   CONTACT FORM - PREMIUM
   ============================================ */
.contact-form-wrapper {
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid var(--border-subtle);
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    animation: formGlow 5s ease-in-out infinite;
}

@keyframes formGlow {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(var(--accent-neon-rgb), 0.05);
    }
    50% {
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(var(--accent-neon-rgb), 0.15);
    }
}

.cyber-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Input Wrapper with Icon */
.input-wrapper {
    position: relative;
}

.input-wrapper input {
    width: 100%;
    padding: 1rem 1.25rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s var(--ease-out-expo);
}

.input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

/* Input Icon */
.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    transition: color 0.3s ease;
    pointer-events: none;
}

/* Input Focus State */
.input-wrapper input:focus {
    border-color: var(--accent-neon);
    background: rgba(var(--accent-neon-rgb), 0.03);
    box-shadow: 0 0 25px rgba(var(--accent-neon-rgb), 0.15);
}

.input-wrapper input:focus + .input-icon {
    color: var(--accent-neon);
}

/* Input Valid/Invalid States */
.input-wrapper.valid input {
    border-color: #22c55e;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.2);
}

.input-wrapper.valid .input-icon {
    color: #22c55e;
}

.input-wrapper.invalid input {
    border-color: #ef4444;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.2);
}

.input-wrapper.invalid .input-icon {
    color: #ef4444;
}

/* ============================================
   CUSTOM SELECT - PREMIUM
   ============================================ */
.custom-select-wrapper {
    position: relative;
    user-select: none;
}

.custom-select-trigger {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s var(--ease-out-expo);
}

.custom-select-trigger:hover,
.custom-select-wrapper.open .custom-select-trigger {
    border-color: var(--accent-neon);
    background: rgba(var(--accent-neon-rgb), 0.03);
    box-shadow: 0 0 15px rgba(var(--accent-neon-rgb), 0.1);
}

.custom-select-trigger .arrow-icon {
    width: 18px;
    height: 18px;
    color: var(--accent-neon);
    transition: transform 0.3s var(--ease-out-expo);
}

.custom-select-wrapper.open .custom-select-trigger .arrow-icon {
    transform: rotate(180deg);
}

/* Custom Options Dropdown */
.custom-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-neon);
    border-radius: 12px;
    overflow: hidden;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.35s var(--ease-out-expo);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(var(--accent-neon-rgb), 0.15);
}

.custom-select-wrapper.open .custom-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-option {
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.25s var(--ease-out-expo);
    border-bottom: 1px solid var(--border-subtle);
}

.custom-option:last-child {
    border-bottom: none;
}

.custom-option:hover {
    background: rgba(var(--accent-neon-rgb), 0.1);
    color: var(--accent-neon);
    padding-left: 1.5rem;
}

.custom-option.selected {
    background: rgba(var(--accent-neon-rgb), 0.15);
    color: var(--accent-neon);
    font-weight: 600;
}

/* ============================================
   FOOTER - PREMIUM CLEAN
   ============================================ */
.footer-section {
    background: var(--bg-dark);
    padding: 5rem 5% 0;
    border-top: 1px solid rgba(var(--accent-neon-rgb), 0.15);
    position: relative;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    box-shadow: 0 0 60px 10px rgba(var(--accent-neon-rgb), 0.15);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
        gap: 2rem;
    }
}

/* Footer Brand */
.footer-brand .footer-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: inline-block;
    margin-bottom: 1rem;
    transition: text-shadow 0.3s ease;
}

.footer-brand .footer-logo:hover {
    text-shadow: 0 0 20px rgba(var(--accent-neon-rgb), 0.5);
}

.footer-brand .footer-logo span {
    color: var(--accent-neon);
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: 1.5rem;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(var(--accent-neon-rgb), 0.03);
    border: 1px solid var(--border-neon);
    border-radius: 12px;
    color: var(--accent-neon);
    transition: all 0.4s var(--ease-out-expo);
}

.footer-social a:hover {
    background: var(--accent-neon);
    color: var(--bg-color);
    box-shadow: 0 8px 25px rgba(var(--accent-neon-rgb), 0.3);
    transform: translateY(-4px);
}

.footer-social svg {
    width: 22px;
    height: 22px;
}

/* Footer Column Title */
.footer-col-title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-neon);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

/* Footer Links */
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all 0.3s var(--ease-out-expo);
    display: inline-block;
    position: relative;
}

.footer-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-neon);
    transition: width 0.3s var(--ease-out-expo);
}

.footer-section a:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

.footer-section a:hover::after {
    width: 100%;
}

/* Footer Contact */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-contact-info a {
    color: var(--accent-neon);
    transition: text-shadow 0.3s ease;
}

.footer-contact-info a:hover {
    text-shadow: 0 0 10px rgba(var(--accent-neon-rgb), 0.5);
}

/* Copyright Strip */
.footer-bottom {
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--border-subtle);
    padding: 1.5rem 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-emoji {
    display: inline-block;
    filter: drop-shadow(0 0 5px rgba(255, 255, 0, 0.4));
}

/* ============================================
   FLOATING CTA - WHATSAPP
   ============================================ */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-cta:hover {
    transform: translateY(-5px) scale(1.05);
    background: #20BA56;
}

.floating-cta svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.floating-cta:hover svg {
    transform: rotate(10deg);
}

@media (max-width: 500px) {
    .floating-cta {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 1rem;
        border-radius: 50%;
    }
    .floating-cta span {
        display: none;
    }
}

/* ============================================
   FADE IN ANIMATIONS
   ============================================ */
.fade-in-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
    will-change: opacity, transform;
}

.fade-in-section.visible {
    opacity: 1;
    transform: none;
}

/* Stagger animation for children */
.fade-in-section .service-card,
.fade-in-section .method-step,
.fade-in-section .form-group {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.fade-in-section.visible .service-card:nth-child(1),
.fade-in-section.visible .method-step:nth-child(1),
.fade-in-section.visible .form-group:nth-child(1) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: none;
}

.fade-in-section.visible .service-card:nth-child(2),
.fade-in-section.visible .method-step:nth-child(2),
.fade-in-section.visible .form-group:nth-child(2) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: none;
}

.fade-in-section.visible .service-card:nth-child(3),
.fade-in-section.visible .method-step:nth-child(3),
.fade-in-section.visible .form-group:nth-child(3) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: none;
}

.fade-in-section.visible .service-card:nth-child(4),
.fade-in-section.visible .method-step:nth-child(4),
.fade-in-section.visible .form-group:nth-child(4) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: none;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    color: var(--accent-neon);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10001;
    transition: transform 0.3s ease;
}

.hamburger-btn:hover {
    transform: scale(1.1);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s var(--ease-out-expo);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    text-align: center;
}

.mobile-nav-links li {
    margin-bottom: 2rem;
}

.mobile-nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
}

.mobile-nav-links a:hover {
    color: var(--accent-neon);
    text-shadow: 0 0 20px rgba(var(--accent-neon-rgb), 0.5);
}

/* Mobile Services Toggle */
.mobile-services-toggle {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.8rem;
    font-family: var(--font-heading);
    cursor: pointer;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.mobile-services-toggle .arrow {
    display: inline-block;
    transition: transform 0.3s var(--ease-out-expo);
}

.mobile-services-open .mobile-services-toggle .arrow {
    transform: rotate(180deg);
}

.mobile-services-submenu {
    list-style: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out-expo);
}

.mobile-services-open .mobile-services-submenu {
    max-height: 500px;
    margin-top: 1.5rem;
}

.mobile-services-submenu li {
    margin-bottom: 0;
    border-bottom: 1px solid var(--border-subtle);
}

.mobile-services-submenu li:last-child {
    border-bottom: none;
}

.mobile-services-submenu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: all 0.25s ease;
}

.mobile-services-submenu a:hover {
    color: var(--accent-neon);
    background: rgba(var(--accent-neon-rgb), 0.05);
}

/* ============================================
   MEDIA QUERIES - RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .nav-desktop-links {
        display: none;
    }

    .hamburger-btn {
        display: block;
    }

    .lang-switcher {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem 5%;
    }

    .hero-section {
        min-height: auto;
        padding-top: 85px;
        padding-bottom: 2rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .solutions-section,
    .method-section,
    .contact-section {
        padding: 4rem 5%;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }

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

    .method-step {
        padding-left: 80px;
    }

    .step-indicator {
        width: 55px;
        height: 55px;
    }

    .step-number {
        font-size: 1.2rem;
    }

    .step-bg-number {
        font-size: 3rem;
    }

    .btn-cyber {
        min-width: 100%;
        padding: 1.2rem 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .top-nav {
        padding: 0.7rem 3%;
    }

    .nav-brand {
        font-size: 1rem;
    }

    .header-cta a {
        padding: 0.4rem 0.7rem;
        font-size: 0.6rem;
        letter-spacing: 0.04em;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-content {
        gap: 0.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .chat-simulator {
        margin-top: 0 !important;
        margin-bottom: 0.5rem !important;
    }

    .hero-actions {
        gap: 0.5rem !important;
    }

    .hero-urgency {
        margin-top: 0.5rem !important;
    }

    .hero-pretitle {
        font-size: 0.7rem;
    }

    .ticker-content {
        font-size: 0.8rem;
    }

    .ticker-content .dot {
        margin: 0 0.75rem;
    }
}

/* ============================================
   REDUCED MOTION PREFERENCE
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-bg-img,
    .hero-gradient-bg {
        animation: none;
    }

    #particles-canvas {
        display: none;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .top-nav,
    .floating-cta,
    .mobile-menu-overlay,
    #particles-canvas,
    .hero-gradient-bg {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }
}

/* ============================================
   NOTIFICATION DOT ANIMATION
   ============================================ */
.floating-cta .notification-dot {
    position: absolute;
    top: -5px;
    left: 20px;
    background: #FF3B30;
    color: white;
    font-size: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    font-weight: 800;
    animation: pulse-red 2s infinite;
    z-index: 10000;
}

@keyframes pulse-red {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 59, 48, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 59, 48, 0); }
}

/* ============================================
   GLOBAL OVERFLOW / HORIZONTAL SCROLL FIX
   ============================================ */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* ============================================
   CHAT SIMULATOR - MOBILE
   ============================================ */
@media (max-width: 480px) {
    .chat-simulator {
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 1rem !important;
    }

    /* Hero buttons stack on small screens */
    .hero-actions > div {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .hero-actions a.btn-cyber {
        width: 100%;
        min-width: unset !important;
    }

    /* Urgency badge section */
    .hero-urgency > div {
        padding: 1rem !important;
    }
}

/* ============================================
   FOOTER GRID - TABLET 2 columns
   ============================================ */
@media (min-width: 480px) and (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* ============================================
   TOUCH TARGETS - MINIMUM 44px
   ============================================ */
a, button, [role="button"] {
    min-height: 44px;
    /* Only apply minimum height to interactive elements,
       display-only anchors will override. */
}

/* ============================================
   METHOD STEP - TABLET
   ============================================ */
@media (max-width: 600px) {
    .method-step {
        padding-left: 70px;
    }

    .step-indicator {
        width: 50px;
        height: 50px;
    }

    .step-number {
        font-size: 1rem;
    }

    .method-timeline::before,
    .method-timeline::after {
        left: 25px;
    }

    .method-step::before {
        left: 25px;
    }
}

/* ============================================
   SERVICES GRID - ALWAYS 1 COL ON MOBILE
   ============================================ */
@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr !important;
    }

    .service-card {
        padding: 1.8rem 1.5rem;
    }
}

/* ============================================
   USE-CASE PILLS - MOBILE
   ============================================ */
@media (max-width: 480px) {
    .use-case-pill {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   FAQ GRID - MOBILE
   ============================================ */
@media (max-width: 480px) {
    .faq-question {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.9rem;
    }
}

/* ============================================
   CONTACT FORM - MOBILE FULL WIDTH
   ============================================ */
@media (max-width: 480px) {
    .contact-form,
    .contact-form-wrapper {
        padding: 1.5rem 1rem !important;
    }

    .contact-form input {
        font-size: 16px !important; /* Prevents iOS zoom on focus */
    }
}

/* ============================================
   NAV HAMBURGER - SHOWN ON MOBILE
   ============================================ */
@media (max-width: 1024px) {
    .nav-desktop-links {
        display: none !important;
    }

    .hamburger-btn {
        display: block;
    }
}

/* ============================================
   IMAGES - FULL WIDTH ON MOBILE
   ============================================ */
@media (max-width: 768px) {
    img {
        height: auto;
        max-width: 100%;
    }

    .video-wrapper {
        border-radius: 8px;
    }

    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
}
