/**
 * Skyhoox Website - Complete Stylesheet
 * 
 * This is the complete, production-ready stylesheet for the Skyhoox website.
 * It combines design tokens, components, and base styles into a single file
 * for optimal performance and simplified cachebusting.
 * 
 * Architecture:
 * 1. Design Tokens - CSS custom properties for consistency
 * 2. Base Styles - CSS reset and typography
 * 3. Components - Reusable UI components
 * 4. Utilities - Helper classes
 * 5. Responsive Design - Mobile-first media queries
 * 6. Accessibility - Enhanced focus states and screen reader support
 * 
 * @version 1.0.0
 * @author Skyhoox Design Team
 */

/* ===== DESIGN TOKENS ===== */

:root {
  /* ===== BRAND COLORS ===== */
  /* Primary brand color - used for CTAs, highlights, and brand elements */
  --color-rocket-orange: #FF6B35;
  
  /* Hover state for primary brand color - slightly darker for interaction feedback */
  --color-orbit-red: #E63946;
  
  /* ===== ACCENT COLORS ===== */
  /* Secondary brand color - used for links, secondary CTAs, and focus states */
  --color-orbit-blue: #0077B6;
  
  /* Success and AI highlight color - used sparingly for positive feedback */
  --color-neon-green: #06D6A0;
  
  /* ===== NEUTRAL COLORS ===== */
  /* Primary dark color - used for hero sections and dark backgrounds */
  --color-space-black: #0D0D0D;
  
  /* Secondary dark color - used for cards on dark backgrounds */
  --color-charcoal: #1C1C1E;
  
  /* Light background color - used for section backgrounds */
  --color-off-white: #F9F9F9;
  
  /* Border and muted text color - used for subtle elements */
  --color-cloud-gray: #B0B3B8;
  
  /* ===== TEXT COLORS ===== */
  /* Primary text color for light backgrounds - high contrast for readability */
  --text-high: #0F1115;
  
  /* Text color for dark backgrounds - pure white for maximum contrast */
  --text-inverse: #FFFFFF;

  /* ===== GRADIENTS ===== */
  /* Primary brand gradient - used for special elements and accents */
  --grad-rocket: linear-gradient(135deg, #FF6B35 0%, #E63946 100%);
  
  /* ===== TYPOGRAPHY ===== */
  /* Font families with system font fallbacks for performance */
  --font-family-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-family-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Base typography settings */
  --font-size-base: 16px;
  --line-height-base: 1.6;

  /* ===== RESPONSIVE TYPOGRAPHY SCALE ===== */
  /* Mobile-first approach with progressive enhancement for larger screens */
  
  /* Hero section typography */
  --hero-title-size: 34px;        /* Mobile: Large but readable on small screens */
  --hero-title-size-tablet: 42px; /* Tablet: Increased impact */
  --hero-title-size-desktop: 48px; /* Desktop: Maximum impact */
  
  --hero-subtitle-size: 18px;        /* Mobile: Clear supporting text */
  --hero-subtitle-size-tablet: 19px; /* Tablet: Slightly larger */
  --hero-subtitle-size-desktop: 20px; /* Desktop: Optimal reading size */
  
  /* Section typography */
  --section-title-size: 34px;        /* Mobile: Consistent with hero */
  --section-title-size-tablet: 40px; /* Tablet: Good hierarchy */
  --section-title-size-desktop: 48px; /* Desktop: Strong presence */
  
  --section-subtitle-size: 18px;        /* Mobile: Readable supporting text */
  --section-subtitle-size-tablet: 19px; /* Tablet: Proportional scaling */
  --section-subtitle-size-desktop: 20px; /* Desktop: Optimal legibility */

  /* ===== SPACING SYSTEM ===== */
  /* Mobile-first spacing with consistent vertical rhythm */
  
  /* Section spacing - vertical padding for content sections */
  --section-padding: 48px;        /* Mobile: Compact but breathable */
  --section-padding-tablet: 64px; /* Tablet: More generous spacing */
  --section-padding-desktop: 72px; /* Desktop: Optimal white space */
  
  /* Container constraints and horizontal padding */
  --container-max-width: 1200px;    /* Maximum content width for readability */
  --container-padding: 16px;        /* Mobile: Minimal safe area */
  --container-padding-tablet: 20px; /* Tablet: Comfortable margins */
  --container-padding-desktop: 24px; /* Desktop: Generous margins */
  
  /* Hero section spacing - special treatment for impact */
  --hero-padding: 80px;         /* Mobile: Strong presence */
  --hero-padding-tablet: 100px; /* Tablet: Increased drama */
  --hero-padding-desktop: 120px; /* Desktop: Maximum impact */

  /* ===== BORDER RADIUS SCALE ===== */
  /* Consistent rounding for modern, friendly appearance */
  --border-radius-sm: 8px;  /* Small elements: inputs, small buttons */
  --border-radius-md: 12px; /* Medium elements: cards, buttons */
  --border-radius-lg: 16px; /* Large elements: sections, modals */
  
  /* ===== SHADOW SYSTEM ===== */
  /* Subtle shadows for depth without overwhelming the design */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);   /* Minimal depth */
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);   /* Standard elevation */
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);  /* High elevation */
  
  /* ===== TRANSITION TIMING ===== */
  /* Consistent animation timing for smooth interactions */
  --transition-fast: 0.15s ease; /* Quick feedback: hovers, clicks */
  --transition-base: 0.2s ease;  /* Standard interactions */
  --transition-slow: 0.3s ease;  /* Complex animations */
  
  /* ===== RESPONSIVE BREAKPOINTS ===== */
  /* Mobile-first breakpoints for progressive enhancement */
  --breakpoint-tablet: 768px;   /* Tablet and small desktop */
  --breakpoint-desktop: 1024px; /* Desktop and larger */
  --breakpoint-large: 1280px;   /* Large desktop screens */

  /* ===== LEGACY COMPATIBILITY ===== */
  /* Temporary legacy variable mappings - to be phased out in future versions */
  --primary-color: var(--color-space-black);
  --secondary-color: var(--color-cloud-gray);
  --accent-color: var(--color-orbit-blue);
  --text-color: var(--text-high);
  --text-color-light: var(--color-cloud-gray);
  --light-text: var(--text-inverse);
  --light-bg: #ffffff;
  --off-white: var(--color-off-white);
  --dark-bg: var(--color-space-black);
  --border-color: var(--color-cloud-gray);

  /* Legacy spacing system - use design tokens for new components */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Legacy container sizes */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;

  /* Legacy z-index scale */
  --z-behind: -1;
  --z-normal: 1;
  --z-above: 10;
  --z-sticky: 100;
  --z-modal: 1000;
}

/* ===== BROWSER COMPATIBILITY ===== */
/* Fallback support for browsers that don't support CSS custom properties */
/* This ensures the design remains functional on older browsers */
@supports not (color: var(--color-rocket-orange)) {
  :root {
    /* Essential color fallbacks for legacy browser support */
    --color-rocket-orange: #FF6B35;
    --color-orbit-red: #E63946;
    --color-orbit-blue: #0077B6;
    --color-neon-green: #06D6A0;
    --color-space-black: #0D0D0D;
    --color-charcoal: #1C1C1E;
    --color-off-white: #F9F9F9;
    --color-cloud-gray: #B0B3B8;
    --text-high: #0F1115;
    --text-inverse: #FFFFFF;
  }
}

/* ===== BASE STYLES & RESET ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 15px; /* Mobile first */
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-body);
    line-height: var(--line-height-base);
    color: var(--text-color);
    background-color: var(--light-bg);
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
    font-weight: 400;
}

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

img[loading="lazy"] {
    background: var(--off-white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

::selection {
    background-color: var(--accent-color);
    color: var(--light-text);
}

:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

:focus:not(:focus-visible) {
    outline: none;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-heading);
    margin-bottom: var(--space-6);
    font-weight: 600;
    line-height: 1.1;
    color: var(--primary-color);
    letter-spacing: -0.015em;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: var(--space-8);
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-top: var(--space-12);
    margin-bottom: var(--space-6);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-top: var(--space-8);
    margin-bottom: var(--space-4);
}

p {
    margin-bottom: var(--space-6);
    font-weight: 400;
    color: var(--text-color);
    max-width: 70ch;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition-base);
    position: relative;
}

a:hover {
    color: var(--primary-color);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

/* Typography utility classes */
.hero-text {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    text-align: center;
}

.promo-text {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 500;
    text-align: center;
    max-width: 25ch;
    margin: 0 auto;
    line-height: 1.2;
}

.product-desc {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-color-light);
}

.feature-text {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 500;
    line-height: 1.4;
    color: var(--primary-color);
}

.mission-statement {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    color: var(--primary-color);
    text-align: center;
    margin: var(--space-12) auto;
    max-width: 30ch;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

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

.grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile first */
    gap: var(--space-4);
    margin: var(--space-6) 0;
}

.grid-12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--space-6);
}

.asymmetric-layout {
    display: grid;
    grid-template-columns: 1fr; /* Mobile first */
    gap: var(--space-6);
    align-items: center;
}

.asymmetric-layout.reverse {
    grid-template-columns: 1fr; /* Mobile first */
}

.sticky-section {
    position: sticky;
    top: var(--space-8);
}

main {
    padding: var(--space-12) 0;
}

section {
    margin-bottom: var(--space-24);
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: transform, opacity;
}

section:last-child {
    margin-bottom: 0;
}

.media-container {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
    overflow: hidden;
}

.media-container img,
.media-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}/* ==
=== BUTTON COMPONENTS ===== */
/* Mobile-first button system with consistent interactions */

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: none;
  font-family: var(--font-family-body);
  font-size: var(--font-size-base);
  transition: all var(--transition-base);
  line-height: 1.2;
  width: 100%;
  max-width: 280px;
}

.btn-primary {
  background: var(--color-rocket-orange);
  color: var(--text-inverse);
}

.btn-primary:hover {
  background: var(--color-orbit-red);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-primary:active {
  transform: translateY(1px);
  box-shadow: var(--shadow-sm);
}

.btn-secondary {
  background: transparent;
  color: var(--color-orbit-blue);
  border: 1px solid var(--color-orbit-blue);
}

.btn-secondary:hover {
  background: rgba(0, 119, 182, 0.08);
  transform: translateY(-1px);
}

.btn-secondary:active {
  transform: translateY(1px);
}

/* Enhanced button focus states */
.btn:focus,
.btn:focus-visible,
.btn-primary:focus,
.btn-primary:focus-visible,
.btn-secondary:focus,
.btn-secondary:focus-visible {
  outline: 3px solid var(--color-orbit-blue);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px rgba(0, 119, 182, 0.15);
}

/* Remove focus outline for mouse users */
.btn:focus:not(:focus-visible),
.btn-primary:focus:not(:focus-visible),
.btn-secondary:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

/* ===== CARD COMPONENTS ===== */
/* Flexible card system for content organization */

.card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--border-radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card--accent {
  border-top: 3px solid var(--color-rocket-orange);
}

.card--dark {
  background: var(--color-charcoal);
  color: var(--text-inverse);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card__title {
  margin: 0 0 12px 0;
  font-size: 20px;
  font-weight: 600;
  color: inherit;
}

.card__content {
  margin: 0;
  color: inherit;
  opacity: 0.9;
}

/* ===== SECTION COMPONENTS ===== */
/* Layout containers with background and spacing options */

.section {
  padding: var(--section-padding) var(--container-padding);
}

.section--light {
  background: var(--color-off-white);
}

.section--dark {
  background: var(--color-space-black);
  color: var(--text-inverse);
}

.section--charcoal {
  background: var(--color-charcoal);
  color: var(--text-inverse);
}

.section--gradient {
  background: var(--grad-rocket);
  color: var(--text-inverse);
}

.section__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.section__title {
  font-size: var(--section-title-size);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 16px 0;
  text-align: center;
  color: inherit;
}

.section__subtitle {
  font-size: var(--section-subtitle-size);
  margin: 0 auto 32px auto;
  text-align: center;
  max-width: 800px;
  color: inherit;
}

/* Ensure all text in dark sections is white */
.section--dark *,
.section--charcoal *,
.section--gradient * {
  color: var(--text-inverse) !important;
}

/* ===== TRUST & COMPLIANCE COMPONENTS ===== */
/* Styling for trust logos and compliance badges */

.trust-strip {
  margin: 32px 0;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
}

.trust-logo-placeholder {
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  color: var(--text-inverse);
  font-weight: 500;
  text-align: center;
  min-width: 140px;
}

.compliance-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.compliance-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  color: var(--text-inverse);
  min-height: 60px;
}

.badge-icon {
  font-size: 20px;
  color: var(--color-rocket-orange);
  min-width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.badge-content {
  flex: 1;
  min-width: 0;
}

.badge-content h3 {
  margin: 0 0 2px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-inverse);
  line-height: 1.2;
}

.badge-content p {
  margin: 0;
  font-size: 12px;
  opacity: 0.8;
  color: var(--text-inverse);
  line-height: 1.2;
}

/* Responsive compliance badges */
@media (max-width: 768px) {
  .compliance-badges {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
  }
  
  .compliance-badge {
    padding: 12px;
    gap: 10px;
    min-height: 50px;
  }
  
  .badge-icon {
    font-size: 18px;
    min-width: 20px;
  }
  
  .badge-content h3 {
    font-size: 13px;
  }
  
  .badge-content p {
    font-size: 11px;
  }
}

/* ===== SERVICE ICON COMPONENTS ===== */
/* Styling for service icons in sections */

.service-icon {
  font-size: 32px;
  color: var(--color-rocket-orange);
  margin-bottom: 16px;
  display: block;
  text-align: center;
}

/* Ensure service icons are visible in dark sections */
.section--dark .service-icon,
.section--charcoal .service-icon,
.section--gradient .service-icon {
  color: var(--color-rocket-orange);
}

/* ===== GRID COMPONENTS ===== */
/* Responsive grid system for content layout */

.grid {
  display: grid;
  gap: 20px;
}

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

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

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

/* ===== HERO COMPONENTS ===== */
/* Landing page hero section with logo, headlines, and CTAs */

.hero {
  background: var(--color-space-black);
  color: var(--text-inverse);
  padding: var(--hero-padding) var(--container-padding);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero__container {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero__logo {
  height: 40px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.hero--with-bg {
  background-image: linear-gradient(rgba(13, 13, 13, 0.8), rgba(13, 13, 13, 0.8)), url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero--with-bg * {
  color: var(--text-inverse) !important;
}

.hero__title {
  font-size: var(--hero-title-size);
  line-height: 1.1;
  margin: 0 0 14px 0;
  font-weight: 700;
  font-family: var(--font-family-heading);
  letter-spacing: -0.02em;
  color: var(--text-inverse);
}

.hero__subtitle {
  font-size: var(--hero-subtitle-size);
  margin: 0 auto 24px auto;
  max-width: 800px;
  line-height: 1.5;
  color: var(--text-inverse);
}

.hero__cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

/* ===== FORM COMPONENTS ===== */
/* Input fields, labels, and form containers with accessibility focus */

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: var(--text-high);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 16px;
  border: 2px solid var(--color-cloud-gray);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-family-body);
  font-size: 16px;
  transition: all var(--transition-base);
  background: white;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-cloud-gray);
  opacity: 0.8;
}

.form-input:focus,
.form-textarea:focus,
.form-input:focus-visible,
.form-textarea:focus-visible {
  outline: 3px solid var(--color-orbit-blue);
  outline-offset: 2px;
  border-color: var(--color-orbit-blue);
  box-shadow: 0 0 0 6px rgba(0, 119, 182, 0.15);
}

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

/* Contact Form Specific Styles - Mobile First */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px 24px;
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-form .form-group {
  margin-bottom: 24px;
}

.contact-form .form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-high);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-form .form-input:focus,
.contact-form .form-textarea:focus,
.contact-form .form-input:focus-visible,
.contact-form .form-textarea:focus-visible {
  outline: 3px solid var(--color-orbit-blue);
  outline-offset: 2px;
  border-color: var(--color-orbit-blue);
  box-shadow: 0 0 0 6px rgba(0, 119, 182, 0.15);
}

.contact-form .btn {
  font-size: 16px;
  padding: 16px 24px;
  font-weight: 600;
}

/* ===== NAVIGATION COMPONENTS ===== */
/* Header, mobile menu, and footer navigation elements */

.header {
  background: rgba(249, 249, 249, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all var(--transition-base);
}

.header__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-high);
  transition: transform var(--transition-base);
}

.header__logo:hover {
  transform: translateY(-1px);
}

.header__logo img {
  height: 32px;
  width: auto;
  margin-right: 8px;
}

.header__logo-text {
  color: var(--text-high);
}

.header__logo-accent {
  color: var(--color-rocket-orange);
}

/* Desktop Navigation - Hidden on Mobile */
.nav {
  display: none;
  align-items: center;
}

.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 32px;
  align-items: center;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: block;
  padding: 8px 0;
  color: var(--text-high);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color var(--transition-base);
  position: relative;
}

.nav__link:hover,
.nav__link:focus {
  color: var(--color-rocket-orange);
}

.nav__link:focus,
.nav__link:focus-visible {
  outline: 3px solid var(--color-orbit-blue);
  outline-offset: 4px;
  border-radius: 4px;
  background-color: rgba(0, 119, 182, 0.1);
}

.nav__link.active {
  color: var(--color-rocket-orange);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-rocket-orange);
  transition: width var(--transition-base);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

/* Mobile Menu Button - Visible on Mobile */
.mobile-menu-btn {
  display: flex;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  border-radius: var(--border-radius-sm);
  transition: background-color var(--transition-base);
  position: relative;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}

.mobile-menu-btn:focus,
.mobile-menu-btn:focus-visible {
  outline: 3px solid var(--color-orbit-blue);
  outline-offset: 2px;
  background-color: rgba(0, 119, 182, 0.1);
}

/* Hamburger Icon */
.hamburger {
  width: 24px;
  height: 18px;
  position: relative;
  transform: rotate(0deg);
  transition: var(--transition-base);
  cursor: pointer;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--text-high);
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: var(--transition-base);
}

.hamburger span:nth-child(1) {
  top: 0px;
}

.hamburger span:nth-child(2) {
  top: 8px;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

/* Hamburger Animation */
.mobile-menu-btn.active .hamburger span:nth-child(1) {
  top: 8px;
  transform: rotate(135deg);
}

.mobile-menu-btn.active .hamburger span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.mobile-menu-btn.active .hamburger span:nth-child(3) {
  top: 8px;
  transform: rotate(-135deg);
}

/* Mobile Navigation Overlay */
.mobile-nav {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(249, 249, 249, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  overflow-y: auto;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__container {
  padding: 32px var(--container-padding);
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav__item {
  margin-bottom: 8px;
}

.mobile-nav__link {
  display: block;
  padding: 16px 0;
  color: var(--text-high);
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all var(--transition-base);
}

.mobile-nav__link:hover,
.mobile-nav__link:focus {
  color: var(--color-rocket-orange);
  padding-left: 16px;
}

.mobile-nav__link:focus,
.mobile-nav__link:focus-visible {
  outline: 3px solid var(--color-orbit-blue);
  outline-offset: 4px;
  border-radius: 4px;
  background-color: rgba(0, 119, 182, 0.1);
}

.mobile-nav__link.active {
  color: var(--color-rocket-orange);
  font-weight: 600;
}

/* ===== FOOTER COMPONENTS ===== */
/* Site footer with links, social media, and company information */

.footer {
  background: var(--color-space-black);
  color: var(--text-inverse);
  padding: 64px 0 32px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-rocket);
}

.footer__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.footer__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
  text-align: center;
}

.footer__section {
  margin-bottom: 32px;
}

.footer__section-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-inverse);
  position: relative;
  padding-bottom: 8px;
}

.footer__section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--color-rocket-orange);
}

.footer__section-text {
  color: var(--text-inverse);
  opacity: 0.8;
  line-height: 1.6;
  margin: 0;
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a {
  color: var(--text-inverse);
  text-decoration: none;
  opacity: 0.8;
  transition: all var(--transition-base);
  display: inline-block;
}

.footer__links a:hover,
.footer__links a:focus {
  opacity: 1;
  color: var(--color-rocket-orange);
  transform: translateX(4px);
}

.footer__links a:focus,
.footer__links a:focus-visible {
  outline: 3px solid var(--color-orbit-blue);
  outline-offset: 2px;
  border-radius: 4px;
  background-color: rgba(0, 119, 182, 0.1);
}

.footer__social {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  justify-content: center;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-inverse);
  text-decoration: none;
  font-size: 18px;
  transition: all var(--transition-base);
}

.footer__social-link:hover,
.footer__social-link:focus {
  background: var(--color-rocket-orange);
  transform: translateY(-2px);
}

.footer__social-link:focus,
.footer__social-link:focus-visible {
  outline: 3px solid var(--color-orbit-blue);
  outline-offset: 2px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  text-align: center;
}

.footer__copyright {
  color: var(--text-inverse);
  opacity: 0.7;
  margin: 0;
  font-size: 14px;
}

/* ===== TRUST & COMPLIANCE COMPONENTS ===== */
/* Customer logos, compliance badges, and trust indicators */

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

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.trust-logo-placeholder {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-md);
  color: var(--text-inverse);
  font-weight: 500;
  opacity: 0.8;
  transition: opacity var(--transition-base);
  min-width: 120px;
  font-size: 14px;
}

.trust-logo-placeholder:hover {
  opacity: 1;
}

.compliance-badges {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.compliance-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  transition: all var(--transition-base);
}

.compliance-badge:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.badge-icon {
  font-size: 24px;
  color: var(--color-neon-green);
  min-width: 32px;
}

.badge-content h4 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-inverse);
}

.badge-content p {
  margin: 0;
  font-size: 14px;
  opacity: 0.8;
  color: var(--text-inverse);
}

/* Service Icon Styling */
.service-icon {
  font-size: 32px;
  color: var(--color-rocket-orange);
  margin-bottom: 16px;
  display: block;
}

/* Product Page Specific Styles */
.product-logo img {
  max-width: 100%;
  height: auto;
}

/* Product Card Button Flex Container */
.product-card-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

/* ===== LEGACY STYLES ===== */
/* Legacy styles maintained for backward compatibility */

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: var(--transition-base);
}

.logo img {
    height: 40px;
    width: auto;
    margin-right: var(--space-3);
    transition: var(--transition-base);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo span {
    color: var(--accent-color);
    font-weight: 800;
}

.button-group {
    display: flex;
    flex-direction: column; /* Mobile first */
    gap: 1rem;
    width: 100%;
}

/* Legacy button loading animation */
@keyframes button-loading {
    to {
        transform: rotate(360deg);
    }
}

label {
    display: block;
    margin-bottom: var(--space-2);
    font-weight: 600;
    color: var(--primary-color);
}

input,
textarea,
select {
    width: 100%;
    padding: var(--space-3);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 1rem;
    background-color: var(--light-bg);
    color: var(--text-color);
    transition: var(--transition-base);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.15);
}

input::placeholder,
textarea::placeholder {
    color: var(--text-color-light);
    opacity: 0.7;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr; /* Mobile first */
    gap: var(--space-6);
    margin-bottom: var(--space-8);
    text-align: center;
}

.footer-section {
    margin-bottom: var(--space-6);
}

.footer-section h3 {
    color: var(--light-text);
    margin-bottom: var(--space-4);
    font-size: 1.25rem;
    position: relative;
    padding-bottom: var(--space-2);
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-section p {
    color: var(--light-text);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: var(--space-2);
}

.footer-links a {
    color: var(--light-text);
    transition: var(--transition-base);
    display: inline-block;
    padding: var(--space-1) 0;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-6);
    justify-content: center;
}

.social-links a {
    color: var(--light-text);
    font-size: 1.25rem;
    transition: var(--transition-base);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.social-links a:hover {
    color: var(--light-text);
    background-color: var(--accent-color);
    transform: translateY(-5px);
}

.copyright {
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #ffffff;
    font-size: 0.9rem;
}

.service-card {
    background-color: var(--light-bg);
    border-radius: var(--border-radius-lg);
    padding: var(--space-6);
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--grad-rocket);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

.service-card h3 {
    color: var(--primary-color);
    margin-top: var(--space-2);
    font-size: 1.5rem;
}

.service-card h4 {
    color: var(--text-color-light);
    font-weight: 500;
    margin-bottom: var(--space-4);
    font-size: 1.1rem;
}

/* Service card specific image styles */
.service-card .card-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    margin-top: var(--space-4);
}

.service-card .team-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2);
    margin-top: var(--space-4);
}

.service-card .team-images img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    transition: transform 0.3s ease;
}

.service-card .team-images img:hover {
    transform: scale(1.05);
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile first */
    gap: var(--space-6);
}

.personal-gallery {
    display: grid;
    grid-template-columns: 1fr; /* Mobile first */
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.personal-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    filter: brightness(0.95);
}

.personal-gallery img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.05);
    z-index: 1;
}

/* ===== TEAM SECTION ===== */
.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-8);
    background-color: var(--light-bg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.team-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: var(--space-6);
    border: 5px solid var(--light-bg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    filter: grayscale(20%);
}

.team-member:hover .team-photo {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.team-bio {
    margin-bottom: var(--space-6);
    max-width: 70ch;
    margin-left: auto;
    margin-right: auto;
}

/* ===== SCROLL EFFECTS ===== */
/* Only apply animations when JavaScript is enabled for progressive enhancement */
.js-enabled .scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-base);
    will-change: transform, opacity;
}

.js-enabled .scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.js-enabled .fade-in {
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity;
}

.js-enabled .fade-in.visible {
    opacity: 1;
}

.js-enabled .scale-in {
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.js-enabled .scale-in.visible {
    transform: scale(1);
    opacity: 1;
}

.js-enabled .slide-in-left {
    transform: translateX(-30px);
    opacity: 0;
    transition: var(--transition-base);
    will-change: transform, opacity;
}

.js-enabled .slide-in-right {
    transform: translateX(30px);
    opacity: 0;
    transition: var(--transition-base);
    will-change: transform, opacity;
}

.js-enabled .slide-in-left.visible,
.js-enabled .slide-in-right.visible {
    transform: translateX(0);
    opacity: 1;
}

.gpu-accelerated {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.animate {
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* ===== ACCESSIBILITY ENHANCEMENTS ===== */
/* Enhanced accessibility features using design tokens */

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-orbit-blue);
    color: var(--text-inverse);
    padding: var(--space-2) var(--space-4);
    z-index: 1000;
    transition: top 0.3s;
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
}

.skip-link:focus {
    top: 0;
    left: 0;
    z-index: 9999;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 8px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Enhanced focus indicators using design tokens */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus,
.btn:focus,
.nav__link:focus,
.mobile-nav__link:focus,
.footer__links a:focus,
.footer__social-link:focus {
    outline: 3px solid var(--color-orbit-blue);
    outline-offset: 2px;
    border-radius: var(--border-radius-sm);
}

/* Focus visible for better keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.btn:focus-visible {
    outline: 3px solid var(--color-orbit-blue);
    outline-offset: 2px;
    border-radius: var(--border-radius-sm);
}

/* Remove focus outline for mouse users */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
textarea:focus:not(:focus-visible),
select:focus:not(:focus-visible) {
    outline: none;
}

/* High contrast focus for better visibility */
@media (prefers-contrast: high) {
    a:focus,
    button:focus,
    input:focus,
    textarea:focus,
    select:focus,
    .btn:focus {
        outline: 4px solid var(--color-orbit-blue);
        outline-offset: 2px;
        background-color: rgba(0, 119, 182, 0.1);
    }
}

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

/* Ensure sufficient color contrast */
.text-high-contrast {
    color: var(--text-high);
    font-weight: 500;
}

/* Focus trap for modal/mobile menu */
.focus-trap {
    position: relative;
}

.focus-trap:focus {
    outline: none;
}

/* Enhanced mobile menu accessibility */
.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav__link:focus {
    background-color: rgba(0, 119, 182, 0.1);
    outline: 3px solid var(--color-orbit-blue);
    outline-offset: 2px;
}

/* Ensure sufficient color contrast for text */
.card__content,
.section__subtitle,
.hero__subtitle {
    color: var(--text-high);
    opacity: 0.85;
}

/* Dark theme text contrast improvements */
.section--dark .card__content,
.section--dark .section__subtitle,
.section--charcoal .card__content,
.section--charcoal .section__subtitle {
    color: var(--text-inverse);
    opacity: 0.9;
}

/* Improved error states for forms */
.form-input.error,
.form-textarea.error {
    border-color: #e53e3e;
    outline-color: #e53e3e;
}

.error-message {
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: 4px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.error-message::before {
    content: '⚠️';
    margin-right: 8px;
}

/* Success states */
.success-message {
    text-align: center;
    padding: 32px;
    color: var(--color-neon-green);
}

.success-message h3 {
    color: var(--color-neon-green);
    margin-bottom: 8px;
}

/* Ensure icons are not read by screen readers when decorative */
.service-icon i,
.badge-icon i,
.fas,
.fab {
    speak: none;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

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

.text-accent {
    color: var(--accent-color);
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: var(--space-1);
}

.mb-2 {
    margin-bottom: var(--space-2);
}

.mb-4 {
    margin-bottom: var(--space-4);
}

.mb-6 {
    margin-bottom: var(--space-6);
}

.mb-8 {
    margin-bottom: var(--space-8);
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: var(--space-1);
}

.mt-2 {
    margin-top: var(--space-2);
}

.mt-4 {
    margin-top: var(--space-4);
}

.mt-6 {
    margin-top: var(--space-6);
}

.mt-8 {
    margin-top: var(--space-8);
}

.py-4 {
    padding-top: var(--space-4);
    padding-bottom: var(--space-4);
}

.py-6 {
    padding-top: var(--space-6);
    padding-bottom: var(--space-6);
}

.py-8 {
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
}

.py-12 {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
}

.px-4 {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
}

.px-6 {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
}

.px-8 {
    padding-left: var(--space-8);
    padding-right: var(--space-8);
}

/* ===== RESPONSIVE DESIGN - MOBILE FIRST ===== */

/* Tablet Styles - 768px and up */
@media (min-width: 768px) {
    html {
        font-size: 16px;
    }

    /* Update spacing for tablet */
    .section {
        padding: var(--section-padding-tablet) var(--container-padding-tablet);
    }
    
    .hero {
        padding: var(--hero-padding-tablet) var(--container-padding-tablet);
    }
    
    .hero__logo {
        height: 44px;
        margin-bottom: 22px;
    }
    
    .hero__title {
        font-size: var(--hero-title-size-tablet);
        margin-bottom: 15px;
    }
    
    .hero__subtitle {
        font-size: var(--hero-subtitle-size-tablet);
        margin-bottom: 26px;
    }
    
    .hero__cta {
        flex-direction: row;
        gap: 14px;
    }
    
    .section__title {
        font-size: var(--section-title-size-tablet);
    }
    
    .section__subtitle {
        font-size: var(--section-subtitle-size-tablet);
    }
    
    /* Grid improvements for tablet */
    .grid {
        gap: 22px;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        margin: var(--space-8) 0;
    }
    
    .grid--2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid--3 {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Button improvements for tablet */
    .btn {
        width: auto;
        max-width: none;
    }
    
    /* Card improvements for tablet */
    .card {
        padding: 22px;
    }
    
    /* Trust strip improvements for tablet */
    .trust-logos {
        gap: 24px;
        margin-bottom: 40px;
    }
    
    .trust-logo-placeholder {
        min-width: 130px;
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .compliance-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .compliance-badge {
        padding: 18px;
    }
    
    /* Header improvements for tablet */
    .header__container {
        min-height: 68px;
    }
    
    .header__logo {
        font-size: 22px;
    }
    
    .header__logo img {
        height: 36px;
        margin-right: 10px;
    }
    
    .mobile-nav {
        top: 68px;
    }
    
    /* Footer improvements for tablet */
    .footer__content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        text-align: left;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-8);
        text-align: left;
    }
    
    /* Form improvements for tablet */
    .contact-form {
        padding: 40px 32px;
    }
    
    .form-input,
    .form-textarea {
        padding: 14px 16px;
    }
    
    /* Product card improvements for tablet */
    .product-card-actions {
        flex-direction: column;
    }
    
    .product-card-actions a {
        width: 100%;
        text-align: center;
    }

    .asymmetric-layout {
        grid-template-columns: 1.5fr 1fr;
        gap: var(--space-8);
    }

    .asymmetric-layout.reverse {
        grid-template-columns: 1fr 1.5fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(320px, 1fr));
    }

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

    .button-group {
        display: inline-flex;
        flex-direction: row;
        width: auto;
    }
}

/* Desktop Styles - 1024px and up */
@media (min-width: 1024px) {
    html {
        font-size: clamp(16px, 1.5vw, 22px);
    }

    /* Show desktop navigation, hide mobile menu */
    .nav {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    /* Update spacing for desktop */
    .section {
        padding: var(--section-padding-desktop) var(--container-padding-desktop);
    }
    
    .hero {
        padding: var(--hero-padding-desktop) var(--container-padding-desktop);
    }
    
    .hero__logo {
        height: 48px;
        margin-bottom: 24px;
    }
    
    .hero__title {
        font-size: var(--hero-title-size-desktop);
        margin-bottom: 16px;
    }
    
    .hero__subtitle {
        font-size: var(--hero-subtitle-size-desktop);
        margin-bottom: 28px;
    }
    
    .hero__cta {
        gap: 16px;
    }
    
    .section__title {
        font-size: var(--section-title-size-desktop);
    }
    
    .section__subtitle {
        font-size: var(--section-subtitle-size-desktop);
    }
    
    /* Grid improvements for desktop */
    .grid {
        gap: 24px;
    }
    
    .grid--3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .grid--4 {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Card improvements for desktop */
    .card {
        padding: 24px;
    }
    
    /* Trust strip improvements for desktop */
    .trust-logos {
        gap: 32px;
        margin-bottom: 48px;
    }
    
    .trust-logo-placeholder {
        min-width: 140px;
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .compliance-badges {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 24px;
    }
    
    .compliance-badge {
        padding: 20px;
    }
    
    /* Header improvements for desktop */
    .header__container {
        min-height: 72px;
    }
    
    .header__logo {
        font-size: 24px;
    }
    
    .header__logo img {
        height: 40px;
        margin-right: 12px;
    }
    
    /* Footer improvements for desktop */
    .footer__content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 48px;
        text-align: left;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    /* Form improvements for desktop */
    .contact-form {
        padding: 48px 40px;
    }
    
    .form-input,
    .form-textarea {
        padding: 12px 16px;
    }
    
    /* Product card improvements for desktop */
    .product-card-actions {
        flex-direction: row;
        gap: 16px;
    }
    
    .product-card-actions a {
        width: auto;
        text-align: center;
    }

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

/* Large Desktop Styles - 1280px and up */
@media (min-width: 1280px) {
    /* Enhanced spacing for large screens */
    .hero__cta {
        gap: 20px;
    }
    
    .grid {
        gap: 28px;
    }
    
    .card {
        padding: 28px;
    }
    
    .trust-logos {
        gap: 40px;
    }
    
    .compliance-badges {
        gap: 28px;
    }
}

/* ===== MOTION PREFERENCES ===== */
@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===== HIGH CONTRAST MODE ===== */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000;
        --secondary-color: #333;
        --accent-color: #0066cc;
        --text-color: #000;
        --light-text: #fff;
        --light-bg: #fff;
        --dark-bg: #000;
        --border-color: #000;
    }

    .btn,
    button {
        border: 2px solid #000;
    }

    a {
        text-decoration: underline;
    }
}