/* ============================================================
   TOSEM STEEL — Premium Industrial Theme
   Design System & Stylesheet
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================ */
:root {
  /* === COLOR SYSTEM === */
  /* Primary Brand */
  --color-navy:        #0A1628;
  --color-steel-blue:  #1B3A6B;
  --color-steel-mid:   #3D5A80;
  --color-steel-light: #E8EDF2;

  /* Accent */
  --color-orange:      #E85D04;
  --color-orange-hover:#D45403;
  --color-orange-light:rgba(232, 93, 4, 0.12);
  --color-orange-2:    #F48C06;
  --color-red:         #DC2F02;

  /* Neutrals */
  --color-white:       #FFFFFF;
  --color-off-white:   #F8F9FA;
  --color-grey-light:  #CED4DA;
  --color-grey:        #ADB5BD;
  --color-grey-dark:   #6C757D;
  --color-dark:        #343A40;
  --color-black:       #212529;

  /* Status */
  --color-green:       #198754;
  --color-green-hover: #157347;
  --color-whatsapp:    #25D366;
  --color-whatsapp-hover: #20BD5A;

  /* === TYPOGRAPHY === */
  --font-heading: 'Montserrat', 'Segoe UI', sans-serif;
  --font-body:    'Inter', 'Segoe UI', sans-serif;
  --font-accent:  'Oswald', 'Segoe UI', sans-serif;

  /* Font Sizes */
  --text-xs:   0.75rem;    /* 12px */
  --text-sm:   0.875rem;   /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-lg:   1.125rem;   /* 18px */
  --text-xl:   1.25rem;    /* 20px */
  --text-2xl:  1.5rem;     /* 24px */
  --text-3xl:  1.875rem;   /* 30px */
  --text-4xl:  2.25rem;    /* 36px */
  --text-5xl:  3rem;       /* 48px */
  --text-6xl:  3.75rem;    /* 60px */

  /* Fluid typography */
  --text-hero: clamp(2rem, 5vw, 3.5rem);
  --text-h2:    clamp(1.75rem, 4vw, 2.75rem);
  --text-h3:    clamp(1.25rem, 3vw, 1.75rem);
  --text-h4:    clamp(1.1rem, 2vw, 1.35rem);

  /* Font Weights */
  --weight-regular:  400;
  --weight-medium:   500;
  --weight-semibold: 600;
  --weight-bold:     700;
  --weight-extrabold:800;
  --weight-black:    900;

  /* Line Heights */
  --leading-tight:  1.2;
  --leading-snug:   1.375;
  --leading-normal: 1.5;
  --leading-relaxed:1.7;

  /* === SPACING (8px Grid) === */
  --space-1:   0.25rem;  /* 4px */
  --space-2:   0.5rem;   /* 8px */
  --space-3:   0.75rem;  /* 12px */
  --space-4:   1rem;     /* 16px */
  --space-5:   1.25rem;  /* 20px */
  --space-6:   1.5rem;   /* 24px */
  --space-8:   2rem;     /* 32px */
  --space-10:  2.5rem;   /* 40px */
  --space-12:  3rem;     /* 48px */
  --space-16:  4rem;     /* 64px */
  --space-20:  5rem;     /* 80px */
  --space-24:  6rem;     /* 96px */
  --space-32:  8rem;     /* 128px */

  /* === BORDERS & RADII === */
  --radius-sm:   4px;
  --radius-md:   6px;
  --radius-lg:   8px;
  --radius-xl:   12px;
  --radius-2xl:  16px;
  --radius-full: 9999px;

  /* === SHADOWS === */
  --shadow-sm:   0 1px 3px rgba(10, 22, 40, 0.08);
  --shadow-md:   0 2px 12px rgba(10, 22, 40, 0.10);
  --shadow-lg:   0 4px 20px rgba(10, 22, 40, 0.12);
  --shadow-xl:   0 8px 30px rgba(10, 22, 40, 0.14);
  --shadow-2xl:  0 16px 48px rgba(10, 22, 40, 0.18);
  --shadow-card: 0 2px 12px rgba(10, 22, 40, 0.06);
  --shadow-card-hover: 0 12px 40px rgba(10, 22, 40, 0.15);

  /* === TRANSITIONS === */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
  --transition-slow:   400ms ease;
  --transition-spring: 300ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* === Z-INDEX === */
  --z-base:    1;
  --z-dropdown: 100;
  --z-sticky:  200;
  --z-overlay: 300;
  --z-modal:   400;
  --z-toast:   500;
  --z-fab:     600;

  /* === LAYOUT === */
  --container-max:    1200px;
  --container-wide:   1140px;
  --container-narrow: 960px;
  --header-height:    72px;
  --gutter:           24px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-regular);
  line-height: var(--leading-relaxed);
  color: var(--color-dark);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Text selection */
::selection {
  background-color: var(--color-orange);
  color: var(--color-white);
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--color-orange);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-steel-light);
}
::-webkit-scrollbar-thumb {
  background: var(--color-steel-mid);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-steel-blue);
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  color: var(--color-navy);
  margin-bottom: var(--space-4);
}

h1 { font-size: var(--text-hero); font-weight: var(--weight-black); letter-spacing: -0.02em; }
h2 { font-size: var(--text-h2);  font-weight: var(--weight-extrabold); letter-spacing: -0.015em; }
h3 { font-size: var(--text-h3);  font-weight: var(--weight-bold); }
h4 { font-size: var(--text-h4);  font-weight: var(--weight-bold); }

p { margin-bottom: var(--space-4); }
p:last-child { margin-bottom: 0; }

a {
  color: var(--color-orange);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--color-orange-hover); }

strong, b { font-weight: var(--weight-semibold); }

.text-accent { color: var(--color-orange); }
.text-muted  { color: var(--color-grey-dark); }
.text-white  { color: var(--color-white); }
.text-navy   { color: var(--color-navy); }
.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; letter-spacing: 0.05em; }

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.container--wide { max-width: var(--container-wide); }
.container--narrow { max-width: var(--container-narrow); }

.section {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.section--lg {
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
}

.section--xl {
  padding-top: var(--space-24);
  padding-bottom: var(--space-24);
}

.section--dark {
  background-color: var(--color-navy);
  color: var(--color-white);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--color-white); }

.section--grey { background-color: var(--color-off-white); }
.section--steel { background-color: var(--color-steel-blue); color: var(--color-white); }
.section--steel h1, .section--steel h2,
.section--steel h3, .section--steel h4 { color: var(--color-white); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-12);
}

.section-header__label {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-orange);
  margin-bottom: var(--space-3);
}

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

.section-header__subtitle {
  font-size: var(--text-lg);
  color: var(--color-grey-dark);
  line-height: var(--leading-relaxed);
}

.section--dark .section-header__subtitle,
.section--steel .section-header__subtitle {
  color: rgba(255,255,255,0.75);
}

/* Grid */
.grid {
  display: grid;
  gap: var(--space-6);
}

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

/* Flex */
.flex { display: flex; }
.flex--center { align-items: center; justify-content: center; }
.flex--between { align-items: center; justify-content: space-between; }
.flex--gap-sm { gap: var(--space-4); }
.flex--gap-md { gap: var(--space-6); }
.flex--gap-lg { gap: var(--space-8); }

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  min-height: 52px;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  user-select: none;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Primary */
.btn--primary {
  background-color: var(--color-orange);
  color: var(--color-white);
  border-color: var(--color-orange);
  box-shadow: 0 4px 16px rgba(232, 93, 4, 0.3);
}
.btn--primary:hover {
  background-color: var(--color-orange-hover);
  border-color: var(--color-orange-hover);
  box-shadow: 0 6px 24px rgba(232, 93, 4, 0.4);
  color: var(--color-white);
}

/* Secondary */
.btn--secondary {
  background-color: transparent;
  color: var(--color-orange);
  border-color: var(--color-orange);
}
.btn--secondary:hover {
  background-color: var(--color-orange);
  color: var(--color-white);
}

/* Ghost */
.btn--ghost {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: var(--color-white);
  color: var(--color-white);
}

/* White */
.btn--white {
  background-color: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
}
.btn--white:hover {
  background-color: var(--color-off-white);
  color: var(--color-navy);
}

/* Phone */
.btn--phone {
  background-color: var(--color-green);
  color: var(--color-white);
  border-color: var(--color-green);
  font-size: var(--text-base);
  gap: var(--space-3);
}
.btn--phone:hover {
  background-color: var(--color-green-hover);
  border-color: var(--color-green-hover);
  color: var(--color-white);
}

/* WhatsApp */
.btn--whatsapp {
  background-color: var(--color-whatsapp);
  color: var(--color-white);
  border-color: var(--color-whatsapp);
  font-size: var(--text-base);
  gap: var(--space-3);
}
.btn--whatsapp:hover {
  background-color: var(--color-whatsapp-hover);
  border-color: var(--color-whatsapp-hover);
  color: var(--color-white);
}

/* Small */
.btn--sm {
  padding: 10px 20px;
  min-height: 42px;
  font-size: var(--text-xs);
}

/* Large */
.btn--lg {
  padding: 18px 40px;
  min-height: 60px;
  font-size: var(--text-base);
}

/* Icon */
.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ============================================================
   6. CARDS
   ============================================================ */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-steel-light);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(232, 93, 4, 0.2);
}

.card__icon {
  width: 56px;
  height: 56px;
  background: var(--color-orange-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--color-orange);
  transition: all var(--transition-base);
}

.card:hover .card__icon {
  background: var(--color-orange);
  color: var(--color-white);
}

.card__icon svg {
  width: 28px;
  height: 28px;
}

.card__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--color-navy);
  margin-bottom: var(--space-3);
}

.card__text {
  font-size: var(--text-sm);
  color: var(--color-grey-dark);
  line-height: var(--leading-relaxed);
}

/* Product Card */
.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-steel-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-card);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(232, 93, 4, 0.2);
}

.product-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--color-steel-light), var(--color-steel-mid));
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__image svg {
  width: 64px;
  height: 64px;
  color: var(--color-steel-blue);
  opacity: 0.4;
}

.product-card__body {
  padding: var(--space-6);
}

.product-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.product-card__desc {
  font-size: var(--text-sm);
  color: var(--color-grey-dark);
  margin-bottom: var(--space-4);
  line-height: var(--leading-relaxed);
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: gap var(--transition-fast);
}

.product-card:hover .product-card__link { gap: var(--space-3); }
.product-card__link svg { width: 16px; height: 16px; }

/* ============================================================
   7. HEADER / NAVIGATION
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition-base);
}

.header.scrolled {
  background: rgba(10, 22, 40, 0.98);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}

.header__logo-icon {
  width: 42px;
  height: 42px;
  background: var(--color-orange);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header__logo-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-white);
}

.header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.header__logo-name {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--weight-extrabold);
  color: var(--color-white);
  letter-spacing: -0.01em;
}

.header__logo-tagline {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Desktop Nav */
.nav {
  display: none;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  list-style: none;
}

.nav__item { position: relative; }

.nav__link {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.nav__link:hover, .nav__link.active {
  color: var(--color-white);
  background: rgba(255,255,255,0.08);
}

.nav__link--dropdown svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}
.nav__item:hover .nav__link--dropdown svg {
  transform: rotate(180deg);
}

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--color-white);
  border: 1px solid var(--color-steel-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: var(--space-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition-base);
  pointer-events: none;
  z-index: var(--z-dropdown);
}

.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav__dropdown-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-dark);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav__dropdown-link:hover {
  background: var(--color-orange-light);
  color: var(--color-orange);
}

.nav__dropdown-link svg {
  width: 18px;
  height: 18px;
  color: var(--color-steel-mid);
}

/* Header CTA */
.header__cta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Mobile Menu Toggle */
.header__menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  border-radius: var(--radius-md);
}

.header__menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.header__menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-navy);
  z-index: var(--z-overlay);
  padding: var(--space-6) var(--gutter);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav__list { list-style: none; }

.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) 0;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition-fast);
}

.mobile-nav__link:hover, .mobile-nav__link.active {
  color: var(--color-orange);
}

.mobile-nav__sublist {
  list-style: none;
  padding: var(--space-3) 0 var(--space-3) var(--space-4);
  display: none;
}

.mobile-nav__sublist.active { display: block; }

.mobile-nav__sublink {
  display: block;
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.mobile-nav__sublink:hover { color: var(--color-orange); }

.mobile-nav__cta {
  margin-top: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* ============================================================
   8. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-navy);
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.95) 0%,
    rgba(27, 58, 107, 0.7) 50%,
    rgba(10, 22, 40, 0.85) 100%
  );
}

.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(var(--color-orange) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-orange) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
  padding: var(--space-20) 0;
}

.hero__text { max-width: 680px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(232, 93, 4, 0.15);
  border: 1px solid rgba(232, 93, 4, 0.3);
  color: var(--color-orange-2);
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
}

.hero__badge svg { width: 14px; height: 14px; }

.hero__title {
  font-size: var(--text-hero);
  font-weight: var(--weight-black);
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
}

.hero__title span { color: var(--color-orange); }

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
  max-width: 560px;
}

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.hero__highlight {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
}

.hero__highlight svg {
  width: 16px;
  height: 16px;
  color: var(--color-green);
  flex-shrink: 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero__stat-value {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--weight-black);
  color: var(--color-white);
  line-height: 1;
}

.hero__stat-value span { color: var(--color-orange); }

.hero__stat-label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  margin-top: var(--space-1);
}

/* Hero Visual */
.hero__visual {
  display: none;
  position: relative;
}

.hero__visual-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  backdrop-filter: blur(8px);
}

.hero__visual-icon {
  width: 100%;
  height: 240px;
  background: linear-gradient(135deg, var(--color-orange-light), rgba(27, 58, 107, 0.4));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
}

.hero__visual-icon svg {
  width: 80px;
  height: 80px;
  color: var(--color-orange);
  opacity: 0.6;
}

.hero__visual-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.hero__visual-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
}

.hero__visual-feature svg {
  width: 18px;
  height: 18px;
  color: var(--color-orange);
  flex-shrink: 0;
}

.hero__visual-feature span {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   9. TRUST BADGES
   ============================================================ */
.trust-badges {
  padding: var(--space-8) 0;
  background: var(--color-off-white);
  border-bottom: 1px solid var(--color-steel-light);
}

.trust-badges__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-steel-light);
  transition: all var(--transition-base);
}

.trust-badge:hover {
  border-color: var(--color-orange);
  box-shadow: var(--shadow-md);
}

.trust-badge__icon {
  width: 40px;
  height: 40px;
  background: var(--color-orange-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-badge__icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-orange);
}

.trust-badge__text {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-navy);
  line-height: 1.3;
}

/* ============================================================
   10. ABOUT SECTION
   ============================================================ */
.about-section {
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image__main {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--color-steel-blue), var(--color-navy));
  border-radius: var(--radius-2xl);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image__main svg {
  width: 80px;
  height: 80px;
  color: rgba(255,255,255,0.2);
}

.about-image__badge {
  position: absolute;
  bottom: -16px;
  right: 24px;
  background: var(--color-orange);
  color: var(--color-white);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  text-align: center;
}

.about-image__badge-number {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--weight-black);
  line-height: 1;
}

.about-image__badge-text {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

.about-content { max-width: 540px; }

.about-content__label {
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-orange);
  margin-bottom: var(--space-3);
}

.about-content__title {
  font-size: var(--text-h2);
  margin-bottom: var(--space-4);
}

.about-content__text {
  font-size: var(--text-lg);
  color: var(--color-grey-dark);
  margin-bottom: var(--space-6);
  line-height: var(--leading-relaxed);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.about-feature__icon {
  width: 24px;
  height: 24px;
  background: var(--color-green);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feature__icon svg {
  width: 12px;
  height: 12px;
  color: var(--color-white);
}

.about-feature__text {
  font-size: var(--text-sm);
  color: var(--color-dark);
  line-height: var(--leading-snug);
}

/* ============================================================
   11. PRODUCTS SECTION
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

/* ============================================================
   12. WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

/* ============================================================
   13. COUNTERS SECTION
   ============================================================ */
.counters-section {
  padding: var(--space-16) 0;
  background: linear-gradient(135deg, var(--color-navy), var(--color-steel-blue));
  position: relative;
  overflow: hidden;
}

.counters-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    linear-gradient(var(--color-orange) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-orange) 1px, transparent 1px);
  background-size: 60px 60px;
}

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

.counter-item {
  text-align: center;
  padding: var(--space-6);
}

.counter-item__icon {
  width: 52px;
  height: 52px;
  background: var(--color-orange-light);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
}

.counter-item__icon svg {
  width: 26px;
  height: 26px;
  color: var(--color-orange);
}

.counter-item__value {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--weight-black);
  color: var(--color-white);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.counter-item__value .counter-suffix { color: var(--color-orange); }

.counter-item__label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   14. PRODUCT SLIDER / SHOWCASE
   ============================================================ */
.showcase-slider {
  display: flex;
  gap: var(--space-6);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: var(--space-4);
  -webkit-overflow-scrolling: touch;
}

.showcase-slider::-webkit-scrollbar { display: none; }

.showcase-slide {
  flex: 0 0 300px;
  scroll-snap-align: start;
}

/* ============================================================
   15. QUALITY SECTION
   ============================================================ */
.quality-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

.quality-image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--color-steel-blue), var(--color-navy));
  border-radius: var(--radius-2xl);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quality-image svg {
  width: 64px;
  height: 64px;
  color: rgba(255,255,255,0.2);
}

.quality-content { max-width: 520px; }

.quality-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.quality-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(232, 93, 4, 0.1);
  border: 1px solid rgba(232, 93, 4, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-orange);
}

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

/* ============================================================
   16. GALLERY SECTION
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--color-steel-light), var(--color-steel-mid));
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item svg {
  width: 40px;
  height: 40px;
  color: rgba(255,255,255,0.3);
  transition: transform var(--transition-base);
}

.gallery-item:hover svg {
  transform: scale(1.1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0);
  transition: background var(--transition-base);
}

.gallery-item:hover::after {
  background: rgba(10, 22, 40, 0.3);
}

/* ============================================================
   17. ENQUIRY SECTION
   ============================================================ */
.enquiry-section {
  position: relative;
  padding: var(--space-20) 0;
  background: var(--color-navy);
  overflow: hidden;
}

.enquiry-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(var(--color-orange) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-orange) 1px, transparent 1px);
  background-size: 40px 40px;
}

.enquiry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
  position: relative;
}

.enquiry-content { max-width: 480px; }

.enquiry-content__title {
  font-size: var(--text-h2);
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.enquiry-content__title span { color: var(--color-orange); }

.enquiry-content__text {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-6);
  line-height: var(--leading-relaxed);
}

.enquiry-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.enquiry-option {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
}

.enquiry-option svg {
  width: 20px;
  height: 20px;
  color: var(--color-orange);
  flex-shrink: 0;
}

.enquiry-option span {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
}

/* Enquiry Form */
.enquiry-form-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-2xl);
}

.enquiry-form-wrapper__title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.enquiry-form-wrapper__subtitle {
  font-size: var(--text-sm);
  color: var(--color-grey-dark);
  margin-bottom: var(--space-6);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.form-row { display: grid; gap: var(--space-4); }
.form-row--2 { grid-template-columns: 1fr 1fr; }
.form-row--3 { grid-template-columns: 1fr 1fr 1fr; }

.form-group { display: flex; flex-direction: column; gap: var(--space-2); }

.form-label {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-dark);
}

.form-label span { color: var(--color-orange); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-dark);
  background: var(--color-off-white);
  border: 1px solid var(--color-steel-light);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  background: var(--color-white);
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-grey);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236C757D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
  cursor: pointer;
}

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

/* ============================================================
   18. MAP & CONTACT SECTION
   ============================================================ */
.contact-section { padding: var(--space-20) 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

.contact-map {
  width: 100%;
  height: 400px;
  background: var(--color-steel-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-map svg {
  width: 64px;
  height: 64px;
  color: var(--color-steel-mid);
  opacity: 0.3;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--color-off-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-steel-light);
  transition: all var(--transition-base);
}

.contact-card:hover {
  border-color: var(--color-orange);
  box-shadow: var(--shadow-md);
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  background: var(--color-orange);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-white);
}

.contact-card__label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-grey-dark);
  margin-bottom: var(--space-1);
}

.contact-card__value {
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--color-navy);
  line-height: var(--leading-snug);
}

.contact-card__value a {
  color: var(--color-navy);
  text-decoration: none;
}
.contact-card__value a:hover { color: var(--color-orange); }

/* ============================================================
   19. FOOTER
   ============================================================ */
.footer {
  background: var(--color-navy);
  color: rgba(255,255,255,0.7);
  padding-top: var(--space-16);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer-brand__logo-icon {
  width: 44px;
  height: 44px;
  background: var(--color-orange);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand__logo-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-white);
}

.footer-brand__name {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-extrabold);
  color: var(--color-white);
}

.footer-brand__text {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social__link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition-fast);
}

.footer-social__link:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: var(--color-white);
}

.footer-social__link svg { width: 18px; height: 18px; }

.footer__column-title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  color: var(--color-white);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer__links { list-style: none; }

.footer__link {
  display: block;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: var(--space-2) 0;
  transition: color var(--transition-fast);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.footer__link:hover { color: var(--color-orange); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-item a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer__contact-item a:hover { color: var(--color-orange); }

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
  padding: var(--space-6) 0;
  text-align: center;
}

.footer__copyright {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-6);
}

.footer__bottom-links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer__bottom-links a:hover { color: var(--color-orange); }

/* ============================================================
   20. FLOATING BUTTONS
   ============================================================ */
.floating-buttons {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  z-index: var(--z-fab);
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-spring);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.floating-btn:hover {
  transform: scale(1.08);
}

.floating-btn svg { width: 26px; height: 26px; }

.floating-btn--whatsapp {
  background: var(--color-whatsapp);
  color: var(--color-white);
}

.floating-btn--whatsapp:hover {
  background: var(--color-whatsapp-hover);
  color: var(--color-white);
}

.floating-btn--phone {
  background: var(--color-green);
  color: var(--color-white);
}

.floating-btn--phone:hover {
  background: var(--color-green-hover);
  color: var(--color-white);
}

/* ============================================================
   21. ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out both;
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out both;
}

/* Intersection Observer Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ============================================================
   22. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ---- Tablet (768px+) ---- */
@media (min-width: 768px) {
  :root {
    --gutter: 32px;
    --header-height: 76px;
  }

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

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

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

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
  }

  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }

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

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

  .counters-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

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

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

  .footer__top {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }

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

  .showcase-slide {
    flex: 0 0 320px;
  }
}

/* ---- Desktop (1024px+) ---- */
@media (min-width: 1024px) {
  :root {
    --gutter: 40px;
    --header-height: 80px;
  }

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

  .nav { display: block; }

  .header__menu-toggle { display: none; }

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

  .hero__visual { display: block; }

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

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

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

  .trust-badges__grid {
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-3);
  }

  .counter-item__value { font-size: var(--text-5xl); }

  .showcase-slide {
    flex: 0 0 340px;
  }
}

/* ---- Large Desktop (1280px+) ---- */
@media (min-width: 1280px) {
  .hero__content {
    gap: var(--space-16);
  }

  .enquiry-form-wrapper {
    padding: var(--space-10);
  }

  .showcase-slide {
    flex: 0 0 360px;
  }
}

/* ---- Ultra-wide (1440px+) ---- */
@media (min-width: 1440px) {
  :root {
    --gutter: 48px;
  }

  .hero__title { font-size: 3.75rem; }
}

/* ============================================================
   23. PRINT STYLES
   ============================================================ */
@media print {
  .header, .footer, .floating-buttons,
  .hero__visual, .enquiry-section {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: var(--space-8) 0;
  }

  body { font-size: 12pt; }
}


/* Keep anchor targets visible below sticky header */
[id] { scroll-margin-top: 110px; }
