*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --green: #00d27d;
  --green-dim: rgba(0, 210, 125, 0.13);
  --green-glow: rgba(0, 210, 125, 0.22);
  --navy: #0a1022;
  --navy-2: #0d1428;
  --navy-3: #111830;
  --black: #06080f;
  --text: #e8ecf0;
  --text-muted: #7a8fa0;
  --text-dim: #3a4a5c;
  --border: rgba(172, 188, 204, 0.1);
  --border-g: rgba(0, 210, 125, 0.3);
  --r: 10px;
  --rl: 16px;
  --rxl: 24px;
  --fd: "Funnel Display", sans-serif;
  --fb: "Poppins", sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--fb);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection {
  background: var(--green);
  color: #000;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: var(--text-dim);
  border-radius: 3px;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 180px;
  opacity: 0.5;
}
.grid-bg {
  background-image:
    linear-gradient(rgba(172, 188, 204, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(172, 188, 204, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.section-sm {
  padding: 70px 0;
  position: relative;
  z-index: 1;
}
.grad-text {
  background: linear-gradient(
    135deg,
    var(--green) 0%,
    #00ffb2 50%,
    #acbccc 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(0, 210, 125, 0.22);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
}
.tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #000;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border: none;
  border-radius: var(--r);
  padding: 0.85rem 1.8rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary:hover {
  background: #00f090;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--green-glow);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-family: var(--fd);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 0.85rem 1.8rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-dim);
  transform: translateY(-2px);
}
.section-title {
  font-family: var(--fd);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 540px;
  line-height: 1.7;
}
.section-header {
  margin-bottom: 60px;
}
.ht-divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--border),
    transparent
  );
}
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}
.delay-5 {
  transition-delay: 0.5s;
}

/* ── HUNTECH ICON SVG COMPONENT ──
   Reutilizable en navbar, hero, about, footer.
   Ajustar tamaño con width/height en el elemento .ht-icon */
.ht-icon {
  display: inline-block;
  flex-shrink: 0;
}
.ht-icon svg {
  display: block;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 16px 0;
  transition: all 0.35s;
}
.navbar.scrolled {
  background: rgba(6, 8, 15, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-text {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--green);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(6, 8, 15, 0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.77, 0, 0.18, 1);
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav a {
  font-family: var(--fd);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-nav a:hover {
  color: var(--green);
}
@media (max-width: 900px) {
  .nav-links,
  .nav-cta .btn-primary {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-nav {
    display: flex;
  }
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.orb1 {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 210, 125, 0.16) 0%,
    transparent 70%
  );
  border-radius: 50%;
  top: -100px;
  right: -100px;
  animation: floatOrb1 8s ease-in-out infinite;
}
.orb2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(172, 188, 204, 0.07) 0%,
    transparent 70%
  );
  border-radius: 50%;
  bottom: 50px;
  left: -80px;
  animation: floatOrb2 10s ease-in-out infinite;
}
@keyframes floatOrb1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-30px, 20px) scale(1.05);
  }
}
@keyframes floatOrb2 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, -25px);
  }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-title {
  font-family: var(--fd);
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}
.hero-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--green);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cursor-blink {
  display: inline-block;
  width: 3px;
  height: 0.9em;
  background: var(--green);
  margin-left: 3px;
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.hero-visual {
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: var(--rxl);
  overflow: hidden;
  animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.terminal-header {
  background: var(--navy-3);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.d-r {
  background: #ff5f57;
}
.d-y {
  background: #febc2e;
}
.d-g {
  background: #28c840;
}
.terminal-title {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-left: auto;
  font-family: monospace;
}
.terminal-body {
  padding: 20px;
  font-family: "Courier New", monospace;
  font-size: 0.78rem;
  line-height: 1.8;
}
.t-c {
  color: var(--text-dim);
}
.t-k {
  color: #acbccc;
}
.t-v {
  color: var(--green);
}
.t-s {
  color: #ffd27d;
}
.t-n {
  color: #7fb3ff;
}
.t-b {
  color: var(--text-muted);
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual {
    max-width: 480px;
  }
}

/* ── HERO ICON showcase ── */
.hero-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: var(--green-dim);
  border: 1px solid rgba(0, 210, 125, 0.25);
  border-radius: var(--rl);
  margin-bottom: 1.5rem;
  box-shadow: 0 0 40px rgba(0, 210, 125, 0.12);
}

/* ── TRUST ── */
#trust {
  background: var(--navy-2);
  padding: 60px 0;
}
.trust-label {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 32px;
}
.clients-track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
}
.client-pill {
  background: rgba(172, 188, 204, 0.07);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 0.6rem 1.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.25s;
}
.client-pill:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-dim);
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
@media (max-width: 700px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.metric-card {
  background: var(--black);
  padding: 3rem 2rem;
  text-align: center;
  transition: background 0.25s;
}
.metric-card:hover {
  background: var(--navy-2);
}
.metric-num {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
  color: var(--green);
}
.metric-suffix {
  font-size: 1.8rem;
  opacity: 0.7;
}
.metric-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 2rem;
  transition:
    transform 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(
    circle at 0% 0%,
    var(--green-dim),
    transparent 60%
  );
  transition: opacity 0.4s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 210, 125, 0.4);
  box-shadow: 0 20px 50px rgba(0, 210, 125, 0.08);
}
.service-card:hover::before {
  opacity: 1;
}
.svc-icon {
  width: 48px;
  height: 48px;
  background: var(--green-dim);
  border: 1px solid rgba(0, 210, 125, 0.22);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 1.25rem;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}
.service-card:hover .svc-icon {
  background: var(--green);
  color: #000;
  border-color: var(--green);
}
.svc-title {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 1;
}
.svc-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  position: relative;
  z-index: 1;
}
.svc-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: rgba(172, 188, 204, 0.06);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.about-card-main {
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: var(--rxl);
  padding: 2.5rem;
}
.about-stat-row {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.a-stat-num {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 2rem;
  color: var(--green);
}
.a-stat-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.about-badge {
  background: var(--green);
  color: #000;
  border-radius: var(--rl);
  padding: 1rem 1.5rem;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 16px 40px var(--green-glow);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 1rem;
}
.about-badge small {
  font-family: var(--fb);
  font-weight: 500;
  font-size: 0.7rem;
  opacity: 0.7;
  display: block;
}
.diff-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.diff-icon {
  width: 32px;
  height: 32px;
  background: var(--green-dim);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}
.diff-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.diff-text span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── PROCESS ── */
#process {
  background: var(--navy-2);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.process-step {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--border);
  transition: background 0.25s;
}
.process-step:last-child {
  border-right: none;
}
.process-step:hover {
  background: rgba(0, 210, 125, 0.04);
}
.step-num {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 3rem;
  color: var(--text-dim);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.25s;
}
.process-step:hover .step-num {
  color: var(--green);
}
.step-title {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.step-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
}
@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
  .process-step {
    border-right: none;
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 16px;
    align-items: start;
    padding: 1.5rem 0;
  }
  .process-step:last-child {
    border-bottom: none;
  }
}

/* ── STACK ── */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 1rem;
}
.tech-badge {
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.25s;
  cursor: default;
  text-align: center;
}
.tech-badge:hover {
  border-color: var(--green);
  color: var(--text);
  transform: translateY(-3px);
  background: rgba(0, 210, 125, 0.05);
}
.tech-badge .t-icon {
  font-size: 1.5rem;
  line-height: 1;
}

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testi-card {
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 2rem;
  transition:
    border-color 0.3s,
    transform 0.3s;
  display: flex;
  flex-direction: column;
}
.testi-card:hover {
  border-color: rgba(0, 210, 125, 0.3);
  transform: translateY(-4px);
}
.testi-stars {
  color: #ffd600;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.testi-quote {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testi-quote::before {
  content: '"';
  font-family: var(--fd);
  font-size: 3rem;
  color: var(--green);
  opacity: 0.5;
  line-height: 0.5;
  display: block;
  margin-bottom: 0.5rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #acbccc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 0.85rem;
  color: #000;
  flex-shrink: 0;
}
.testi-name {
  font-size: 0.88rem;
  font-weight: 600;
}
.testi-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(
    135deg,
    var(--navy-2) 0%,
    rgba(0, 210, 125, 0.07) 100%
  );
  border: 1px solid rgba(0, 210, 125, 0.18);
  border-radius: var(--rxl);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(0, 210, 125, 0.1),
    transparent 70%
  );
}
.cta-banner-title {
  font-family: var(--fd);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
}
.cta-banner-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}
.cta-banner-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ── CONTACT ── */
#contact {
  background: var(--navy-2);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--green-dim);
  border: 1px solid rgba(0, 210, 125, 0.2);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.contact-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}
.ht-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ht-input,
.ht-textarea {
  background: rgba(10, 16, 34, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--text);
  font-family: var(--fb);
  font-size: 0.875rem;
  padding: 0.8rem 1rem;
  outline: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
  -webkit-appearance: none;
}
.ht-input:focus,
.ht-textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 210, 125, 0.1);
}
.ht-input::placeholder,
.ht-textarea::placeholder {
  color: var(--text-dim);
}
.ht-textarea {
  resize: vertical;
  min-height: 130px;
}
.ht-input.invalid {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.12);
}
.field-error {
  font-size: 0.72rem;
  color: #ff6b6b;
  min-height: 1em;
  display: block;
}

/* ── FOOTER ── */
footer {
  background: var(--navy-3);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}
.footer-col-title {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--green);
}
.socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--r);
  background: rgba(172, 188, 204, 0.07);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.25s;
}
.social-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: #000;
  transform: translateY(-2px);
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-dim);
}
.footer-bottom a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom a:hover {
  color: var(--green);
}
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: var(--green);
  color: #000;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 1rem 1.5rem;
  border-radius: var(--r);
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px var(--green-glow);
  display: flex;
  align-items: center;
  gap: 8px;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ── LANGUAGE SWITCHER ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(172, 188, 204, 0.07);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 6px;
}
.lang-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--fd);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  padding: 3px 8px;
  border-radius: 999px;
  transition: all 0.2s;
  line-height: 1;
}
.lang-btn.active {
  color: var(--green);
  background: var(--green-dim);
}
.lang-btn:hover:not(.active) {
  color: var(--text);
}
.lang-sep {
  color: var(--text-dim);
  font-size: 0.6rem;
  user-select: none;
  pointer-events: none;
}
.mobile-lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(172, 188, 204, 0.06);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  margin-top: 0.5rem;
}
.mobile-lang-switcher .lang-btn {
  font-size: 0.9rem;
  padding: 6px 14px;
}
@media (max-width: 900px) {
  .nav-cta .lang-switcher {
    display: none;
  }
}
