@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --royal-blue: #0a1628;
  --deep-blue: #0d2044;
  --mid-blue: #1a3a6e;
  --accent-blue: #1e5fa8;
  --bright-blue: #2d7dd2;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-pale: #f0dfa0;
  --silver: #a8b8cc;
  --ice: #e8eef6;
  --white: #ffffff;
  --off-white: #f4f7fb;
  --text-dark: #0a1628;
  --text-mid: #2d4a6e;
  --text-light: #6a8aaa;
  --gradient-hero: linear-gradient(135deg, #060f20 0%, #0a1e40 40%, #0d2a5a 70%, #0a1628 100%);
  --gradient-gold: linear-gradient(135deg, #c9a84c, #e8c96a, #c9a84c);
  --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  --shadow-glow: 0 0 40px rgba(41, 125, 210, 0.3);
  --shadow-gold: 0 0 30px rgba(201, 168, 76, 0.2);
  --border-glass: 1px solid rgba(255,255,255,0.1);
  --border-gold: 1px solid rgba(201, 168, 76, 0.3);
  --radius-card: 16px;
  --radius-btn: 6px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--royal-blue);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

/* ── CURSOR ── */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  pointer-events: none;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(201,168,76,0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease-out;
}
.cursor-ring.hover { transform: translate(-50%, -50%) scale(1.8); border-color: var(--gold); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--royal-blue); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5vw;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
  transition: var(--transition);
}
nav.scrolled {
  background: rgba(6, 15, 32, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: var(--border-gold);
  height: 64px;
}
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo img { height: 42px; object-fit: contain; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600;
  color: var(--white); letter-spacing: 0.08em;
  line-height: 1;
}
.nav-logo-text .tagline {
  font-size: 0.6rem; color: var(--gold);
  letter-spacing: 0.15em; text-transform: uppercase; margin-top: 2px;
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  text-decoration: none; color: rgba(255,255,255,0.75);
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  position: relative; transition: var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }
.nav-cta {
  background: transparent; border: var(--border-gold);
  color: var(--gold); padding: 10px 24px;
  border-radius: var(--radius-btn); font-size: 0.8rem;
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: none; transition: var(--transition);
}
.nav-cta:hover {
  background: var(--gold); color: var(--royal-blue);
  box-shadow: var(--shadow-gold);
}
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: none; }
.nav-hamburger span { display: block; width: 26px; height: 2px; background: var(--white); transition: var(--transition); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--gradient-hero);
}
.hero-canvas {
  position: absolute; inset: 0; z-index: 0;
}
.hero-particles {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
}
.hero-particle {
  position: absolute; border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  animation: float-particle linear infinite;
}
@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-20px) rotate(360deg); opacity: 0; }
}
.hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image: 
    linear-gradient(rgba(41, 125, 210, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41, 125, 210, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute; z-index: 2;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 58, 110, 0.5) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  animation: pulse-glow 4s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}
.hero-content {
  position: relative; z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.8s ease 0.3s forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 40px; height: 1px; background: var(--gold); opacity: 0.5;
}
.hero-logo-display {
  margin-bottom: 40px;
  opacity: 0; animation: scaleIn 1s ease 0.5s forwards;
}
.hero-logo-display img {
  width: min(500px, 80vw);
  filter: drop-shadow(0 0 40px rgba(41, 125, 210, 0.5));
  animation: logo-shimmer 3s ease-in-out infinite 1.5s;
}
@keyframes logo-shimmer {
  0%, 100% { filter: drop-shadow(0 0 30px rgba(41, 125, 210, 0.4)); }
  50% { filter: drop-shadow(0 0 60px rgba(41, 125, 210, 0.8)) drop-shadow(0 0 30px rgba(201, 168, 76, 0.3)); }
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 300; line-height: 1.2;
  margin-bottom: 20px; letter-spacing: 0.02em;
  opacity: 0; animation: fadeUp 0.8s ease 0.8s forwards;
}
.hero-title span { color: var(--gold); font-style: italic; }
.hero-subtitle {
  font-size: 1rem; color: rgba(255,255,255,0.65);
  max-width: 580px; margin: 0 auto 40px;
  line-height: 1.8; font-weight: 300;
  opacity: 0; animation: fadeUp 0.8s ease 1s forwards;
}
.hero-actions {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s ease 1.2s forwards;
}
.btn-primary {
  background: var(--gradient-gold); color: var(--royal-blue);
  padding: 14px 36px; border-radius: var(--radius-btn);
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none;
  border: none; cursor: none; transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0; transition: var(--transition);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.4); }
.btn-primary:hover::before { opacity: 1; }
.btn-secondary {
  background: transparent; color: var(--white);
  padding: 14px 36px; border-radius: var(--radius-btn);
  border: var(--border-glass); font-size: 0.85rem;
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; cursor: none; transition: var(--transition);
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeIn 1s ease 2s forwards;
}
.hero-scroll span {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.5); transform-origin: bottom; }
}
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
  display: flex; justify-content: center; gap: 0;
  opacity: 0; animation: fadeUp 0.8s ease 1.5s forwards;
}
.hero-stat {
  padding: 24px 48px;
  border-top: var(--border-gold);
  border-right: 1px solid rgba(201,168,76,0.15);
  text-align: center;
  background: rgba(6, 15, 32, 0.6);
  backdrop-filter: blur(10px);
}
.hero-stat:last-child { border-right: none; }
.hero-stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 600; color: var(--gold); line-height: 1;
}
.hero-stat .lbl {
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-top: 4px;
}

/* ── SECTION COMMONS ── */
section { padding: 100px 5vw; }
.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.section-tag::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400; line-height: 1.15;
  margin-bottom: 20px;
}
.section-title span { color: var(--gold); font-style: italic; }
.section-subtitle {
  font-size: 0.95rem; color: rgba(255,255,255,0.55);
  line-height: 1.8; font-weight: 300;
  max-width: 580px;
}
.divider {
  width: 60px; height: 2px;
  background: var(--gradient-gold); margin: 24px 0;
}

/* ── ABOUT ── */
.about-section {
  background: linear-gradient(180deg, var(--royal-blue) 0%, #0a1f3d 100%);
  position: relative; overflow: hidden;
}
.about-bg-text {
  position: absolute; top: 50%; left: -2%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 20vw; font-weight: 700;
  color: rgba(255,255,255,0.02);
  letter-spacing: -0.05em; pointer-events: none; white-space: nowrap;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; position: relative; z-index: 2;
}
.about-visual {
  position: relative;
}
.about-img-frame {
  position: relative;
  border: var(--border-gold);
  border-radius: var(--radius-card);
  overflow: hidden;
  padding: 3px;
}
.about-img-inner {
  border-radius: calc(var(--radius-card) - 3px);
  overflow: hidden;
  position: relative;
}
.about-img-inner img {
  width: 100%; display: block;
  transition: transform 0.6s ease;
}
.about-img-inner:hover img { transform: scale(1.04); }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gradient-gold);
  color: var(--royal-blue); padding: 20px;
  border-radius: 12px; text-align: center;
  box-shadow: var(--shadow-gold);
}
.about-badge .b-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 700; line-height: 1;
}
.about-badge .b-txt {
  font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600; margin-top: 2px;
}
.about-content {}
.about-features { margin-top: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-feat {
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border: var(--border-glass);
  border-radius: 12px;
  transition: var(--transition);
}
.about-feat:hover { background: rgba(201,168,76,0.05); border-color: rgba(201,168,76,0.2); }
.about-feat-icon { font-size: 1.4rem; margin-bottom: 10px; }
.about-feat-title { font-size: 0.85rem; font-weight: 600; margin-bottom: 4px; }
.about-feat-text { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* ── PRODUCTS ── */
.products-section {
  background: #060f20;
  position: relative; overflow: hidden;
}
.products-header { max-width: 600px; margin-bottom: 60px; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--gradient-card);
  border: var(--border-glass);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  cursor: none;
}
.product-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 50%);
  opacity: 0; transition: var(--transition); z-index: 1;
}
.product-card:hover { transform: translateY(-8px); border-color: rgba(201,168,76,0.25); box-shadow: var(--shadow-gold); }
.product-card:hover::before { opacity: 1; }
.product-img {
  position: relative; overflow: hidden; height: 280px;
  background: linear-gradient(135deg, #0d1f3c, #1a3360);
}
.product-img img {
  width: 100%; height: 100%; object-fit: contain;
  padding: 20px; transition: transform 0.6s ease;
}
.product-card:hover .product-img img { transform: scale(1.05) translateY(-5px); }
.product-tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: rgba(6,15,32,0.8); backdrop-filter: blur(8px);
  border: var(--border-gold); border-radius: 4px;
  padding: 4px 12px; font-size: 0.65rem;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold);
}
.product-info { padding: 24px; position: relative; z-index: 2; }
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 500; margin-bottom: 8px;
}
.product-desc { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 16px; }
.product-specs { display: flex; gap: 8px; flex-wrap: wrap; }
.product-spec {
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--silver); padding: 3px 10px;
  border: 1px solid rgba(168,184,204,0.2); border-radius: 3px;
}

/* ── GYPSONET FEATURE ── */
.gypsonet-section {
  background: linear-gradient(135deg, #071020 0%, #0a1a35 50%, #071020 100%);
  position: relative; overflow: hidden;
}
.gypsonet-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(34,85,34,0.12) 0%, transparent 60%);
}
.gypsonet-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; position: relative; z-index: 2;
}
.gypsonet-visual { order: 2; }
.gypsonet-visual img {
  width: 100%;
  filter: drop-shadow(0 20px 60px rgba(34,120,34,0.3));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.gypsonet-content { order: 1; }
.gypsonet-tag { color: #4caf7d; }
.gypsonet-tag::before { background: #4caf7d; }
.gypsonet-title span { color: #4caf7d; }
.gypsonet-points { margin-top: 36px; display: flex; flex-direction: column; gap: 16px; }
.gypsonet-point {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border-left: 2px solid #4caf7d;
  border-radius: 0 8px 8px 0;
  transition: var(--transition);
}
.gypsonet-point:hover { background: rgba(76,175,125,0.07); }
.gypsonet-point-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.gypsonet-point h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 3px; }
.gypsonet-point p { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ── INDUSTRIES ── */
.industries-section { background: #060f20; }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px; margin-top: 60px;
}
.industry-card {
  background: rgba(255,255,255,0.03);
  border: var(--border-glass);
  border-radius: 12px;
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: none;
  position: relative; overflow: hidden;
}
.industry-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gradient-gold);
  transform: scaleX(0); transition: var(--transition);
}
.industry-card:hover { background: rgba(201,168,76,0.05); transform: translateY(-4px); }
.industry-card:hover::after { transform: scaleX(1); }
.industry-icon { font-size: 2.2rem; margin-bottom: 14px; }
.industry-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 500; margin-bottom: 6px; }
.industry-desc { font-size: 0.75rem; color: rgba(255,255,255,0.45); line-height: 1.5; }

/* ── CERTIFICATIONS ── */
.certs-section {
  background: linear-gradient(180deg, #060f20, var(--royal-blue));
  position: relative;
}
.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px; margin-top: 60px;
}
.cert-card {
  background: rgba(255,255,255,0.03);
  border: var(--border-glass);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: none;
}
.cert-card:hover { border-color: rgba(201,168,76,0.3); background: rgba(201,168,76,0.04); transform: translateY(-4px); }
.cert-icon { font-size: 2.4rem; margin-bottom: 16px; }
.cert-name { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; color: var(--gold); }
.cert-value { font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; color: rgba(255,255,255,0.7); }

/* ── PROMOTERS ── */
.promoters-section { background: var(--royal-blue); }
.promoters-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 60px;
}
.promoter-card {
  background: rgba(255,255,255,0.03);
  border: var(--border-glass);
  border-radius: var(--radius-card);
  padding: 40px; transition: var(--transition);
}
.promoter-card:hover { border-color: rgba(201,168,76,0.2); }
.promoter-header { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; }
.promoter-avatar {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--gradient-gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 700; color: var(--royal-blue);
  flex-shrink: 0;
}
.promoter-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 500; }
.promoter-title { font-size: 0.75rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }
.promoter-bio { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.75; }
.promoter-skills { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 8px; }
.skill-tag {
  font-size: 0.65rem; padding: 4px 12px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 3px; color: var(--gold-pale);
  letter-spacing: 0.08em;
}

/* ── CONTACT ── */
.contact-section {
  background: linear-gradient(135deg, #060f20 0%, #0a1628 100%);
  position: relative; overflow: hidden;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-info { }
.contact-items { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 20px; align-items: flex-start; }
.contact-item-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(201,168,76,0.1); border: var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-item-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-item-value { font-size: 0.9rem; color: rgba(255,255,255,0.8); line-height: 1.5; }
.contact-form {
  background: rgba(255,255,255,0.03);
  border: var(--border-glass); border-radius: var(--radius-card);
  padding: 40px;
}
.form-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; margin-bottom: 8px; }
.form-subtitle { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--silver); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: rgba(255,255,255,0.05); border: var(--border-glass);
  border-radius: 8px; padding: 12px 16px; color: var(--white);
  font-family: 'Outfit', sans-serif; font-size: 0.88rem;
  transition: var(--transition); resize: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: rgba(201,168,76,0.4);
  background: rgba(255,255,255,0.07);
}
.form-group select option { background: var(--deep-blue); }
.form-group textarea { height: 120px; }
.form-submit { width: 100%; margin-top: 8px; }
.form-success { display: none; text-align: center; padding: 20px; color: var(--gold); font-size: 0.9rem; }

/* ── FOOTER ── */
footer {
  background: #030810;
  border-top: var(--border-gold);
  padding: 60px 5vw 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-brand .brand-logo { margin-bottom: 20px; }
.footer-brand .brand-logo img { height: 36px; }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.82rem; color: rgba(255,255,255,0.45); text-decoration: none;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── LIQUID BLOB ── */
.liquid-blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.12; pointer-events: none;
  animation: blob-move 20s ease-in-out infinite;
}
@keyframes blob-move {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: translateY(0) rotate(0deg); }
  25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; transform: translateY(-20px) rotate(5deg); }
  50% { border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%; transform: translateY(10px) rotate(-3deg); }
  75% { border-radius: 60% 40% 60% 40% / 70% 30% 50% 60%; transform: translateY(-15px) rotate(7deg); }
}

/* ── PAGE TRANSITION ── */
.page-transition {
  position: fixed; inset: 0; z-index: 9998;
  background: var(--royal-blue);
  transform: translateY(-100%);
  pointer-events: none;
}

/* ── LOADER ── */
#loader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--royal-blue);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 30px;
}
.loader-logo img {
  width: 320px;
  animation: loader-pulse 0.5s ease-in-out infinite alternate;
}
@keyframes loader-pulse {
  from { filter: brightness(0.8) drop-shadow(0 0 20px rgba(41,125,210,0.3)); }
  to { filter: brightness(1.1) drop-shadow(0 0 50px rgba(41,125,210,0.8)); }
}
.loader-bar {
  width: 200px; height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 1px; overflow: hidden;
}
.loader-fill {
  height: 100%; background: var(--gradient-gold);
  border-radius: 1px; animation: load-fill 1.8s ease forwards;
}
@keyframes load-fill {
  from { width: 0%; }
  to { width: 100%; }
}
.loader-text {
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); opacity: 0.7;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-grid, .gypsonet-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .gypsonet-visual { order: -1; }
  .promoters-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { display: none; }
}
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 70px 24px; }
  .products-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-content { padding: 0 20px; }
}
