/* =============================================================
 * CZ Nation — Production Style System
 * Deployable to Hostinger public_html without a build tool.
 * ============================================================= */

/* ---------------------------------------------------------------
 * 1. CSS CUSTOM PROPERTIES (Design Tokens)
 * --------------------------------------------------------------- */
:root {
  /* Surface Colors */
  --color-void:              #050505;
  --color-core:              #0d0e0f;
  --color-surface-lowest:    #0d0e0f;
  --color-surface-low:       #1a1c1c;
  --color-surface:           #1e2020;
  --color-surface-high:      #292a2a;
  --color-surface-highest:   #343535;
  --color-graphite:          #2a2a2a;

  /* Text Colors */
  --color-on-surface:        #e3e2e2;
  --color-on-surface-variant:#c4c7c7;
  --color-silver:            #e5e2e1;
  --color-text-muted:        #8e9192;
  --color-white:             #ffffff;

  /* Brand Accent Colors (Burnt Orange → Warm Amber Gold) */
  --color-secondary:         #ffb783;
  --color-secondary-dark:    #b55d01;
  --color-tertiary:          #fdba5c;

  /* Primary (Silver/Platinum) */
  --color-primary:           #c9c6c5;

  /* Semantic */
  --color-error:             #ff6b6b;
  --color-success:           #4ade80;

  /* Gradients */
  --gradient-accent:   linear-gradient(135deg, #ffb783 0%, #fdba5c 100%);
  --gradient-btn:      linear-gradient(135deg, #b55d01 0%, #fdba5c 100%);
  --gradient-btn-hover:linear-gradient(135deg, #d36e05 0%, #ffc774 100%);
  --gradient-hero:     linear-gradient(135deg, rgba(255,183,131,0.12) 0%, rgba(253,186,92,0.06) 100%);

  /* Border Radii */
  --radius-sm:    0.25rem;
  --radius-base:  0.5rem;
  --radius-md:    0.75rem;
  --radius-lg:    1rem;
  --radius-xl:    1.5rem;
  --radius-2xl:   2rem;
  --radius-full:  9999px;

  /* Spacing */
  --container-max:  1440px;
  --gutter:         clamp(1rem, 4vw, 1.5rem);
  --section-gap:    clamp(80px, 10vw, 140px);

  /* Typography */
  --font-heading: 'Sora', -apple-system, sans-serif;
  --font-body:    'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Transitions */
  --ease-out:   cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring:cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:     0.15s;
  --t-normal:   0.3s;
  --t-slow:     0.6s;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.3);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.7);
  --shadow-glow:0 0 24px rgba(253,186,92,0.15);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--color-void);
  color: var(--color-on-surface);
  font-family: var(--font-body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip; /* CHANGED THIS TO CLIP */
}

body {
  min-height: 100vh;
  overflow-x: clip; /* CHANGED THIS TO CLIP */
  background-color: var(--color-void);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
}

p {
  color: var(--color-on-surface-variant);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast) var(--ease-out);
}

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

ul { list-style: none; }

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

/* ---------------------------------------------------------------
 * 3. UTILITIES
 * --------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-tertiary);
  background: rgba(253,186,92,0.1);
  border: 1px solid rgba(253,186,92,0.25);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

/* ---------------------------------------------------------------
 * 4. BUTTONS
 * --------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-base);
  cursor: pointer;
  transition: all var(--t-normal) var(--ease-out);
  white-space: nowrap;
  text-decoration: none;
  -webkit-user-select: none;
  user-select: none;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--t-fast) var(--ease-out);
}

.btn-primary {
  background: var(--gradient-btn);
  color: var(--color-white);
  border: none;
  box-shadow: 0 4px 20px rgba(181,93,1,0.25);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--gradient-btn-hover);
  box-shadow: 0 8px 28px rgba(181,93,1,0.45);
  transform: translateY(-2px);
}

.btn-primary:hover svg,
.btn-primary:focus-visible svg {
  transform: translateX(4px);
}

.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: rgba(229,226,225,0.04);
  color: var(--color-silver);
  border: 1px solid rgba(229,226,225,0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(229,226,225,0.09);
  border-color: rgba(229,226,225,0.35);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

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

.btn:focus-visible {
  outline: 2px solid var(--color-tertiary);
  outline-offset: 3px;
}

/* ---------------------------------------------------------------
 * 5. HEADER & NAVIGATION
 * --------------------------------------------------------------- */
.header {
  position: fixed;
  top: 1.5rem;
  left: 0;
  width: 100%;
  z-index: 1000;
  pointer-events: none;
}

.navbar {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: calc(var(--container-max) - 48px);
  width: calc(100% - 48px);
  margin-inline: auto;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-full);
  background: rgba(13,14,15,0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(229,226,225,0.08);
  border-top-color: rgba(229,226,225,0.16);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: all var(--t-normal) var(--ease-out);
}

.navbar.scrolled {
  padding: 0.55rem 2rem;
  background: rgba(5,5,5,0.9);
  box-shadow: 0 12px 48px rgba(0,0,0,0.6);
}

.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--color-white);
  display: flex;
  align-items: center;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo-accent {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-on-surface-variant);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-base);
  transition: all var(--t-fast) var(--ease-out);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-white);
  background: rgba(229,226,225,0.07);
}

.btn-nav {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-base);
  color: var(--color-white);
  background: rgba(229,226,225,0.06);
  border: 1px solid rgba(229,226,225,0.1);
  transition: background var(--t-fast) var(--ease-out);
  flex-shrink: 0;
}

.menu-toggle:hover { background: rgba(229,226,225,0.12); }

.menu-toggle svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

/* Mobile nav drop-down */
.nav-links.mobile-show {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 100%;
  background: rgba(13,14,15,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(229,226,225,0.1);
  padding: 1.5rem;
  gap: 0.25rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  align-items: stretch;
  animation: menuSlideDown 0.25s var(--ease-spring) both;
}

@keyframes menuSlideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-links.mobile-show .nav-link {
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  text-align: center;
}

/* ---------------------------------------------------------------
 * 6. HERO SECTION
 * --------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 120px;
  overflow: hidden;
  background-color: var(--color-void);
}

.hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5,5,5,0.35) 0%,
    rgba(5,5,5,0.65) 40%,
    rgba(5,5,5,0.88) 70%,
    rgba(5,5,5,1) 100%
  );
  z-index: 2;
}

/* Ambient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 2;
  pointer-events: none;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,183,131,0.08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(253,186,92,0.06) 0%, transparent 70%);
  bottom: 80px;
  left: 10%;
}

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-tertiary);
  background: rgba(253,186,92,0.08);
  border: 1px solid rgba(253,186,92,0.2);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.75rem;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  max-width: 840px;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--color-on-surface-variant);
  max-width: 600px;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-actions .btn {
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
}

/* Trust indicators */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-on-surface-variant);
}

.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-tertiary);
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(229,226,225,0.15);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--color-tertiary);
  border-radius: 50%;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.8; }
  50% { transform: translateY(10px); opacity: 0.3; }
}

/* ---------------------------------------------------------------
 * 7. SECTIONS — COMMON
 * --------------------------------------------------------------- */
section {
  padding: var(--section-gap) 0;
  position: relative;
}

.section-header {
  max-width: 720px;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 0;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
  line-height: 1.65;
}

/* ---------------------------------------------------------------
 * 8. SERVICES SECTION
 * --------------------------------------------------------------- */
.services-section {
  background: var(--color-void);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.service-card {
  position: relative;
  background: rgba(26,28,28,0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(229,226,225,0.05);
  border-top-color: rgba(229,226,225,0.12);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  transition: all var(--t-normal) var(--ease-out);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(253,186,92,0.1), transparent 65%);
  opacity: 0;
  transition: opacity var(--t-normal) var(--ease-out);
  pointer-events: none;
  z-index: 0;
}

.service-card > * { position: relative; z-index: 1; }

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(253,186,92,0.2);
  border-top-color: rgba(253,186,92,0.5);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), var(--shadow-glow);
}

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

.service-icon-wrapper {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(255,183,131,0.08);
  border: 1px solid rgba(255,183,131,0.2);
  color: var(--color-secondary);
  margin-bottom: 1.75rem;
  transition: all var(--t-normal) var(--ease-out);
}

.service-card:hover .service-icon-wrapper {
  background: var(--gradient-btn);
  color: var(--color-white);
  border-color: transparent;
  box-shadow: 0 0 20px rgba(253,186,92,0.3);
}

.service-icon {
  width: 24px;
  height: 24px;
}

.service-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.875rem;
}

.service-card-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-on-surface-variant);
  flex: 1;
  margin-bottom: 1.5rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-tertiary);
  transition: gap var(--t-fast) var(--ease-out);
  margin-top: auto;
}

.service-link svg {
  width: 15px;
  height: 15px;
  transition: transform var(--t-fast) var(--ease-out);
}

.service-link:hover svg { transform: translateX(4px); }

/* Platforms strip */
.platforms-strip {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: rgba(26,28,28,0.4);
  border: 1px solid rgba(229,226,225,0.06);
  border-radius: var(--radius-xl);
  flex-wrap: wrap;
}

.platforms-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.platforms-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-on-surface-variant);
  padding: 0.35rem 0.875rem;
  background: rgba(229,226,225,0.05);
  border: 1px solid rgba(229,226,225,0.08);
  border-radius: var(--radius-full);
  transition: all var(--t-fast) var(--ease-out);
}

.platform-pill svg {
  width: 14px;
  height: 14px;
  color: var(--color-tertiary);
}

.platform-pill:hover {
  background: rgba(253,186,92,0.08);
  border-color: rgba(253,186,92,0.2);
  color: var(--color-white);
}

/* ---------------------------------------------------------------
 * 9. PRICING SECTION
 * --------------------------------------------------------------- */
.pricing-section {
  background: var(--color-surface-lowest);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.pricing-card {
  position: relative;
  background: rgba(26,28,28,0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(229,226,225,0.06);
  border-top-color: rgba(229,226,225,0.14);
  border-radius: var(--radius-xl);
  padding: 3rem 2.25rem;
  display: flex;
  flex-direction: column;
  transition: all var(--t-normal) var(--ease-out);
  overflow: hidden;
}

.pricing-card > * { position: relative; z-index: 1; }

.pricing-card .card-glow {
  background: radial-gradient(circle at 80% 0%, rgba(229,226,225,0.07), transparent 65%);
}

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

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

/* Premium highlighted card */
.premium-card {
  border-color: rgba(253,186,92,0.2);
  border-top: 2px solid rgba(253,186,92,0.6);
  background: rgba(30,32,32,0.65);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 40px rgba(253,186,92,0.03);
  transform: scale(1.03);
}

.premium-card .card-glow {
  background: radial-gradient(circle at 80% 0%, rgba(253,186,92,0.12), transparent 65%);
  opacity: 0.8;
}

.premium-card:hover {
  transform: scale(1.03) translateY(-8px);
  border-top-color: var(--color-tertiary);
  box-shadow: 0 30px 70px rgba(0,0,0,0.8), 0 0 40px rgba(253,186,92,0.1);
}

.popular-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gradient-accent);
  color: var(--color-void);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  z-index: 2;
}

.pricing-header {
  margin-bottom: 2rem;
}

.pricing-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.875rem;
}

.pricing-tier {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
  margin-bottom: 0.75rem;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-silver);
  align-self: flex-start;
  margin-top: 0.6rem;
}

.price-value {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}

.price-cents {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-silver);
  align-self: flex-start;
  margin-top: 0.6rem;
}

.price-period {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-left: 0.25rem;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.pricing-features {
  margin-bottom: 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-on-surface-variant);
}

.pricing-features li.feature-dim {
  opacity: 0.4;
}

.feature-icon {
  width: 18px;
  height: 18px;
  color: var(--color-tertiary);
  flex-shrink: 0;
}

.feature-icon.dim { color: var(--color-text-muted); }

.btn-pricing {
  width: 100%;
  margin-top: auto;
}

/* Money-back guarantee */
.pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-align: center;
  padding: 1rem;
}

.pricing-guarantee svg {
  width: 18px;
  height: 18px;
  color: var(--color-tertiary);
}

/* ---------------------------------------------------------------
 * 10. WHY US SECTION
 * --------------------------------------------------------------- */
.why-section {
  background: var(--color-void);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(253,186,92,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.why-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: rgba(26,28,28,0.4);
  border: 1px solid rgba(229,226,225,0.05);
  border-top-color: rgba(229,226,225,0.1);
  border-radius: var(--radius-xl);
  transition: all var(--t-normal) var(--ease-out);
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(253,186,92,0.15);
  box-shadow: var(--shadow-md);
}

.why-number {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(229,226,225,0.04);
  line-height: 1;
  user-select: none;
}

.why-icon-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(255,183,131,0.08);
  border: 1px solid rgba(255,183,131,0.18);
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
  transition: all var(--t-normal) var(--ease-out);
}

.why-icon-wrap svg { width: 22px; height: 22px; }

.why-card:hover .why-icon-wrap {
  background: var(--gradient-btn);
  color: var(--color-white);
  border-color: transparent;
}

.why-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.why-text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--color-on-surface-variant);
}

/* Stats bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(26,28,28,0.5);
  border: 1px solid rgba(229,226,225,0.06);
  border-top-color: rgba(229,226,225,0.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.stat-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1rem;
  text-align: center;
  position: relative;
}

.stat-bar-divider {
  width: 1px;
  background: rgba(229,226,225,0.06);
  margin: 1rem 0;
}

.stat-bar-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-bar-suffix {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: 2px;
}

.stat-bar-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
  letter-spacing: 0.03em;
}

/* ---------------------------------------------------------------
 * 11. TESTIMONIALS SECTION
 * --------------------------------------------------------------- */
.testimonials-section {
  background: var(--color-surface-lowest);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  position: relative;
  background: rgba(26,28,28,0.45);
  border: 1px solid rgba(229,226,225,0.05);
  border-top-color: rgba(229,226,225,0.1);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all var(--t-normal) var(--ease-out);
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(229,226,225,0.1);
  background: rgba(26,28,28,0.65);
  box-shadow: var(--shadow-md);
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.6;
  color: var(--color-tertiary);
  opacity: 0.25;
  user-select: none;
}

.stars {
  display: flex;
  gap: 0.2rem;
}

.star-icon {
  width: 16px;
  height: 16px;
  color: var(--color-tertiary);
}

.star-icon.fill {
  fill: var(--color-tertiary);
}

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

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(229,226,225,0.06);
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient-btn);
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.author-name {
  font-weight: 700;
  color: var(--color-white);
  font-size: 0.95rem;
}

.author-location {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.author-location svg {
  width: 12px;
  height: 12px;
}

/* ---------------------------------------------------------------
 * 12. ABOUT SECTION
 * --------------------------------------------------------------- */
.about-section {
  background: var(--color-void);
  border-top: 1px solid rgba(229,226,225,0.03);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

/* Image side */
.about-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.image-border-glow {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  background: rgba(26,28,28,0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(229,226,225,0.06);
  border-top-color: rgba(229,226,225,0.15);
  box-shadow: var(--shadow-lg);
}

.image-border-glow::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: calc(var(--radius-xl) + 20px);
  background: radial-gradient(circle, rgba(253,186,92,0.07), transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.about-image {
  border-radius: var(--radius-lg);
  object-fit: cover;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* Floating badge */
.about-float-badge {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(13,14,15,0.95);
  border: 1px solid rgba(253,186,92,0.25);
  border-radius: var(--radius-md);
  padding: 0.875rem 1.25rem;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.float-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-base);
  background: var(--gradient-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  flex-shrink: 0;
}

.float-badge-icon svg { width: 20px; height: 20px; }

.float-badge-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.float-badge-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.float-badge-sub {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
}

/* Content side */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--color-on-surface-variant);
}

/* Stats row */
.stats-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

.about-cta {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* ---------------------------------------------------------------
 * 13. CONTACT SECTION
 * --------------------------------------------------------------- */
.contact-section {
  background: var(--color-surface-lowest);
}

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

/* Info sidebar */
.contact-info-card {
  background: rgba(26,28,28,0.5);
  border: 1px solid rgba(229,226,225,0.06);
  border-top-color: rgba(229,226,225,0.12);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  top: 120px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-base);
  background: rgba(255,183,131,0.08);
  border: 1px solid rgba(255,183,131,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  flex-shrink: 0;
}

.info-icon svg { width: 20px; height: 20px; }

.info-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.info-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.info-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
}

/* Form container */
.form-container {
  background: rgba(26,28,28,0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(229,226,225,0.06);
  border-top-color: rgba(229,226,225,0.14);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  position: relative;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-on-surface);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.required {
  color: var(--color-secondary);
}

/* Input wrapper with leading icon */
.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 1rem;
  width: 16px;
  height: 16px;
  color: var(--color-text-muted);
  pointer-events: none;
  z-index: 1;
  transition: color var(--t-fast) var(--ease-out);
  flex-shrink: 0;
}

.input-icon-textarea {
  top: 1rem;
  align-self: flex-start;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem 0.9rem 2.875rem;
  background: rgba(13,14,15,0.7);
  border: 1px solid rgba(229,226,225,0.1);
  border-radius: var(--radius-base);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--t-normal) var(--ease-out);
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
  padding-top: 0.9rem;
  line-height: 1.6;
}

/* Custom select arrow */
.select-wrap::after {
  content: '';
  position: absolute;
  right: 1rem;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--color-text-muted);
  pointer-events: none;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--color-void);
  color: var(--color-white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(229,226,225,0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-secondary);
  background: rgba(13,14,15,1);
  box-shadow: 0 0 0 3px rgba(255,183,131,0.12);
}

.form-group:focus-within .input-icon {
  color: var(--color-secondary);
}

/* Validation */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(255,107,107,0.12);
}

.error-msg {
  font-size: 0.78rem;
  color: var(--color-error);
  opacity: 0;
  transform: translateY(-4px);
  transition: all var(--t-fast) var(--ease-out);
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.form-group.error .error-msg {
  opacity: 1;
  transform: translateY(0);
}

.btn-submit {
  width: 100%;
  padding: 1.05rem;
  font-size: 1.05rem;
  border-radius: var(--radius-base);
  margin-top: 0.25rem;
  position: relative;
}

.btn-submit .btn-text { flex: 1; text-align: left; }

.btn-submit svg {
  width: 20px;
  height: 20px;
  transition: transform var(--t-fast) var(--ease-out);
}

.btn-submit:hover svg { transform: translateX(4px) rotate(-20deg); }

/* ---------------------------------------------------------------
 * 14. FOOTER
 * --------------------------------------------------------------- */
.footer {
  background: var(--color-void);
  border-top: 1px solid rgba(229,226,225,0.04);
  padding: 5rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(253,186,92,0.2), transparent);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 380px;
}

.footer-logo {
  font-size: 1.6rem;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.footer-heading {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-links a {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  transition: color var(--t-fast) var(--ease-out);
}

.footer-links a:hover { color: var(--color-white); }

.social-icons {
  display: flex;
  gap: 0.75rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-base);
  background: rgba(229,226,225,0.05);
  border: 1px solid rgba(229,226,225,0.08);
  color: var(--color-text-muted);
  transition: all var(--t-fast) var(--ease-out);
}

.social-icons a:hover {
  background: rgba(253,186,92,0.1);
  border-color: rgba(253,186,92,0.25);
  color: var(--color-tertiary);
  transform: translateY(-2px);
}

.social-icons svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(229,226,225,0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.footer-tagline {
  font-size: 0.8rem !important;
  letter-spacing: 0.05em;
}

/* ---------------------------------------------------------------
 * 15. TOAST NOTIFICATION SYSTEM
 * --------------------------------------------------------------- */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  z-index: 9999;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(17,17,17,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(229,226,225,0.08);
  border-top-color: rgba(253,186,92,0.4);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  min-width: 300px;
  max-width: 440px;
  animation: toastIn 0.4s var(--ease-spring) both;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.toast::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: var(--gradient-accent);
  animation: toastProgress 5s linear forwards;
}

@keyframes toastIn {
  from { transform: translateX(110%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

@keyframes toastOut {
  from { transform: translateX(0);    opacity: 1; }
  to   { transform: translateX(110%); opacity: 0; }
}

@keyframes toastProgress {
  from { width: 100%; }
  to   { width: 0%; }
}

.toast.hiding {
  animation: toastOut 0.4s var(--ease-spring) forwards;
}

.toast-icon {
  width: 22px;
  height: 22px;
  color: var(--color-tertiary);
  flex-shrink: 0;
  margin-top: 1px;
}

.toast-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.toast-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-white);
}

.toast-message {
  font-size: 0.875rem;
  color: var(--color-on-surface-variant);
  line-height: 1.45;
}

/* ================================================================
 * 16. SCROLL REVEAL ANIMATIONS
 * ================================================================ */
.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* THIS IS THE MISSING KEY! When JS sees the text, it triggers this: */
.scroll-reveal.active {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Stagger children in grids */
.services-grid .scroll-reveal:nth-child(2) { transition-delay: 0.1s; }
.services-grid .scroll-reveal:nth-child(3) { transition-delay: 0.2s; }
.services-grid .scroll-reveal:nth-child(4) { transition-delay: 0.3s; }

.pricing-grid .scroll-reveal:nth-child(2) { transition-delay: 0.1s; }
.pricing-grid .scroll-reveal:nth-child(3) { transition-delay: 0.2s; }

.why-grid .scroll-reveal:nth-child(2) { transition-delay: 0.1s; }
.why-grid .scroll-reveal:nth-child(3) { transition-delay: 0.2s; }
.why-grid .scroll-reveal:nth-child(4) { transition-delay: 0.05s; }
.why-grid .scroll-reveal:nth-child(5) { transition-delay: 0.15s; }
.why-grid .scroll-reveal:nth-child(6) { transition-delay: 0.25s; }

.testimonials-grid .scroll-reveal:nth-child(2) { transition-delay: 0.1s; }
.testimonials-grid .scroll-reveal:nth-child(3) { transition-delay: 0.2s; }
.testimonials-grid .scroll-reveal:nth-child(4) { transition-delay: 0.05s; }
.testimonials-grid .scroll-reveal:nth-child(5) { transition-delay: 0.15s; }
.testimonials-grid .scroll-reveal:nth-child(6) { transition-delay: 0.25s; }

/* ---------------------------------------------------------------
 * 17. BACK TO TOP BUTTON
 * --------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(26,28,28,0.9);
  border: 1px solid rgba(229,226,225,0.1);
  color: var(--color-silver);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  transform: translateY(12px);
  transition: all var(--t-normal) var(--ease-out);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.back-to-top svg { width: 20px; height: 20px; }

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gradient-btn);
  border-color: transparent;
  color: var(--color-white);
  transform: translateY(-2px);
}

/* ---------------------------------------------------------------
 * 18. RESPONSIVE — TABLET (≤ 1200px)
 * --------------------------------------------------------------- */
@media (max-width: 1200px) {
  :root { --section-gap: clamp(60px,8vw,100px); }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-inline: auto;
  }

  .premium-card { transform: none; }
  .premium-card:hover { transform: translateY(-8px); }

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

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .about-image-wrapper {
    order: -1;
    justify-content: center;
  }

  .about-float-badge {
    right: 2rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

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

  .stat-bar-divider:nth-child(4) { display: none; }

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

  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
  }
}

/* ---------------------------------------------------------------
 * 19. RESPONSIVE — MOBILE (≤ 768px)
 * --------------------------------------------------------------- */
@media (max-width: 768px) {
  :root { --section-gap: clamp(56px,8vw,80px); }

  /* Navbar */
  .nav-links { display: none; }
  .btn-nav   { display: none; }
  .menu-toggle { display: flex; }

  .navbar {
    width: calc(100% - 2rem);
    padding: 0.65rem 1.25rem;
  }

  /* Hero */
  .hero-section { padding: 130px 0 80px; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn { width: 100%; justify-content: center; }

  .hero-trust { gap: 1rem; }
  .trust-divider { display: none; }

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

  .platforms-strip { flex-direction: column; align-items: flex-start; }

  /* Pricing */
  .pricing-grid { max-width: 100%; }

  /* Why Us */
  .why-grid { grid-template-columns: 1fr; }

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

  .stat-bar-divider { display: none; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* About */
  .about-content { order: 1; }

  .stats-row { gap: 1.5rem; }

  .about-float-badge {
    position: static;
    align-self: flex-end;
    margin-top: -1rem;
    margin-right: 0.5rem;
  }

  /* Contact */
  .form-container { padding: 2.25rem 1.5rem; }

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

  .contact-info-card { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    flex-direction: column;
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Back to top repositioned */
  .back-to-top {
    bottom: 1.25rem;
    left: 1.25rem;
  }

  .toast-container {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
  }

  .toast { min-width: auto; max-width: 100%; }
}

/* ---------------------------------------------------------------
 * 20. ACCESSIBILITY IMPROVEMENTS
 * --------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-tertiary);
  outline-offset: 3px;
}

/* =============================================================
 * 21. SAFARI/APPLE BULLETPROOF OVERRIDE
 * ============================================================= */
@media (max-width: 1200px) {
  .scroll-reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    transition: none !important;
    animation: none !important;
  }
}