@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --neon: hsl(195, 100%, 50%);
  --neon-hover: hsl(195, 100%, 60%);
  --neon-text: hsl(195, 100%, 30%);
  --neon-raw: 195 100% 50%;
  --gray-50: #f9fafb;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-900: #111827;
  --white: #ffffff;
  --red-400: #f87171;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --green-50: #f0fdf4;
  --green-200: #bbf7d0;
  --green-700: #15803d;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  font-size: inherit;
}

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
}

/* ---- SKIP LINK ---- */
.skip-link {
  position: fixed;
  top: -100%;
  left: 0.5rem;
  z-index: 100;
  background: var(--neon);
  color: var(--gray-900);
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 0.875rem;
  outline: none;
}
.skip-link:focus {
  top: 0.5rem;
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background-color 0.3s, box-shadow 0.3s, padding 0.3s;
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 1rem 0;
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  padding: 0.75rem 0;
}
.navbar-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  display: inline-block;
}
.navbar-logo picture {
  display: block;
}
.navbar-logo img {
  height: 5rem;
  width: auto;
}
.navbar-logo .logo-text {
  font-weight: 700;
  letter-spacing: -0.025em;
  font-size: 1.25em;
  line-height: 1.2;
  color: var(--white);
}
.navbar.scrolled .navbar-logo .logo-text { color: var(--gray-900); }
.navbar-logo .logo-text .logo-sub {
  font-weight: 400;
  font-size: 0.55em;
  letter-spacing: 0.05em;
  opacity: 0.7;
}
.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}
.desktop-nav .nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
  color: rgba(255,255,255,0.8);
}
.desktop-nav .nav-link:hover { color: var(--white); }
.navbar.scrolled .desktop-nav .nav-link { color: var(--gray-600); }
.navbar.scrolled .desktop-nav .nav-link:hover { color: var(--gray-900); }
.btn-neon {
  display: inline-block;
  background: var(--neon);
  color: var(--gray-900);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 0.375rem;
  transition: background-color 0.2s;
}
.btn-neon:hover { background: var(--neon-hover); }
.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  color: var(--white);
}
.navbar.scrolled .mobile-menu-btn { color: var(--gray-900); }
.mobile-menu-btn svg { width: 1.5rem; height: 1.5rem; }
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 1rem;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link {
  text-align: left;
  font-weight: 500;
  padding: 0.5rem;
  color: var(--gray-900);
}
.mobile-menu .btn-neon {
  text-align: center;
  padding: 0.75rem;
}

@media (min-width: 768px) {
  .desktop-nav { display: flex; }
  .mobile-menu-btn { display: none; }
}
@media (min-width: 640px) {
  .navbar-inner { padding: 0 1.5rem; }
  .navbar-logo img { height: 5rem; }
}

/* ---- HERO ---- */
.hero-banner {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: center;
  padding: 100px 20px 60px;
}
.hero-subtitle {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.hero-title {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero-title .accent { color: var(--neon); }
.hero-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  line-height: 1.625;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}
.hero-cta {
  display: inline-block;
  background: var(--neon);
  color: var(--gray-900);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  transition: background-color 0.2s;
}
.hero-cta:hover { background: var(--neon-hover); }

@media (min-width: 640px) {
  .hero-inner { padding: 120px 24px 80px; }
  .hero-subtitle { font-size: 0.875rem; }
  .hero-title { font-size: 3rem; }
  .hero-desc { font-size: 1rem; }
  .hero-cta { padding: 0.75rem 1.75rem; font-size: 1rem; }
}
@media (min-width: 768px) {
  .hero-title { font-size: 3.75rem; }
  .hero-desc { font-size: 1.125rem; }
}
@media (max-width: 640px) {
  .hero-banner { min-height: 75vh; }
  .hero-title { font-size: 2rem !important; }
}

/* ---- SECTIONS (shared) ---- */
.section { padding: 3rem 0; }
.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1rem;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neon-text);
  margin-bottom: 0.5rem;
}
.section-heading {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.bg-gray { background: var(--gray-50); }
.bg-white { background: var(--white); }
.bg-dark { background: var(--gray-900); color: var(--white); }
@media (min-width: 640px) {
  .section { padding: 5rem 0; }
  .section-inner { padding: 0 1.5rem; }
  .section-heading { font-size: 1.875rem; }
}

/* ---- VALUE SECTION ---- */
.value-layout {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.vending-image-wrap {
  flex-shrink: 0;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}
.vending-image-wrap img {
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.vending-disclaimer {
  font-size: 11px;
  color: var(--gray-500);
  margin-top: 0.5rem;
  line-height: 1.4;
  text-align: center;
  font-style: italic;
}
.value-cards {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 0.5rem;
  padding: 1.25rem;
}
.value-card svg, .value-card .icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--neon-text);
  margin-bottom: 0.75rem;
}
.value-card h2 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.value-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.625;
}
@media (min-width: 640px) {
  .value-layout { gap: 3.5rem; }
  .vending-image-wrap { width: 340px; margin: 0; }
  .value-cards { grid-template-columns: 1fr 1fr; }
  .value-card { padding: 1.5rem; }
  .value-card-wide { grid-column: span 2; }
}
@media (max-width: 900px) {
  .value-layout { flex-direction: column; }
  .vending-image-wrap { max-width: 320px !important; }
}

/* ---- ABOUT ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
.about-text p {
  color: var(--gray-600);
  line-height: 1.625;
  margin-bottom: 1rem;
}
.about-text .heading-muted { color: var(--gray-500); }
.about-quote {
  padding-left: 1.25rem;
  border-left: 4px solid var(--neon);
  font-style: italic;
  color: #374151;
  line-height: 1.625;
}
.products-panel {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 0.5rem;
  padding: 1.5rem;
}
.products-panel h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.product-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}
.product-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--neon);
  margin-top: 0.375rem;
  flex-shrink: 0;
}
.product-item strong {
  font-size: 0.875rem;
  display: block;
}
.product-item .desc {
  font-size: 0.75rem;
  color: var(--gray-600);
  margin-top: 0.125rem;
}
.products-footer {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-200);
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-600);
}
@media (min-width: 640px) {
  .products-panel { padding: 2rem; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .products-panel { padding: 2.5rem; }
}

/* ---- HOW IT WORKS ---- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--neon);
  color: var(--gray-900);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.step-card h3 {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.step-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.625;
}
@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 640px) {
  .steps-grid { gap: 1.5rem; }
  .step-card { padding: 2rem; }
}

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.contact-info {
  background: var(--gray-900);
  color: var(--white);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-info h2 {
  font-size: 1.25rem;
  font-weight: 700;
}
.contact-info > p {
  color: rgba(255,255,255,0.8);
  line-height: 1.625;
  font-size: 0.875rem;
}
.contact-address {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.contact-detail svg {
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
  color: var(--neon);
}
.contact-detail strong {
  font-size: 0.875rem;
  display: block;
}
.contact-detail p, .contact-detail a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.125rem;
  line-height: 1.625;
  transition: color 0.2s;
}
.contact-detail a:hover { color: var(--white); }
.contact-form-wrap { padding: 2rem; }
.contact-form-wrap h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.form-group .required { color: var(--red-500); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}
.form-input {
  width: 100%;
  padding: 0.625rem 1rem;
  border-radius: 0.375rem;
  border: 1px solid var(--gray-300);
  background: var(--white);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}
.form-input:focus {
  border-color: var(--neon);
  box-shadow: 0 0 0 3px hsla(195, 100%, 50%, 0.3);
}
.form-input.error { border-color: var(--red-400); }
textarea.form-input { resize: none; }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-error {
  font-size: 0.75rem;
  color: var(--red-500);
  margin-top: 0.25rem;
}
.btn-submit {
  width: 100%;
  background: var(--neon);
  color: var(--gray-900);
  font-weight: 600;
  padding: 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  transition: background-color 0.2s, opacity 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-submit:hover { background: var(--neon-hover); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-submit .spinner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.form-status {
  margin-top: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  display: none;
}
.form-status.success {
  display: block;
  background: var(--green-50);
  color: var(--green-700);
  border: 1px solid var(--green-200);
}
.form-status.error {
  display: block;
  background: #fef2f2;
  color: var(--red-600);
  border: 1px solid #fecaca;
}
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

@media (min-width: 640px) {
  .contact-info { padding: 2.5rem; gap: 1.5rem; }
  .contact-info h2 { font-size: 1.5rem; }
  .contact-form-wrap { padding: 2.5rem; }
  .form-row { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 2fr 3fr; }
  .contact-info { padding: 3rem; }
  .contact-form-wrap { padding: 3rem; }
}

/* ---- FOOTER ---- */
.footer { padding: 2.5rem 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  line-height: 1.625;
  max-width: 320px;
}
.footer-brand .location {
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  margin-top: 0.75rem;
}
.footer-brand .footer-logo {
  height: 15rem;
  width: auto;
  margin-bottom: 1rem;
}
.footer-col h4 {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col button, .footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  text-align: left;
  display: inline-block;
  width: fit-content;
}
.footer-col button:hover, .footer-col a:hover { color: var(--white); }
.footer-col .contact-email { display: block; }
.footer-col .contact-location {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}
@media (min-width: 640px) {
  .footer { padding: 3.5rem 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: row; }
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: span 1; }
}

/* ---- UTILITIES ---- */
*:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
.animate-spin {
  animation: spin 1s linear infinite;
}
