/* css/main.css */
@import 'variables.css';

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-black);
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 6rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 6vw, 4rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 4vw, 2rem);
}

h4 {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
}

p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

@media (max-width: 768px) {
  :root {
    --container-padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  :root {
    --container-padding: 1rem;
  }
}

/* ===== SECTION SPACING (Clean, No Conflicts) ===== */
.section {
  padding: var(--space-xl) 0;
}

@media (max-width: 1024px) {
  .section {
    padding: calc(var(--space-xl) * 0.8) 0;
  }
}

@media (max-width: 768px) {
  .section {
    padding: calc(var(--space-xl) * 0.6) 0;
  }
}

@media (max-width: 480px) {
  .section {
    padding: calc(var(--space-xl) * 0.4) 0;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition-base);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  font-size: clamp(0.875rem, 2vw, 1rem);
  white-space: nowrap;
}

@media (max-width: 480px) {
  .btn {
    padding: 0.875rem 1.5rem;
    width: 100%;
    text-align: center;
  }
  
  .btn + .btn {
    margin-top: var(--space-sm);
  }
}

.btn-primary {
  background: var(--gradient-red);
  color: var(--color-white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px var(--color-red);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-red);
}

.btn-secondary:hover {
  background: var(--color-red);
  color: var(--color-white);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: var(--z-header);
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease, border-bottom 0.3s ease;
}

@media (min-width: 769px) {
    .header {
        background: transparent;
        backdrop-filter: none;
        border-bottom: none;
    }
}

/* Mobile header */
@media (max-width: 768px) {
    .header {
        padding: 1.5rem;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
    }
}

/* Light mode mobile header */
@media (max-width: 768px) {
    [data-theme="light"] .header {
        background: rgba(255, 255, 255, 0.95);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* ===== SCROLLED HEADER - DARK BACKGROUND ON DESKTOP ===== */
/* Make sure the scrolled class works on desktop */
@media (min-width: 769px) {
    .header.scrolled {
        background: rgba(10, 10, 10, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        border-bottom: 1px solid rgba(255, 59, 59, 0.1) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
        padding: 1rem 2rem !important;
    }
    
    /* Light mode scrolled header */
    [data-theme="light"] .header.scrolled {
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
    }
}

/* Mobile scrolled header */
@media (max-width: 768px) {
    .header.scrolled {
        padding: 1rem 1.5rem !important;
    }
}

/* Logo transition on scroll */
.header.scrolled .logo-img {
    max-height: 38px !important;
    transition: all 0.3s ease;
}

.header.scrolled .logo-text {
    font-size: 1.5rem !important;
}

/* ===== ENSURE SCROLLED HEADER WORKS ===== */
.header.scrolled {
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid rgba(255, 59, 59, 0.1) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    padding: 1rem 2rem !important;
}



.logo {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  letter-spacing: -0.02em;
  z-index: 2;
}

.logo span {
  color: var(--color-red);
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    z-index: calc(var(--z-header) + 1);
}

/* Logo Images */
.logo-img {
    display: block;
    max-height: 45px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

/* Light mode logo (default) */
.logo-light {
    display: block;
}

.logo-dark {
    display: none;
}

/* Single logo (works for both modes) */
.logo-single {
    display: block;
}

/* Fallback text logo */
.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-white);
    font-family: var(--font-display);
}

.logo-text span {
    color: var(--color-red);
}

/* Desktop - No background, just let logo show naturally */
@media (min-width: 769px) {
    .logo {
        /* No background - clean and transparent */
        background: transparent;
        padding: 0;
        border-radius: 0;
        backdrop-filter: none;
        border: none;
    }
    
    .logo-img {
        max-height: 45px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .logo-img {
        max-height: 32px;
    }
    .logo-text {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .logo-img {
        max-height: 28px;
    }
    .logo-text {
        font-size: 1.2rem;
    }
}

/* Responsive sizes */
@media (max-width: 992px) and (min-width: 769px) {
    .logo-img {
        max-height: 38px;
    }
    .logo-text {
        font-size: 1.6rem;
    }
}

/* Desktop Navigation */
.nav {
  display: flex;
  gap: 2rem;
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
}

.nav a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--transition-fast);
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-red);
  transition: var(--transition-fast);
}

.nav a:hover::after {
  width: 100%;
}

/* ===== ACTIVE NAVIGATION LINK STYLES ===== */

/* Desktop Active Link */
.nav a.active {
    color: var(--color-red); /* Change text color to red when active */
}

.nav a.active::after {
    width: 100%; /* Show the red underline for active link */
    background: var(--color-red);
}

/* Optional: Add a slight glow to active link */
.nav a.active {
    text-shadow: 0 0 10px rgba(255, 59, 59, 0.3);
}

/* Mobile Navigation Active Link */
.nav-mobile a.active {
    color: var(--color-red); /* Red text for active mobile link */
}

.nav-mobile a.active::after {
    width: 100%; /* Show underline for active mobile link */
}

/* Optional: Add left border indicator for mobile active link */
.nav-mobile a.active {
    position: relative;
    padding-left: var(--space-md);
}

.nav-mobile a.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: var(--color-red);
    border-radius: 3px;
}

/* Ensure the hover state doesn't override active state */
.nav a.active:hover {
    color: var(--color-white); /* Keep red on hover */
    transform: none; /* Prevent any transform on active link */
}

.nav-mobile a.active:hover {
    color: var(--color-white);
    transform: translateX(0); /* Prevent hover movement on active link */
}

.nav-mobile a.active:hover::before {
    opacity: 1; /* Keep the left border visible */
}

/* Optional: Different style for active link - alternative design */
.nav.alternate-style a.active {
    background: rgba(255, 59, 59, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 30px;
}

.nav.alternate-style a.active::after {
    display: none; /* Hide underline if using background style */
}

/* Theme Toggle */
.theme-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-right: var(--space-sm);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  z-index: calc(var(--z-header) + 1);
}

.theme-toggle:hover {
  color: var(--color-red);
  transform: rotate(15deg);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: calc(var(--z-header) + 1);
  padding: 10px;
  margin: -10px;
}

.mobile-menu-btn span {
  width: 30px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition-base);
  transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }
}

/* Mobile Navigation */
.nav-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: var(--color-off-black);
  padding: 6rem 2rem 2rem;
  transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: var(--z-header);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

.nav-mobile.active {
  right: 0;
}

.nav-mobile a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  font-family: var(--font-display);
  transition: var(--transition-fast);
  position: relative;
  padding: var(--space-xs) 0;
  display: inline-block;
}

.nav-mobile a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-red);
  transition: var(--transition-base);
}

.nav-mobile a:hover::after {
  width: 100%;
}

.nav-mobile a:hover {
  color: var(--color-red);
  transform: translateX(10px);
}

/* Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: calc(var(--z-header) - 1);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.menu-overlay {
  pointer-events: auto;
}

/* Animation for mobile menu items */
.nav-mobile a {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s;
}

.nav-mobile.active a {
  opacity: 1;
  transform: translateX(0);
}

.nav-mobile a:nth-child(1) { transition-delay: 0.1s; }
.nav-mobile a:nth-child(2) { transition-delay: 0.2s; }
.nav-mobile a:nth-child(3) { transition-delay: 0.3s; }

/* ===== LOADING SCREEN - CLEAN & SPACIOUS ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-black);
    z-index: var(--z-loading);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}


@keyframes gridPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
    50% { opacity: 1; transform: scaleY(1); }
}

.loading-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    width: 90%;
}

/* ===== CIRCLE WITH CONSISTENT SPACING ===== */
.loading-center {
    position: relative;
    width: 380px;  /* Even larger for guaranteed space */
    height: 380px;
    margin: 0 auto 60px;
}

.loading-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite; /* Slower, more elegant */
    transform: rotate(90deg);
}

.circle-text {
    fill: var(--color-red);
    font-size: 13px; /* Slightly smaller to not overwhelm */
    letter-spacing: 6px; /* More spacing between letters */
    text-transform: uppercase;
    font-family: var(--font-display);
    opacity: 0.7; /* More subtle */
    font-weight: 400;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== PERCENTAGE WITH FIXED SPACING - EVEN AT 100% ===== */
.loading-percentage-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
    
    /* Fixed size container - guarantees space */
    width: 240px;  /* Increased from 200px to accommodate "100%" */
    height: 240px; /* Increased from 200px */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    /* Clean design - removed gradients and blurs */
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    
    /* Add padding to ensure text stays centered */
    padding: 0 10px;
    box-sizing: border-box;
}

.percentage-number {
    font-family: var(--font-display);
    font-size: 5.5rem;
    font-weight: 800;
    color: var(--color-white);
    display: block;
    line-height: 1;
    text-shadow: 0 0 20px var(--color-red);
    animation: glitch 1.2s ease-in-out infinite;
    margin-bottom: 15px;
    width: 100%;
    text-align: center;
    
    /* Ensure consistent width for all numbers */
    min-width: 3ch; /* Minimum width for "100" */
    max-width: 100%;
    
    /* Use monospace digits to prevent width shifting */
    font-variant-numeric: tabular-nums;
}

.percentage-label {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 8px;
    color: var(--color-gray-light);
    text-transform: uppercase;
    display: block;
    opacity: 0.8;
    width: 100%;
    text-align: center;
}

/* Specific fix for when number becomes "100" */
.percentage-number[data-value="100"] {
    font-size: 5rem; /* Slightly smaller to fit better */
    letter-spacing: -2px; /* Tighter spacing for three digits */
}

/* Alternative approach - use a fixed width wrapper for the number */
.number-wrapper {
    display: inline-block;
    min-width: 3ch;
    text-align: center;
}

@keyframes glitch {
    0%, 100% { transform: skew(0deg, 0deg); opacity: 1; }
    95% { transform: skew(5deg, 2deg); opacity: 0.9; }
    96% { transform: skew(-5deg, -2deg); opacity: 0.9; }
    97% { transform: skew(3deg, 1deg); opacity: 0.9; }
}

/* Messages */
.loading-messages {
    height: 50px;
    margin: 50px 0 30px;
    position: relative;
}

.message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    font-family: var(--font-display);
    font-size: 1.2rem; /* Slightly smaller */
    font-weight: 500;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-shadow: none; /* Removed shadow */
}

.message.active {
    opacity: 1;
    transform: translateY(0);
}

/* Progress bar */
.loading-progress-container {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.progress-bar-wrapper {
    width: 100%;
    height: 2px;
    background: rgba(255, 59, 59, 0.2);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--color-red), var(--color-red-dark));
    width: 0%;
    transition: width 0.1s linear;
    position: relative;
    box-shadow: 0 0 20px var(--color-red);
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    height: 100%;
    background: var(--color-white);
    filter: blur(5px);
    animation: progressGlow 1s ease-in-out infinite;
}

@keyframes progressGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablet */
@media (max-width: 768px) {
    .loading-center {
        width: 300px;
        height: 300px;
        margin-bottom: 40px;
    }
    
    .circle-text {
        font-size: 11px;
        letter-spacing: 4px;
    }
    
    .loading-percentage-container {
        width: 200px; /* Increased from 160px */
        height: 200px; /* Increased from 160px */
    }
    
    .percentage-number {
        font-size: 4.5rem;
    }
    
    .percentage-number[data-value="100"] {
        font-size: 4rem;
    }
    
    .percentage-label {
        font-size: 0.8rem;
        letter-spacing: 6px;
    }
    
    .message {
        font-size: 1rem;
        letter-spacing: 3px;
    }
    
    .loading-progress-container {
        max-width: 280px;
    }
}

/* Mobile */
/* Mobile */
@media (max-width: 480px) {
    .loading-center {
        width: 220px;  /* REDUCED from 250px to 220px */
        height: 220px;
        margin-bottom: 30px;
    }
    
    .circle-text {
        font-size: 16px;  /* REDUCED from 10px to 8px */
        letter-spacing: 4px;  /* REDUCED from 3px to 2px */
    }
    
    .loading-percentage-container {
        width: 140px;  /* REDUCED from 180px to 140px */
        height: 140px;
    }
    
    .percentage-number {
        font-size: 2.8rem;  /* REDUCED from 3.5rem to 2.8rem */
        margin-bottom: 8px;
    }
    
    .percentage-number[data-value="100"] {
        font-size: 2.4rem;
    }
    
    .percentage-label {
        font-size: 0.6rem;  /* REDUCED from 0.7rem to 0.6rem */
        letter-spacing: 4px;  /* REDUCED from 5px to 4px */
    }
    
    .message {
        font-size: 0.8rem;  /* REDUCED from 0.9rem to 0.8rem */
        letter-spacing: 2px;  /* REDUCED from 2.5px to 2px */
    }
    
    .loading-messages {
        height: 35px;  /* REDUCED from 40px to 35px */
        margin: 25px 0 15px;  /* REDUCED margin */
    }
    
    .loading-progress-container {
        max-width: 200px;  /* REDUCED from 240px to 200px */
    }
}

/* Small Mobile */
@media (max-width: 360px) {
    .loading-center {
        width: 190px;  /* REDUCED from 220px to 190px */
        height: 190px;
        margin-bottom: 25px;
    }
    
    .circle-text {
        font-size: 7px;  /* ADDED - smaller text */
        letter-spacing: 1.5px;
    }
    
    .loading-percentage-container {
        width: 120px;  /* REDUCED from 160px to 120px */
        height: 120px;
    }
    
    .percentage-number {
        font-size: 2.2rem;  /* REDUCED from 3rem to 2.2rem */
        margin-bottom: 5px;
    }
    
    .percentage-number[data-value="100"] {
        font-size: 1.9rem;
    }
    
    .percentage-label {
        font-size: 0.5rem;  /* REDUCED from 0.7rem to 0.5rem */
        letter-spacing: 3px;
    }
    
    .message {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }
    
    .loading-messages {
        height: 30px;
        margin: 20px 0 10px;
    }
    
    .loading-progress-container {
        max-width: 160px;
    }
}

/* ===== MODERN MARQUEE ===== */
.marquee.modern {
  background: var(--color-red); /* Solid red background */
  border: none;
  padding: 0.8rem 0;
  transform: none;
  box-shadow: 0 4px 20px rgba(255, 59, 59, 0.3);
  margin: 0;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee.modern .marquee-content {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-white); /* White text on red background */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  line-height: 1;
  will-change: transform;
}

.marquee.modern .marquee-content span {
 margin: 0 0.8rem;
  display: inline-block;
}

.marquee.modern .marquee-content .dot {
  color: var(--color-white);
  font-size: 0.5rem;
  margin: 0 0.2rem;
  opacity: 0.8;
}

.marquee.modern::before,
.marquee.modern::after {
  display: none;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Add a smooth easing for continuous movement */
/* .marquee.modern .marquee-content {
    animation-timing-function: linear;
} */

@media (max-width: 767px) {
  .marquee.modern {
    padding: 0.6rem 0;
  }
  
  .marquee.modern .marquee-content {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
  }
}

/* ===== GRID SYSTEM ===== */
.grid {
  display: grid;
  gap: var(--space-md);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

@media (max-width: 768px) {
  .mobile-text-center { text-align: center; }
}

.hide-mobile { display: block; }
.show-mobile { display: none; }

@media (max-width: 768px) {
  .hide-mobile { display: none; }
  .show-mobile { display: block; }
}

/* ===== IMAGE RESPONSIVE ===== */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== TOUCH TARGETS ===== */
@media (max-width: 768px) {
  button, .btn, a, input[type="submit"] {
    min-height: 44px;
    min-width: 44px;
  }
  
  .nav-mobile a {
    padding: var(--space-sm) 0;
    display: block;
  }
}