/* ============================================================
   Vetrovi Systems LLP — Main Stylesheet
   Brand: Ink #232E36 | Amber #E0922E | Steel #2E5E8C
   Fonts: Archivo (display) + Inter (body) via Google Fonts
   ============================================================ */

/* ─── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Manrope:wght@700;800&display=swap');

/* ─── CSS Custom Properties (Brand Tokens) ─────────────────── */
:root {
  /* Colors */
  --ink:         #232E36;
  --ink-90:      rgba(35, 46, 54, 0.9);
  --ink-80:      rgba(35, 46, 54, 0.8);
  --ink-60:      rgba(35, 46, 54, 0.6);
  --ink-30:      rgba(35, 46, 54, 0.3);
  --ink-10:      rgba(35, 46, 54, 0.08);
  --amber:       #E0922E;
  --amber-light: #F0A848;
  --amber-dark:  #C07820;
  --amber-glow:  rgba(224, 146, 46, 0.25);
  --steel:       #2E5E8C;
  --steel-light: #4A7EAF;
  --aluminium:   #AEB7BE;
  --light:       #F4F6F8;
  --white:       #FFFFFF;
  --black:       #0D1117;

  /* Typography */
  --font-display: 'Archivo', 'Manrope', Arial, sans-serif;
  --font-body:    'Inter', Arial, sans-serif;

  /* Nav */
  --nav-height: 72px;

  /* Transitions */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --duration:    300ms;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(35,46,54,0.06), 0 1px 2px rgba(35,46,54,0.04);
  --shadow-md:   0 4px 16px rgba(35,46,54,0.10), 0 2px 6px rgba(35,46,54,0.05);
  --shadow-lg:   0 10px 40px rgba(35,46,54,0.14), 0 4px 12px rgba(35,46,54,0.07);
  --shadow-xl:   0 20px 60px rgba(35,46,54,0.18);
  --shadow-amber:0 8px 32px rgba(224,146,46,0.35);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none; /* Custom cursor */
}

body.loading { overflow: hidden; }

img, video { max-width: 100%; height: auto; display: block; }
svg { display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ─── Custom Cursor ─────────────────────────────────────────── */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s var(--ease-out), height 0.2s var(--ease-out), background 0.2s;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--amber);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out), border-color 0.2s, opacity 0.2s;
  opacity: 0.7;
}

body.cursor-hover .cursor-dot  { width: 6px; height: 6px; background: var(--amber); }
body.cursor-hover .cursor-ring { width: 56px; height: 56px; opacity: 1; border-color: var(--amber); }
body.cursor-click .cursor-dot  { width: 12px; height: 12px; }
body.cursor-click .cursor-ring { width: 28px; height: 28px; }

@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
}

/* ─── Loading Screen ────────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-logo {
  width: 80px;
  opacity: 0;
  transform: scale(0.8);
}

.loader-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.35em;
  color: var(--white);
  margin-top: 1.5rem;
  text-transform: uppercase;
  opacity: 0;
}

.loader-tagline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--aluminium);
  margin-top: 0.5rem;
  text-transform: uppercase;
  opacity: 0;
}

.loader-bar {
  width: 200px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-top: 2.5rem;
  position: relative;
  overflow: hidden;
}

.loader-bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--amber);
  transition: width 1.8s var(--ease-out);
}

/* ─── Custom Scrollbar ──────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--aluminium); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--ink); }

/* ─── Container ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.container-sm { max-width: 800px; margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 3rem); }
.container-md { max-width: 1024px; margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 3rem); }

/* ─── Section Spacing ───────────────────────────────────────── */
.section { padding-block: clamp(4rem, 9vw, 7rem); }
.section-sm { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section-lg { padding-block: clamp(5rem, 11vw, 9rem); }

/* ─── Typography ────────────────────────────────────────────── */
.label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-block;
  margin-bottom: 1rem;
}

.label-steel { color: var(--steel); }
.label-aluminium { color: var(--aluminium); }

h1, .h1 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  color: inherit;
}

h2, .h2 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: inherit;
}

h3, .h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: inherit;
}

h4, .h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.3;
  color: inherit;
}

h5, h6 { font-family: var(--font-display); font-weight: 600; }

.body-lg { font-size: clamp(1rem, 2vw, 1.2rem); line-height: 1.7; }
.body-md { font-size: 1rem; line-height: 1.65; }
.body-sm { font-size: 0.9rem; line-height: 1.6; }
.body-xs { font-size: 0.8rem; line-height: 1.5; }

.text-ink       { color: var(--ink); }
.text-amber     { color: var(--amber); }
.text-steel     { color: var(--steel); }
.text-aluminium { color: var(--aluminium); }
.text-white     { color: var(--white); }
.text-muted     { color: var(--ink-60); }

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

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-out);
}
.btn:hover::before { transform: translateX(0); }

/* Primary — Signal Amber (CTA only) */
.btn-primary {
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 4px 20px rgba(224,146,46,0.3);
}
.btn-primary:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(224,146,46,0.45);
}
.btn-primary:active { transform: translateY(0); }

/* Secondary — Outlined */
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

.btn-secondary-ink {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(35,46,54,0.3);
}
.btn-secondary-ink:hover {
  background: var(--ink-10);
  border-color: var(--ink);
  transform: translateY(-2px);
}

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--amber);
  border: 1.5px solid var(--amber);
}
.btn-ghost:hover { background: var(--amber); color: var(--ink); transform: translateY(-2px); }

/* Sizes */
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.75rem; }
.btn-lg { padding: 1.1rem 2.75rem; font-size: 0.85rem; }
.btn-xl { padding: 1.3rem 3.5rem; font-size: 0.9rem; letter-spacing: 0.1em; }

/* Icon button */
.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.btn-icon .icon-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s var(--ease-out);
}
.btn-icon:hover .icon-arrow { transform: translateX(4px); }

/* ─── Navigation ────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  height: var(--nav-height);
  background: var(--ink);
  transition: transform 0.4s var(--ease-out), background 0.3s;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

#nav.nav-hidden { transform: translateY(-100%); }
#nav.nav-scrolled { background: rgba(35,46,54,0.97); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }

.nav-inner {
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  height: 36px;
  flex-shrink: 0;
}
.nav-logo img, .nav-logo svg { height: 36px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--amber);
  transition: width 0.3s var(--ease-out);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--amber);
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--amber-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(224,146,46,0.4); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  transform-origin: left;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(40deg) scaleX(0.9); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-40deg) scaleX(0.9); }

/* Mobile nav */
.nav-mobile {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--ink);
  z-index: 1999;
  display: flex;
  flex-direction: column;
  padding: 2rem clamp(1.25rem, 4vw, 3rem);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  overflow-y: auto;
}
.nav-mobile.open { transform: translateX(0); }

.nav-mobile-link {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 800;
  color: rgba(255,255,255,0.6);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-mobile-link:hover { color: var(--white); }
.nav-mobile-link:hover .arrow { transform: translateX(8px); }
.nav-mobile-link .arrow { font-size: 1.2rem; transition: transform 0.3s var(--ease-out); color: var(--amber); }

.nav-mobile-cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 1023px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-toggle { display: flex; }
}

/* ─── Hero Section ──────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--ink);
  overflow: hidden;
}

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

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}

/* ─── Hero Banner Slider ────────────────────────────────────── */
.swiper-hero-banner {
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.swiper-hero-banner .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hero-bg-slide {
  transform: scale(1);
  transition: transform 7s ease-out;
}

.swiper-slide-active .hero-bg-slide {
  transform: scale(1.08);
}

.swiper-hero-pagination {
  bottom: 2.5rem !important;
  left: clamp(1.25rem, 4vw, 3rem) !important;
  width: auto !important;
  z-index: 20 !important;
  display: flex;
  gap: 0.6rem;
}

.swiper-hero-pagination .swiper-pagination-bullet {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
  transition: all 0.4s ease;
  margin: 0 !important;
}

.swiper-hero-pagination .swiper-pagination-bullet-active {
  width: 56px;
  background: #FFA726;
  box-shadow: 0 0 14px rgba(255, 167, 38, 0.7);
}

.swiper-hero-next, .swiper-hero-prev {
  color: #FFA726 !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50%;
  background: rgba(35, 46, 54, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  z-index: 20 !important;
}

.swiper-hero-next:hover, .swiper-hero-prev:hover {
  background: rgba(224, 146, 46, 0.95);
  color: var(--ink) !important;
  transform: scale(1.1);
}

.swiper-hero-next::after, .swiper-hero-prev::after {
  font-size: 1rem !important;
  font-weight: 800;
}

@media (max-width: 767px) {
  .swiper-hero-next, .swiper-hero-prev { display: none !important; }
  .swiper-hero-pagination { bottom: 1.5rem !important; }
}

.hero-bg-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(35,46,54,0.92) 0%,
    rgba(35,46,54,0.75) 40%,
    rgba(35,46,54,0.55) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  padding-top: calc(var(--nav-height) + clamp(4rem, 10vh, 7rem));
  padding-bottom: 6rem;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #FFA726; /* Brighter high-contrast amber for readability */
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: #FFA726;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 6.5vw, 6.5rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 14ch;
  overflow: hidden;
}

.hero-headline .word { display: inline-block; overflow: hidden; }
.hero-headline .char { display: inline-block; }

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 55ch;
  margin-top: 1.75rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero-scroll {
  position: absolute;
  bottom: 0.5rem; /* Lowered from 2rem to prevent overlap with stats */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  cursor: pointer;
}

@media (max-width: 1023px) {
  .hero-scroll {
    display: none !important; /* Hide on smaller viewports where stats wrap and stack */
  }
}

.hero-scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(224,146,46,0.8), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(2rem, 6vw, 4.5rem);
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  transform: translateY(20px);
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
  letter-spacing: 0.05em;
}

/* ─── Section Headers ───────────────────────────────────────── */
.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-header.centered { text-align: center; }

.section-header h2 { margin-top: 0.5rem; }

.section-header p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  color: var(--ink-60);
  max-width: 60ch;
  margin-top: 1rem;
}
.section-header.centered p { margin-inline: auto; }

/* ─── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid rgba(35, 46, 54, 0.06);
  border-radius: 12px;
  padding: 2.25rem 2rem;
  box-shadow: 0 4px 20px rgba(35, 46, 54, 0.015);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(35, 46, 54, 0.08);
  border-color: rgba(224, 146, 46, 0.25);
}

.card-ink {
  background: var(--ink);
  border-color: rgba(255,255,255,0.08);
  color: var(--white);
}

.card-light { background: var(--light); border-color: transparent; }

/* 3D Tilt Card */
.card-tilt {
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* ─── Pillars / Feature Grid ────────────────────────────────── */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  background: transparent;
  border: none;
  overflow: visible;
}

.pillar {
  background: var(--white);
  border: 1px solid rgba(35, 46, 54, 0.08);
  border-radius: 12px;
  padding: clamp(2rem, 3vw, 3.5rem) 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(35, 46, 54, 0.02);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s;
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(35, 46, 54, 0.07);
  border-color: rgba(224, 146, 46, 0.25);
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.pillar:hover::before { transform: scaleX(1); }

.pillar-num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(35, 46, 54, 0.2);
  letter-spacing: 0.12em;
  transition: color 0.3s;
}
.pillar:hover .pillar-num {
  color: var(--amber);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  color: var(--amber);
  transition: transform 0.3s var(--ease-out);
}
.pillar:hover .pillar-icon { transform: scale(1.08); }

.pillar-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.pillar-text { font-size: 0.9rem; line-height: 1.65; color: var(--ink-60); }

@media (max-width: 767px) {
  .pillar-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ─── Product Cards ─────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.product-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 4/5;
  cursor: pointer;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.product-card:hover .product-card-img { transform: scale(1.06); }

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(35,46,54,0.95) 0%, rgba(35,46,54,0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  transition: background 0.3s;
}

.product-card-series {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}

.product-card-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--white);
  line-height: 1.2;
}

.product-card-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.5rem;
  transform: translateY(0);
  opacity: 0.85;
  transition: all 0.3s var(--ease-out);
}
.product-card:hover .product-card-desc { opacity: 1; color: var(--white); }

.product-card-action {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  transform: translateY(0);
  opacity: 0.9;
  transition: all 0.3s var(--ease-out);
}
.product-card:hover .product-card-action { opacity: 1; color: var(--white); }

/* ─── Stats / Counters ──────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(174,183,190,0.2);
}

.stat-item {
  background: var(--ink);
  padding: clamp(2rem, 4vw, 3.5rem) 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: var(--amber);
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-suffix { color: var(--amber); }

.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--aluminium);
  margin-top: 0.75rem;
}

@media (max-width: 767px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── How It Works / Steps ──────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 1px;
  background: linear-gradient(to right, var(--amber), var(--steel), var(--amber));
  z-index: 0;
}

.step {
  padding: 0 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--amber);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: background 0.3s, color 0.3s;
}
.step:hover .step-number { background: var(--amber); color: var(--ink); }

.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.step-desc { font-size: 0.875rem; color: var(--ink-60); line-height: 1.65; }

@media (max-width: 767px) {
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .steps-grid::before { display: none; }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ─── Testimonials ──────────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(174,183,190,0.25);
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 2rem;
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--amber);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}
.star { width: 16px; height: 16px; color: var(--amber); fill: var(--amber); }

.testimonial-text { font-size: 1rem; line-height: 1.7; color: var(--ink); font-style: italic; margin-bottom: 1.5rem; }

.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: var(--light); }
.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-company { font-size: 0.8rem; color: var(--ink-60); }

/* ─── FAQs ──────────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid rgba(174,183,190,0.3);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--amber); }

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border: 1.5px solid var(--aluminium);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out);
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--ink);
  border-radius: 1px;
  transition: all 0.3s var(--ease-out);
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 10px; }

.faq-item.open .faq-icon { border-color: var(--amber); background: var(--amber); }
.faq-item.open .faq-icon::before { background: var(--ink); }
.faq-item.open .faq-icon::after  { transform: rotate(90deg); opacity: 0; background: var(--ink); }
.faq-item.open .faq-question { color: var(--amber); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s;
}
.faq-answer-inner {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ink-60);
}

/* ─── Forms ─────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid rgba(174,183,190,0.4);
  border-radius: 6px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
  appearance: none;
}
.form-control:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(224,146,46,0.12);
}
.form-control::placeholder { color: var(--aluminium); }
.form-control.error { border-color: #E0392E; }

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

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23AEB7BE' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-error { font-size: 0.8rem; color: #E0392E; margin-top: 0.35rem; }

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 600px) { .form-grid-2 { grid-template-columns: 1fr; } }

/* ─── Dark Form Variant (on Ink backgrounds) ────────────────── */
.form-dark .form-control {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: var(--white);
}
.form-dark .form-control:focus {
  border-color: var(--amber);
  background: rgba(255,255,255,0.09);
}
.form-dark .form-control::placeholder { color: rgba(255,255,255,0.3); }
.form-dark .form-label { color: rgba(255,255,255,0.5); }

/* ─── Alert / Flash Messages ────────────────────────────────── */
.alert {
  padding: 1rem 1.25rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.alert-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: #16a34a; }
.alert-error   { background: rgba(224,57,46,0.1); border: 1px solid rgba(224,57,46,0.3); color: #dc2626; }
.alert-warning { background: rgba(224,146,46,0.1); border: 1px solid rgba(224,146,46,0.3); color: #b45309; }
.alert-info    { background: rgba(46,94,140,0.1); border: 1px solid rgba(46,94,140,0.3); color: #1d4ed8; }

/* ─── WhatsApp Floating Button ──────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 800;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
  animation: waPulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
  animation: none;
}
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.15); }
}

/* ─── Back to Top ───────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  z-index: 800;
  width: 40px;
  height: 40px;
  background: var(--ink);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--amber); border-color: var(--amber); color: var(--ink); }

/* ─── Swiper Overrides ──────────────────────────────────────── */
.swiper-pagination-bullet { background: var(--aluminium); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--amber); transform: scale(1.3); }
.swiper-button-next::after, .swiper-button-prev::after { color: var(--amber); font-size: 1.2rem; }

/* ─── Reveal Animations (initial state for GSAP) ────────────── */
.reveal-up, .reveal-left, .reveal-right, .reveal-scale, .reveal-fade {
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
html.js-reveal .reveal-up    { opacity: 0; transform: translateY(40px); }
html.js-reveal .reveal-left  { opacity: 0; transform: translateX(-40px); }
html.js-reveal .reveal-right { opacity: 0; transform: translateX(40px); }
html.js-reveal .reveal-scale { opacity: 0; transform: scale(0.95); }
html.js-reveal .reveal-fade  { opacity: 0; }

/* ─── Footer ────────────────────────────────────────────────── */
#footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding-top: clamp(4rem, 8vw, 6rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo { height: 32px; width: auto; margin-bottom: 1.25rem; }
.footer-desc { font-size: 0.875rem; line-height: 1.7; max-width: 36ch; }
.footer-socials { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
  color: rgba(255,255,255,0.5);
}
.footer-social-link:hover { border-color: var(--amber); color: var(--amber); }

.footer-col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-link:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}
.footer-contact-item .icon { color: var(--amber); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-link { color: inherit; transition: color 0.2s; }
.footer-bottom-link:hover { color: rgba(255,255,255,0.6); }

@media (max-width: 1023px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 639px)  { .footer-grid { grid-template-columns: 1fr; } }

/* ─── Dealer CTA Banner ─────────────────────────────────────── */
.cta-banner {
  background: var(--ink);
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(224,146,46,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,0.6); margin-top: 1rem; font-size: 1.1rem; max-width: 55ch; margin-inline: auto; }
.cta-banner .btn { margin-top: 2.5rem; }

/* ─── Opportunity Section ───────────────────────────────────── */
.opportunity-section {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.opportunity-section::after {
  content: '';
  position: absolute;
  right: -200px;
  top: -200px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(224,146,46,0.08);
  border-radius: 50%;
  pointer-events: none;
}

/* ─── Gallery Grid ──────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 4px;
}

.gallery-item { overflow: hidden; position: relative; }
.gallery-item:nth-child(1) { grid-column: span 8; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 4; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 4; }
.gallery-item:nth-child(6) { grid-column: span 8; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.05); }

@media (max-width: 767px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery-item, .gallery-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
}

/* ─── Timeline ──────────────────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: 2.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--amber), var(--steel), transparent);
}

.timeline-item { position: relative; padding-bottom: 3rem; }
.timeline-dot {
  position: absolute;
  left: -2.5rem;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--amber);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 3px rgba(224,146,46,0.2);
}

.timeline-year { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.5rem; }
.timeline-title { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; margin-bottom: 0.5rem; }
.timeline-desc { font-size: 0.9rem; color: var(--ink-60); line-height: 1.65; }

/* ─── Breadcrumb ────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--aluminium);
  margin-bottom: 1.5rem;
}
.breadcrumb a { transition: color 0.2s; }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb-sep { opacity: 0.4; }

/* ─── Badge ─────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.badge-amber  { background: var(--amber); color: var(--ink); }
.badge-steel  { background: var(--steel); color: var(--white); }
.badge-ink    { background: var(--ink);   color: var(--white); }
.badge-light  { background: var(--light); color: var(--ink); border: 1px solid var(--aluminium); }

/* ─── Divider ───────────────────────────────────────────────── */
.divider { width: 60px; height: 3px; background: var(--amber); border-radius: 2px; margin: 1.25rem 0; }
.divider-center { margin-inline: auto; }
.divider-lg { width: 100%; height: 1px; background: rgba(174,183,190,0.2); margin: 0; }

/* ─── Map Container ─────────────────────────────────────────── */
.map-container {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/7;
}
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* ─── Page Hero (inner pages) ───────────────────────────────── */
.page-hero {
  background: var(--ink);
  color: var(--white);
  padding: calc(var(--nav-height) + 4rem) 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--amber), transparent);
}

.page-hero h1 { color: var(--white); max-width: 20ch; }
.page-hero p  { color: rgba(255,255,255,0.6); max-width: 55ch; margin-top: 1rem; font-size: 1.1rem; }

/* ─── Utility Classes ───────────────────────────────────────── */
.bg-ink    { background: var(--ink); }
.bg-light  { background: var(--light); }
.bg-white  { background: var(--white); }
.bg-amber  { background: var(--amber); }
.bg-steel  { background: var(--steel); }

.d-flex   { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 0.25rem; } .gap-2 { gap: 0.5rem; } .gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; } .gap-6 { gap: 1.5rem; } .gap-8 { gap: 2rem; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 1023px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px)  { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 640px)  { .grid-4 { grid-template-columns: repeat(2, 1fr); } }

.mt-0{margin-top:0} .mt-1{margin-top:.25rem} .mt-2{margin-top:.5rem}
.mt-3{margin-top:.75rem} .mt-4{margin-top:1rem} .mt-6{margin-top:1.5rem}
.mt-8{margin-top:2rem} .mt-12{margin-top:3rem} .mt-16{margin-top:4rem}

.mb-0{margin-bottom:0} .mb-2{margin-bottom:.5rem} .mb-4{margin-bottom:1rem}
.mb-6{margin-bottom:1.5rem} .mb-8{margin-bottom:2rem}

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

.overflow-hidden { overflow: hidden; }
.relative { position: relative; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.hidden { display: none !important; }
.block  { display: block !important; }
.inline-block { display: inline-block !important; }

/* ─── Animations (CSS-only fallbacks) ──────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

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

@keyframes ambientFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-12px) rotate(1deg); }
  66%       { transform: translateY(6px) rotate(-0.5deg); }
}

/* ─── Print Styles ──────────────────────────────────────────── */
@media print {
  #nav, #loader, .whatsapp-float, .back-to-top, .cursor-dot, .cursor-ring { display: none !important; }
  body { color: #000; background: #fff; }
  a { text-decoration: underline; }
}

/* ─── Page Hero (Inner Pages) ──────────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-height) + clamp(3rem, 7vw, 6rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(224,146,46,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { color: var(--white); max-width: 20ch; }
.page-hero p  { color: rgba(255,255,255,0.6); max-width: 55ch; margin-top: 1rem; font-size: clamp(1rem, 2vw, 1.15rem); line-height: 1.7; }

/* ─── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-bottom: 1.5rem; }
.breadcrumb a { transition: color 0.2s; }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb-sep { color: rgba(255,255,255,0.2); }

/* ─── Steps Grid ─────────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps-grid::before { content:''; position:absolute; top:2.75rem; left:0; right:0; height:1px; background: linear-gradient(to right, transparent, var(--aluminium), transparent); z-index:0; }
.step { position:relative; z-index:1; text-align:center; padding:0 clamp(1rem,2vw,2rem); }
.step-number { font-family:var(--font-display); font-weight:800; font-size:3.5rem; color:var(--amber); line-height:1; margin-bottom:1.25rem; position:relative; display:inline-block; }
.step-number::after { content:''; display:block; width:24px; height:24px; border-radius:50%; background:var(--white); border:3px solid var(--amber); position:absolute; bottom:-0.75rem; left:50%; transform:translateX(-50%); }
.step-title { font-family:var(--font-display); font-weight:700; font-size:1.1rem; margin-top:1.5rem; margin-bottom:0.75rem; }
.step-desc { font-size:0.875rem; color:var(--ink-60); line-height:1.65; }
@media (max-width:767px) { .steps-grid { grid-template-columns: 1fr 1fr; row-gap:3rem; } .steps-grid::before { display:none; } }
@media (max-width:480px) { .steps-grid { grid-template-columns: 1fr; } }

/* ─── Opportunity Section ─────────────────────────────────────── */
.opportunity-section { background:var(--ink); color:var(--white); }
.opportunity-section h2 { color:var(--white); }

/* ─── Grid Layouts ───────────────────────────────────────────── */
.grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:clamp(2rem,5vw,4rem); }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
@media (max-width:1023px) { .grid-2 { grid-template-columns:1fr; } .grid-3 { grid-template-columns:1fr 1fr; } }
@media (max-width:640px) { .grid-3 { grid-template-columns:1fr; } }

/* ─── Form Components ────────────────────────────────────────── */
.form-group { margin-bottom:1.25rem; }
.form-label { display:block; font-size:0.72rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color:var(--ink-60); margin-bottom:0.5rem; }
.form-control { width:100%; padding:0.8rem 1rem; background:var(--white); border:1.5px solid rgba(174,183,190,0.4); border-radius:6px; color:var(--ink); font-family:var(--font-body); font-size:0.9rem; outline:none; transition:border-color 0.25s,box-shadow 0.25s; }
.form-control:focus { border-color:var(--amber); box-shadow:0 0 0 3px rgba(224,146,46,0.12); }
.form-control::placeholder { color:rgba(35,46,54,0.3); }
textarea.form-control { resize:vertical; min-height:120px; }
.form-grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:1.25rem; margin-bottom:1.25rem; }
@media (max-width:640px) { .form-grid-2 { grid-template-columns:1fr; } }
.alert { padding:0.875rem 1rem; border-radius:6px; font-size:0.875rem; margin-bottom:1rem; }
.alert-success { background:rgba(34,197,94,0.08); border:1px solid rgba(34,197,94,0.25); color:#16a34a; }
.alert-error   { background:rgba(239,68,68,0.08);  border:1px solid rgba(239,68,68,0.25);  color:#dc2626; }

/* ─── CTA Banner ─────────────────────────────────────────────── */
.cta-banner { position:relative; background:var(--ink); padding:clamp(5rem,10vw,8rem) clamp(1.25rem,4vw,3rem); text-align:center; overflow:hidden; }
.cta-banner::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 50% 50%,rgba(224,146,46,0.07) 0%,transparent 70%); pointer-events:none; }
.cta-banner .label { color:var(--aluminium); }
.cta-banner h2 { color:var(--white); margin-top:0.5rem; }
.cta-banner p { color:rgba(255,255,255,0.55); max-width:52ch; margin:1rem auto 0; font-size:clamp(1rem,2vw,1.15rem); line-height:1.7; }

/* ─── Footer ─────────────────────────────────────────────────── */
#footer { background:var(--ink); border-top:1px solid rgba(255,255,255,0.06); padding-top:clamp(3.5rem,7vw,6rem); }
.footer-grid { display:grid; grid-template-columns:1.5fr 1fr 1fr 1.5fr; gap:clamp(2rem,4vw,3.5rem); padding-bottom:clamp(2.5rem,5vw,4rem); border-bottom:1px solid rgba(255,255,255,0.08); }
.footer-logo { height:30px; width:auto; }
.footer-desc { font-size:0.875rem; line-height:1.7; color:rgba(255,255,255,0.45); }
.footer-socials { display:flex; gap:0.75rem; margin-top:1.5rem; }
.footer-social-link { width:36px; height:36px; border:1px solid rgba(255,255,255,0.12); border-radius:6px; display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,0.4); transition:all 0.2s; }
.footer-social-link:hover { border-color:var(--amber); color:var(--amber); background:rgba(224,146,46,0.08); }
.footer-col-title { font-family:var(--font-body); font-size:0.7rem; font-weight:700; letter-spacing:0.18em; text-transform:uppercase; color:rgba(255,255,255,0.4); margin-bottom:1.25rem; }
.footer-links { display:flex; flex-direction:column; gap:0.6rem; }
.footer-link { font-size:0.875rem; color:rgba(255,255,255,0.55); transition:color 0.2s; }
.footer-link:hover { color:var(--white); }
.footer-contact-item { display:flex; align-items:flex-start; gap:0.65rem; margin-bottom:0.85rem; font-size:0.875rem; color:rgba(255,255,255,0.5); }
.footer-contact-item .icon { flex-shrink:0; margin-top:0.1rem; color:var(--amber); }
.footer-contact-item a:hover { color:var(--white); }
.footer-bottom { display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:1.5rem 0; flex-wrap:wrap; }
.footer-bottom p { font-size:0.8rem; color:rgba(255,255,255,0.3); }
.footer-bottom-links { display:flex; gap:1.5rem; }
.footer-bottom-link { font-size:0.8rem; color:rgba(255,255,255,0.3); transition:color 0.2s; }
.footer-bottom-link:hover { color:var(--amber); }
@media (max-width:1023px) { .footer-grid { grid-template-columns:1fr 1fr; } }
@media (max-width:640px) { .footer-grid { grid-template-columns:1fr; } }

/* ─── Testimonials ───────────────────────────────────────────── */
.testimonial-card { background:var(--light); border:1px solid rgba(174,183,190,0.2); border-radius:12px; padding:2rem; display:flex; flex-direction:column; gap:1.25rem; }
.testimonial-stars { display:flex; gap:0.25rem; }
.star { width:16px; height:16px; }
.testimonial-text { font-size:0.925rem; line-height:1.7; color:var(--ink); flex:1; font-style:italic; }
.testimonial-author { display:flex; align-items:center; gap:0.875rem; }
.testimonial-avatar { width:44px; height:44px; border-radius:50%; object-fit:cover; flex-shrink:0; }
.testimonial-name { font-weight:600; font-size:0.9rem; }
.testimonial-company { font-size:0.78rem; color:var(--ink-60); margin-top:0.15rem; }

/* ─── FAQ Accordion ──────────────────────────────────────────── */
.faq-item { border-bottom:1px solid rgba(174,183,190,0.2); }
.faq-question { width:100%; text-align:left; font-family:var(--font-body); font-size:1rem; font-weight:600; color:var(--ink); padding:1.5rem 0; display:flex; align-items:center; justify-content:space-between; gap:1rem; cursor:pointer; transition:color 0.2s; }
.faq-question:hover { color:var(--amber); }
.faq-icon { flex-shrink:0; width:22px; height:22px; border:1.5px solid var(--aluminium); border-radius:50%; position:relative; transition:border-color 0.2s,transform 0.3s var(--ease-out); }
.faq-icon::before,.faq-icon::after { content:''; position:absolute; top:50%; left:50%; background:var(--ink); transition:transform 0.3s var(--ease-out); }
.faq-icon::before { width:10px; height:1.5px; transform:translate(-50%,-50%); }
.faq-icon::after  { width:1.5px; height:10px; transform:translate(-50%,-50%); }
.faq-item.open .faq-icon { border-color:var(--amber); transform:rotate(45deg); }
.faq-item.open .faq-icon::before,.faq-item.open .faq-icon::after { background:var(--amber); }
.faq-item.open .faq-question { color:var(--amber); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height 0.45s var(--ease-out); }
.faq-answer-inner { padding:0 0 1.5rem; font-size:0.9rem; line-height:1.75; color:var(--ink-60); }

/* ─── WhatsApp Float ─────────────────────────────────────────── */
.whatsapp-float { position:fixed; bottom:2rem; right:2rem; z-index:3000; width:58px; height:58px; background:#25D366; border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:0 6px 24px rgba(37,211,102,0.35); transition:transform 0.3s var(--ease-out),box-shadow 0.3s; }
.whatsapp-float:hover { transform:scale(1.1); box-shadow:0 12px 36px rgba(37,211,102,0.5); }
.whatsapp-float svg { width:28px; height:28px; fill:white; }

/* ─── Back to Top ────────────────────────────────────────────── */
.back-to-top { position:fixed; bottom:5.5rem; right:2rem; z-index:3000; width:44px; height:44px; background:var(--ink); color:var(--white); border:1px solid rgba(255,255,255,0.15); border-radius:50%; display:flex; align-items:center; justify-content:center; opacity:0; transform:translateY(10px); pointer-events:none; transition:all 0.3s var(--ease-out); cursor:pointer; }
.back-to-top.visible { opacity:1; transform:translateY(0); pointer-events:auto; }
.back-to-top:hover { background:var(--amber); color:var(--ink); border-color:var(--amber); }

/* ─── Reveal Classes ─────────────────────────────────────────── */
.reveal-up    { opacity:0; transform:translateY(40px); }
.reveal-fade  { opacity:0; }
.reveal-left  { opacity:0; transform:translateX(-40px); }
.reveal-right { opacity:0; transform:translateX(40px); }
.reveal-scale { opacity:0; transform:scale(0.95); }

/* ─── Background Variants ────────────────────────────────────── */
.bg-light { background-color:var(--light); }
.bg-ink   { background-color:var(--ink); color:var(--white); }
.bg-ink h2,.bg-ink h3 { color:var(--white); }

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

/* ─── Swiper Overrides ───────────────────────────────────────── */
.swiper-pagination-bullet { background:var(--aluminium); opacity:0.6; }
.swiper-pagination-bullet-active { background:var(--amber); opacity:1; }
.swiper-button-next,.swiper-button-prev { color:var(--amber); background:rgba(35,46,54,0.7); width:44px; height:44px; border-radius:50%; }
.swiper-button-next::after,.swiper-button-prev::after { font-size:1rem; }

/* ─── Utility ────────────────────────────────────────────────── */
.mt-4{margin-top:1rem} .mt-6{margin-top:1.5rem} .mt-8{margin-top:2rem} .mt-10{margin-top:2.5rem} .mt-12{margin-top:3rem}

/* ─── Grid / Swiper responsive visibility ─────────────────── */
#productsDesktopGrid { display: none; }
.swiper-products { display: block; }
@media (min-width: 768px) {
  #productsDesktopGrid { display: grid !important; }
  .swiper-products { display: none !important; }
}
