/* ═══════════════════════════════════════════════════════════
   WINTAS GROUP — HOMEPAGE DESIGN SYSTEM
   Palette: Matte Black · Deep Gold · Warm Cream · Charcoal
   Typography: Cormorant Garamond (display) + Outfit (body)
   ═══════════════════════════════════════════════════════════ */

/* ─── CSS VARIABLES ─────────────────────────────────────── */
:root {
  /* Colors */
  --black:        #080808;
  --black-2:      #0f0f0f;
  --black-3:      #141414;
  --charcoal:     #1a1a1a;
  --charcoal-2:   #222222;
  --charcoal-3:   #2a2a2a;
  --gold:         #C9A96E;
  --gold-light:   #E8D5A3;
  --gold-dark:    #8B6914;
  --gold-glow:    rgba(201,169,110,0.15);
  --gold-glow-2:  rgba(201,169,110,0.08);
  --cream:        #F5F0E8;
  --cream-2:      #EDE5D5;
  --white:        #FAFAF8;
  --text-primary: #F5F0E8;
  --text-secondary: rgba(245,240,232,0.65);
  --text-muted:   rgba(245,240,232,0.4);
  --text-dark:    #1a1a1a;
  --text-dark-2:  #2a2a2a;
  --border:       rgba(201,169,110,0.15);
  --border-light: rgba(245,240,232,0.08);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;

  /* Spacing */
  --section-pad:  120px;
  --section-pad-sm: 80px;
  --container:    1280px;
  --container-sm: 960px;

  /* Transitions */
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast:     0.2s;
  --dur-med:      0.4s;
  --dur-slow:     0.7s;
  --dur-xslow:    1.2s;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--black);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

body.loading { overflow: hidden; }

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

/* ─── CONTAINER ─────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── CUSTOM CURSOR ─────────────────────────────────────── */
.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s var(--ease), opacity 0.3s;
  mix-blend-mode: difference;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,169,110,0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease), width 0.3s var(--ease-out), height 0.3s var(--ease-out), opacity 0.3s;
}

.cursor-ring.hovering {
  width: 60px;
  height: 60px;
  border-color: var(--gold);
  background: var(--gold-glow);
}

/* ─── LOADER ─────────────────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.loader-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.loader-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.loader-w {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -2px;
  animation: loaderPulse 2s ease-in-out infinite;
}

.loader-bar {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  animation: loaderBarGrow 1.5s ease-in-out infinite;
}

.loader-text {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 6px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.loader-sub {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-bottom: 32px;
}

.loader-progress {
  width: 200px;
  height: 1px;
  background: rgba(201,169,110,0.15);
  margin: 0 auto;
  overflow: hidden;
}

.loader-progress-fill {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width 0.1s linear;
}

.loader-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.3;
  pointer-events: none;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes loaderBarGrow {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ─── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: padding var(--dur-med) var(--ease), background var(--dur-med) var(--ease), backdrop-filter var(--dur-med) var(--ease);
}

.nav.scrolled {
  padding: 14px 0;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-mark {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -1px;
}

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

.nav-logo-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--cream);
}

.nav-logo-sub {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--dur-fast) var(--ease);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--dur-med) var(--ease-out);
}

.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

.nav-link-cta {
  padding: 10px 24px;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  letter-spacing: 1.5px;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease) !important;
}

.nav-link-cta::after { display: none; }
.nav-link-cta:hover { background: var(--gold); color: var(--black) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cream);
  transition: transform var(--dur-med) var(--ease), opacity var(--dur-fast);
}

.nav-hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 24px 40px;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--dur-med) var(--ease-out), opacity var(--dur-med) var(--ease);
}

.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nav-mobile-links a {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  transition: color var(--dur-fast);
}

.nav-mobile-links a:hover { color: var(--gold); }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--dur-med) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn svg { width: 16px; height: 16px; transition: transform var(--dur-med) var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateX(-100%);
  transition: transform var(--dur-med) var(--ease-out);
}

.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary svg { position: relative; z-index: 1; }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245,240,232,0.3);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

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

/* ─── SECTION COMMON ─────────────────────────────────────── */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.section-eyebrow-gold { color: var(--gold); }

.eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.eyebrow-line-gold { background: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-dark);
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}

.section-title-light { color: var(--cream); }
.section-title-light em { color: var(--gold-light); }

.section-subtitle {
  font-size: 16px;
  color: var(--text-dark-2);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-eyebrow { justify-content: center; }
.section-header .section-subtitle { margin: 0 auto; }

.section-header-light .section-title { color: var(--cream); }
.section-header-light .section-subtitle { color: var(--text-secondary); }

/* ─── REVEAL ANIMATIONS ──────────────────────────────────── */
[data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}

.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(40px);
}

[data-reveal].revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(8,8,8,0.7) 70%, rgba(8,8,8,0.95) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.4;
  z-index: 2;
  pointer-events: none;
  animation: grainShift 8s steps(10) infinite;
}

.hero-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.03) 2px,
    rgba(0,0,0,0.03) 4px
  );
  z-index: 2;
  pointer-events: none;
}

@keyframes grainShift {
  0% { transform: translate(0, 0); }
  10% { transform: translate(-2%, -3%); }
  20% { transform: translate(3%, 1%); }
  30% { transform: translate(-1%, 4%); }
  40% { transform: translate(2%, -2%); }
  50% { transform: translate(-3%, 3%); }
  60% { transform: translate(1%, -1%); }
  70% { transform: translate(-2%, 2%); }
  80% { transform: translate(3%, -3%); }
  90% { transform: translate(-1%, 1%); }
  100% { transform: translate(0, 0); }
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat var(--dur) ease-in-out infinite;
  animation-delay: var(--delay);
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  20% { opacity: 0.6; transform: translateY(-20px) scale(1); }
  80% { opacity: 0.3; transform: translateY(-80px) scale(0.5); }
  100% { opacity: 0; transform: translateY(-120px) scale(0); }
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
  padding-top: 100px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 1;
  transform: translateY(0);
}

.hero-eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -3px;
  color: var(--cream);
  margin-bottom: 28px;
  opacity: 1;
}

.hero-title-line {
  display: block;
}

.hero-title-italic {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--text-secondary);
  margin-bottom: 48px;
  opacity: 1;
  transform: translateY(0);
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 56px;
  opacity: 1;
  transform: translateY(0);
}

.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 1;
  transform: translateY(0);
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 8px 16px;
  border: 1px solid var(--border);
  background: rgba(201,169,110,0.04);
  backdrop-filter: blur(10px);
  transition: border-color var(--dur-fast), color var(--dur-fast);
}

.hero-badge svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }
.hero-badge:hover { border-color: var(--gold); color: var(--gold); }

/* Hero Stats Bar */
.hero-stats {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(8,8,8,0.7);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  padding: 20px 40px;
  opacity: 1;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
  text-align: center;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -1px;
}

.hero-stat-plus {
  font-size: 20px;
  color: var(--gold);
  vertical-align: super;
  font-family: var(--font-display);
}

.hero-stat-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 48px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: scrollFadeIn 1s ease 3s forwards;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero-scroll span {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}

@keyframes scrollFadeIn {
  to { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.5; }
}

/* ─── MARQUEE ─────────────────────────────────────────────── */
.marquee-section {
  background: var(--gold);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
  z-index: 10;
}

.marquee-track {
  display: flex;
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 40s linear infinite;
  flex-shrink: 0;
}

.marquee-inner span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 24px;
}

.marquee-dot {
  font-size: 8px !important;
  padding: 0 4px !important;
  opacity: 0.5;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── ABOUT ───────────────────────────────────────────────── */
.about {
  padding: var(--section-pad) 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: 'WINTAS';
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-display);
  font-size: 180px;
  font-weight: 300;
  color: rgba(139,105,20,0.04);
  letter-spacing: -8px;
  pointer-events: none;
  white-space: nowrap;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.about-image-frame:hover .about-image { transform: scale(1.04); }

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(139,105,20,0.2) 100%);
}

.about-image-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 180px;
  height: 180px;
  overflow: hidden;
  border: 4px solid var(--cream);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.about-image-small {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-float-card {
  position: absolute;
  top: 32px;
  left: -32px;
  background: var(--black);
  padding: 20px 24px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.about-float-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.about-float-num span {
  font-size: 24px;
}

.about-float-text {
  font-size: 11px;
  color: var(--text-secondary);
  letter-spacing: 1px;
  max-width: 120px;
  line-height: 1.4;
  margin-top: 4px;
}

.about-content .section-title { color: var(--text-dark); }
.about-content .section-title em { color: var(--gold-dark); }

.about-body {
  font-size: 15px;
  color: var(--text-dark-2);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}

.about-pillar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(139,105,20,0.05);
  border: 1px solid rgba(139,105,20,0.1);
  transition: border-color var(--dur-fast), background var(--dur-fast);
}

.about-pillar:hover {
  border-color: var(--gold-dark);
  background: rgba(139,105,20,0.08);
}

.pillar-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-icon svg { width: 18px; height: 18px; color: var(--cream); }

.pillar-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 2px;
  letter-spacing: 0.5px;
}

.pillar-text {
  font-size: 12px;
  color: var(--text-dark-2);
  line-height: 1.5;
}

/* ─── PRODUCTS ───────────────────────────────────────────── */
.products {
  padding: var(--section-pad) 0;
  background: var(--black-2);
  position: relative;
}

.products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.products .section-title { color: var(--cream); }
.products .section-title em { color: var(--gold-light); }
.products .section-subtitle { color: var(--text-secondary); }

.product-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.product-tab {
  padding: 10px 24px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid transparent;
  background: transparent;
  transition: all var(--dur-fast) var(--ease);
  cursor: none;
}

.product-tab:hover { color: var(--gold); border-color: var(--border); }

.product-tab.active {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.product-card {
  background: var(--charcoal);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
  display: none;
}

.product-card[data-division="oilseeds"] { display: flex; flex-direction: column; }

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(201,169,110,0.1);
}

.product-card-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

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

.product-card:hover .product-card-image img { transform: scale(1.06); }

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(8,8,8,0.6) 100%);
}

.product-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--black);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
}

.product-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-category {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.product-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 8px;
  line-height: 1.2;
}

.product-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.product-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.product-card-specs span {
  font-size: 10px;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  background: rgba(201,169,110,0.06);
  border: 1px solid var(--border);
  padding: 3px 8px;
}

.product-card-markets {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.market-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.2);
  padding: 3px 8px;
}

.products-cta {
  text-align: center;
}

.products-cta p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

/* ─── GLOBAL ──────────────────────────────────────────────── */
.global {
  padding: var(--section-pad) 0;
  background: var(--black-3);
  position: relative;
  overflow: hidden;
}

.global-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,169,110,0.04) 0%, transparent 70%);
}

.global-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.global .section-title { color: var(--cream); }
.global .section-title em { color: var(--gold-light); }

.global-regions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.global-region {
  padding: 32px;
  background: rgba(20,20,20,0.8);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
  transition: background var(--dur-fast), border-color var(--dur-fast);
}

.global-region:hover {
  background: rgba(201,169,110,0.06);
  border-color: var(--border);
}

.global-region-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.global-region-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.global-region-countries {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.global-ports {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.global-ports-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.global-ports-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.port-tag {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 8px 16px;
  border: 1px solid var(--border-light);
  background: rgba(201,169,110,0.03);
  transition: border-color var(--dur-fast), color var(--dur-fast);
}

.port-tag:hover { border-color: var(--gold); color: var(--gold); }

.global-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
  z-index: 1;
}

.global-stat-item {
  text-align: center;
  padding: 32px;
  background: rgba(201,169,110,0.04);
  border: 1px solid var(--border);
}

.global-stat-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -2px;
}

.global-stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ─── CERTIFICATIONS ─────────────────────────────────────── */
.certifications {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.certifications .section-title { color: var(--text-dark); }
.certifications .section-title em { color: var(--gold-dark); }
.certifications .section-subtitle { color: var(--text-dark-2); }

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cert-card {
  padding: 28px 20px;
  background: var(--white);
  border: 1px solid rgba(139,105,20,0.1);
  text-align: center;
  transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-med), box-shadow var(--dur-med);
}

.cert-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-dark);
  box-shadow: 0 12px 40px rgba(139,105,20,0.1);
}

.cert-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

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

.cert-icon-blue { background: rgba(59,130,246,0.1); }
.cert-icon-blue svg { color: #3b82f6; }
.cert-icon-green { background: rgba(34,197,94,0.1); }
.cert-icon-green svg { color: #22c55e; }
.cert-icon-gold { background: rgba(201,169,110,0.15); }
.cert-icon-gold svg { color: var(--gold-dark); }
.cert-icon-purple { background: rgba(168,85,247,0.1); }
.cert-icon-purple svg { color: #a855f7; }

.cert-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.cert-desc {
  font-size: 11px;
  color: var(--text-dark-2);
  letter-spacing: 0.5px;
  line-height: 1.5;
}

/* ─── PROCESS ─────────────────────────────────────────────── */
.process {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.process-bg {
  position: absolute;
  inset: 0;
}

.process-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(60%) brightness(0.3);
}

.process-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.85) 100%);
}

.process .container { position: relative; z-index: 1; }

.process-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 64px;
}

.process-step {
  display: flex;
  gap: 24px;
  padding: 32px;
  background: rgba(8,8,8,0.6);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
  transition: background var(--dur-fast), border-color var(--dur-fast);
}

.process-step:hover {
  background: rgba(201,169,110,0.05);
  border-color: var(--border);
}

.process-step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: rgba(201,169,110,0.2);
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -2px;
  transition: color var(--dur-fast);
}

.process-step:hover .process-step-num { color: rgba(201,169,110,0.5); }

.process-step-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.process-step-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.infra-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.infra-stat {
  text-align: center;
  padding: 32px;
  background: rgba(201,169,110,0.06);
  border: 1px solid var(--border);
}

.infra-stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -2px;
}

.infra-stat-unit {
  font-size: 14px;
  color: var(--gold);
  opacity: 0.7;
}

.infra-stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ─── WHY WINTAS ─────────────────────────────────────────── */
.why {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.why .section-title { color: var(--text-dark); }
.why .section-title em { color: var(--gold-dark); }

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

.why-card {
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid rgba(139,105,20,0.08);
  transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-med), background var(--dur-med);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-med) var(--ease-out);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139,105,20,0.2);
  background: rgba(139,105,20,0.02);
}

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

.why-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: rgba(139,105,20,0.15);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.why-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.why-card p {
  font-size: 13px;
  color: var(--text-dark-2);
  line-height: 1.7;
}

/* ─── VISION ──────────────────────────────────────────────── */
.vision {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.vision-bg {
  position: absolute;
  inset: 0;
}

.vision-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25) saturate(0.5);
}

.vision-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.85) 0%, rgba(20,15,5,0.9) 100%);
}

.vision-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.vision .container { position: relative; z-index: 1; }

.vision-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.vision-quote-mark {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0.5;
  margin-bottom: 32px;
}

.vision-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  letter-spacing: 0.3px;
  margin-bottom: 40px;
}

.vision-attribution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 64px;
}

.vision-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.vision-attribution span {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

.vision-pillars {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.vision-pillar {
  flex: 1;
  padding: 32px;
  text-align: center;
}

.vision-pillar-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  flex-shrink: 0;
}

.vision-pillar-word {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.vision-pillar-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── CONTACT ─────────────────────────────────────────────── */
.contact {
  padding: var(--section-pad) 0;
  background: var(--black-2);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-title { color: var(--cream); }
.contact-info .section-title em { color: var(--gold-light); }

.contact-body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border: 1px solid var(--border-light);
  background: rgba(201,169,110,0.02);
  transition: border-color var(--dur-fast), background var(--dur-fast);
}

.contact-step:hover {
  border-color: var(--border);
  background: rgba(201,169,110,0.04);
}

.contact-step-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -1px;
}

.contact-step-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.contact-step-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--text-secondary);
}

.contact-detail svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* Form */
.contact-form-wrap {
  background: var(--charcoal);
  border: 1px solid var(--border-light);
  padding: 48px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  color: var(--cream);
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color var(--dur-fast), background var(--dur-fast);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,169,110,0.04);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A96E' stroke-width='1.5'%3E%3Cpath d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: none;
}

.form-group select option { background: var(--charcoal); color: var(--cream); }

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

.form-note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.5px;
  line-height: 1.6;
}

/* ─── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
}

.footer-top {
  padding: 80px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-mark {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -2px;
}

.footer-logo-name {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--cream);
}

.footer-logo-sub {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.5;
}

.footer-cert-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-cert {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.2);
  padding: 4px 8px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-links span {
  font-size: 13px;
  color: var(--text-secondary);
  transition: color var(--dur-fast);
  line-height: 1.5;
}

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

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.footer-compliance {
  font-size: 11px !important;
  letter-spacing: 1px !important;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1200px) {
  .why-grid { grid-template-columns: repeat(4, 1fr); }
  .cert-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 1024px) {
  :root { --section-pad: 80px; }
  .container { padding: 0 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 500px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .global-regions { grid-template-columns: repeat(2, 1fr); }
  .global-stats-row { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .infra-stats { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .cert-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: block; }
  .hero-title { font-size: clamp(40px, 10vw, 72px); letter-spacing: -2px; }
  .hero-stats { position: relative; bottom: auto; left: auto; transform: none; flex-wrap: wrap; margin: 32px auto 0; width: calc(100% - 48px); }
  .hero-stat { padding: 0 16px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-badges { gap: 12px; }
  .hero-scroll { display: none; }
  .about-pillars { grid-template-columns: 1fr; }
  .about-image-accent { display: none; }
  .about-float-card { display: none; }
  .product-grid { grid-template-columns: 1fr; }
  .global-regions { grid-template-columns: 1fr; }
  .global-stats-row { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .vision-pillars { flex-direction: column; }
  .vision-pillar-divider { width: 60px; height: 1px; align-self: center; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .infra-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat-divider { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-content { padding: 0 16px; padding-top: 80px; }
  .hero-badges { flex-direction: column; align-items: center; }
  .cert-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .product-tabs { gap: 4px; }
  .product-tab { padding: 8px 14px; font-size: 10px; }
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
  a { cursor: pointer; }
}

/* ─── UTILITY ─────────────────────────────────────────────── */
.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;
}

/* Smooth scroll for Lenis */
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }