/* ============================================================
   SS KIOSK SOLUTIONS — styles.css
   Palette: Deep navy base + Brand Orange (#f07820) + Brand Blue (#1e3a9f)
   Matches the SS Kiosk Solutions logo identity.
   Font: Plus Jakarta Sans (matches parent SS LED Rentals)
   ============================================================ */

/* ── CUSTOM PROPERTIES ── */
:root {
  /* Brand Dark (navy — echoes logo's deep blue) */
  --dark:          #0b1729;
  --dark-mid:      #142035;
  --dark-light:    #1c2f4e;
  --dark-border:   rgba(255,255,255,0.07);

  /* Brand Orange — primary accent (logo right-S color) */
  --orange:        #f07820;
  --orange-dark:   #c96012;
  --orange-light:  #f9a55e;
  --orange-bg:     rgba(240,120,32,0.10);
  --orange-border: rgba(240,120,32,0.25);

  /* Brand Blue — secondary accent (logo left-S / text color) */
  --blue-acc:      #1e3a9f;
  --blue-acc-dark: #162d80;
  --blue-acc-bg:   rgba(30,58,159,0.10);

  /* Neutrals */
  --white:    #ffffff;
  --gray-50:  #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;

  /* Typography */
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow:    0 4px 16px rgba(0,0,0,.12);
  --shadow-md: 0 8px 30px rgba(0,0,0,.16);
  --shadow-lg: 0 24px 64px rgba(0,0,0,.22);

  /* Geometry */
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --pill:      9999px;

  /* Motion */
  --ease: cubic-bezier(.4,0,.2,1);
  --dur:  .24s;

  /* Layout */
  --nav-h: 72px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img  { display: block; max-width: 100%; height: auto; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, textarea, select { font-family: var(--font); font-size: inherit; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* ── SKIP NAV ── */
.skip-link {
  position: absolute; top: -9999px; left: 20px; z-index: 9999;
  padding: 8px 20px; background: var(--orange); color: var(--white);
  border-radius: var(--pill); font-weight: 700; font-size: .875rem;
}
.skip-link:focus { top: 10px; }

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(2.1rem, 4.8vw, 3.6rem); font-weight: 800; line-height: 1.09; letter-spacing: -.025em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.5rem);  font-weight: 800; line-height: 1.12; letter-spacing: -.02em; }
h3 { font-size: 1.2rem;   font-weight: 700; line-height: 1.3; }
h4 { font-size: 1.0rem;   font-weight: 700; line-height: 1.35; }
p  { line-height: 1.72; color: var(--gray-600); }

.accent-text {
  background: linear-gradient(135deg, var(--orange) 10%, #5b9cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── LAYOUT ── */
.container   { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section     { padding: 96px 0; }
.section-sm  { padding: 72px 0; }
.section-light { background: var(--gray-50); }
.section-dark  { background: var(--dark); color: var(--white); }
.section-dark p { color: rgba(255,255,255,.62); }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-header p { font-size: 1.0625rem; margin-top: 16px; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--orange);
  background: var(--orange-bg); border: 1px solid var(--orange-border);
  padding: 5px 14px; border-radius: var(--pill); margin-bottom: 20px;
}
.section-dark .section-label {
  color: var(--orange-light);
  background: rgba(240,120,32,.10);
  border-color: rgba(240,120,32,.25);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--pill);
  font-size: .9375rem; font-weight: 700; letter-spacing: -.01em; line-height: 1;
  white-space: nowrap;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: var(--pill); }

.btn-primary {
  background: var(--orange); color: var(--white);
  box-shadow: 0 4px 18px rgba(240,120,32,.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 8px 24px rgba(240,120,32,.45);
}

.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.35);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.07); }

.btn-outline-emerald {
  background: transparent; color: var(--orange-dark);
  border: 2px solid var(--orange);
}
.btn-outline-emerald:hover { background: var(--orange); color: var(--white); }

.btn-ghost-emerald {
  background: transparent; color: var(--orange-dark);
  border: none; padding-left: 0; padding-right: 0;
}
.btn-ghost-emerald:hover { color: var(--orange); }
.btn-ghost-emerald:hover { transform: none; }

.btn-sm  { padding: 9px 20px; font-size: .8125rem; }
.btn-lg  { padding: 16px 36px; font-size: 1.0625rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── SITE HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: linear-gradient(180deg, rgba(6,14,28,.82) 0%, transparent 100%);
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.site-header.scrolled {
  background: rgba(11,23,41,.96);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 2px 20px rgba(0,0,0,.25);
}

.nav {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; height: var(--nav-h); gap: 20px;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; gap: 12px; }
.nav-logo img {
  width: 52px; height: 52px;
  object-fit: cover; object-position: center 20%;
  background: var(--white); border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
  flex-shrink: 0;
}
.nav-brand { display: flex; flex-direction: column; line-height: 1; }
.nav-brand-name {
  font-size: .9375rem; font-weight: 800; color: var(--white);
  letter-spacing: -.015em;
}
.nav-brand-sub {
  font-size: .6rem; font-weight: 500;
  color: rgba(255,255,255,.38); letter-spacing: .02em; margin-top: 4px;
  text-transform: uppercase;
}

.nav-links {
  display: flex; align-items: center; gap: 2px; margin-left: auto;
}
.nav-links a {
  display: block; padding: 7px 12px;
  font-size: .875rem; font-weight: 600;
  color: rgba(255,255,255,.82); border-radius: var(--radius);
  transition: color var(--dur), background var(--dur);
}
.nav-links a:hover         { color: var(--white); background: rgba(255,255,255,.08); }
.nav-links a:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: 16px; }

.lang-toggle {
  display: inline-flex; align-items: center;
  padding: 5px 12px; border-radius: var(--pill);
  font-size: .78rem; font-weight: 700; letter-spacing: .04em;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.18);
  transition: color var(--dur), border-color var(--dur);
}
.lang-toggle:hover        { color: var(--white); border-color: rgba(255,255,255,.45); }
.lang-toggle:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  border-radius: var(--radius); padding: 4px;
  transition: background var(--dur);
  flex-shrink: 0;
}
.nav-toggle:hover        { background: rgba(255,255,255,.08); }
.nav-toggle:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.section-hero {
  min-height: 100vh;
  background: linear-gradient(150deg, #060e1c 0%, var(--dark) 45%, var(--dark-mid) 100%);
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 56px) 0 80px;
  position: relative; overflow: hidden;
}
/* Glowing orbs */
.section-hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 75% 65% at 72% 48%, rgba(240,120,32,.07) 0%, transparent 70%),
    radial-gradient(ellipse 55% 55% at 18% 75%, rgba(30,58,159,.08) 0%, transparent 70%);
}
/* Dot grid */
.section-hero::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 55%; height: 100%; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 30px 30px;
}
/* Grid overlay */
.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(240,120,32,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,120,32,.025) 1px, transparent 1px);
  background-size: 56px 56px;
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px 6px 8px;
  background: rgba(240,120,32,.12);
  border: 1px solid rgba(240,120,32,.3);
  border-radius: var(--pill);
  font-size: .78rem; font-weight: 600; color: var(--orange-light);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 8px; height: 8px; background: var(--orange); border-radius: 50%;
  animation: pulse-dot 2.2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240,120,32,.5); }
  50%       { box-shadow: 0 0 0 7px rgba(240,120,32,0); }
}

.hero-title { color: var(--white); margin-bottom: 24px; }

.hero-sub {
  font-size: clamp(1rem, 1.9vw, 1.15rem);
  color: rgba(255,255,255,.68);
  margin-bottom: 40px; line-height: 1.78;
  max-width: 560px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 60px; }

/* Trust strip */
.trust-strip {
  display: flex; flex-wrap: wrap; align-items: stretch;
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 32px;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 28px 10px 0;
  font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.58);
}
.trust-item:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,.1);
  margin-right: 28px;
}
.trust-icon { width: 17px; height: 17px; color: var(--orange); flex-shrink: 0; }

/* ── IMG PLACEHOLDER ── */
.img-placeholder {
  background: linear-gradient(145deg, var(--dark-mid) 0%, var(--dark-light) 100%);
  border: 1.5px dashed rgba(240,120,32,.3); border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: rgba(255,255,255,.28); text-align: center; padding: 32px;
  /* TODO: Replace with <img> tag pointing to actual photo */
}
.img-placeholder svg   { width: 44px; height: 44px; opacity: .35; }
.img-placeholder .ph-label  { font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.img-placeholder .ph-detail { font-size: .65rem; opacity: .7; margin-top: -6px; }

/* ── SOLUTIONS ── */
#solutions { background: var(--white); }

.solutions-grid { display: grid; gap: 28px; }

.solution-card {
  background: var(--white);
  border: 1px solid var(--gray-200); border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  transition: border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.solution-card:hover {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange), var(--shadow-md);
  transform: translateY(-5px);
}

.solution-img { width: 100%; aspect-ratio: 3/2; object-fit: cover; object-position: center top; }

.solution-body { padding: 32px; }

.solution-top-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: var(--pill);
  background: var(--orange-bg); border: 1px solid var(--orange-border);
  font-size: .68rem; font-weight: 700; letter-spacing: .06em;
  color: var(--orange-dark); text-transform: uppercase; margin-bottom: 16px;
}
.sol-dot { width: 5px; height: 5px; background: var(--orange); border-radius: 50%; }

.solution-title { color: var(--dark); margin-bottom: 4px; font-size: 1.45rem; }
.solution-sub   { font-size: .875rem; color: var(--orange-dark); font-weight: 600; margin-bottom: 14px; }
.solution-desc  { font-size: .9375rem; color: var(--gray-600); line-height: 1.72; margin-bottom: 24px; }

.acquire-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: var(--pill);
  background: var(--gray-50); border: 1px solid var(--gray-200);
  font-size: .72rem; font-weight: 700; color: var(--gray-600);
  letter-spacing: .04em; margin-bottom: 22px;
}
.acq-dot { width: 5px; height: 5px; background: var(--orange); border-radius: 50%; }

.feature-list   { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.feature-item   { display: flex; align-items: flex-start; gap: 10px; font-size: .875rem; color: var(--gray-700); }
.feature-check  {
  width: 20px; height: 20px;
  background: var(--orange-bg); border: 1px solid var(--orange-border);
  border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.feature-check svg { width: 10px; height: 10px; color: var(--orange-dark); }

.solution-ctas { display: flex; flex-wrap: wrap; gap: 10px; }

/* ── INDUSTRIES ── */
#industries { background: var(--gray-50); }
.industries-grid { display: grid; gap: 20px; }

.industry-tile {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: 0 2px 14px rgba(0,0,0,.05);
  transition: border-color var(--dur), box-shadow var(--dur), transform var(--dur) var(--ease);
  text-decoration: none; cursor: pointer;
}
.industry-tile:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.industry-tile:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

.ind-icon {
  width: 56px; height: 56px;
  background: var(--orange-bg); border: 1px solid var(--orange-border);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
}
.ind-icon svg { width: 26px; height: 26px; color: var(--orange-dark); }
.ind-title { font-size: 1.1rem; font-weight: 700; color: var(--dark); }
.ind-desc  { font-size: .875rem; color: var(--gray-600); line-height: 1.68; flex: 1; }
.ind-link  {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .8125rem; font-weight: 700; color: var(--orange-dark);
}
.ind-link svg { width: 14px; height: 14px; transition: transform var(--dur) var(--ease); }
.industry-tile:hover .ind-link svg { transform: translateX(4px); }

/* ── END-TO-END PROCESS ── */
#process { background: var(--dark); color: var(--white); }

.process-row {
  display: flex; flex-direction: column; gap: 0;
  position: relative;
}

.process-step {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--dark-border);
}
.process-step:last-child { border-bottom: none; }

.proc-num {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: var(--orange-bg); border: 1.5px solid var(--orange-border);
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem; font-weight: 800; color: var(--orange-light);
}
.process-content h4 { color: var(--white); margin-bottom: 6px; }
.process-content p  { font-size: .875rem; color: rgba(255,255,255,.52); line-height: 1.68; }

/* ── HOW IT WORKS ── */
#how-it-works { background: var(--white); }
.hiw-steps { display: grid; gap: 36px; }

.hiw-step {
  display: flex; flex-direction: column; gap: 16px;
  padding: 32px; border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200); background: var(--white);
  box-shadow: 0 2px 14px rgba(0,0,0,.05);
  transition: border-color var(--dur), box-shadow var(--dur), transform var(--dur) var(--ease);
}
.hiw-step:hover { border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-3px); }

.hiw-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--blue-acc) 100%);
  font-size: 1.25rem; font-weight: 800; color: var(--white); flex-shrink: 0;
}
.hiw-step h3 { color: var(--dark); }
.hiw-step p  { font-size: .9375rem; }

/* ── WHY CHOOSE US ── */
#why-us { background: var(--gray-50); }
.why-grid { display: grid; gap: 20px; }

.why-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: 0 2px 14px rgba(0,0,0,.05);
  transition: border-color var(--dur), box-shadow var(--dur), transform var(--dur) var(--ease);
}
.why-card:hover { border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-2px); }

.why-icon {
  width: 48px; height: 48px;
  background: var(--orange-bg); border: 1px solid var(--orange-border);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
}
.why-icon svg { width: 24px; height: 24px; color: var(--orange-dark); }
.why-card h4 { color: var(--dark); font-size: 1.0rem; }
.why-card p  { font-size: .875rem; }

/* ── FAQ ── */
#faq { background: var(--white); }
.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item:first-child { border-top: 1px solid var(--gray-200); }

.faq-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 22px 0;
  font-size: 1rem; font-weight: 700; color: var(--dark);
  text-align: left; line-height: 1.4;
  transition: color var(--dur);
}
.faq-btn:hover        { color: var(--orange-dark); }
.faq-btn:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; border-radius: 4px; }

.faq-chevron {
  width: 22px; height: 22px; flex-shrink: 0;
  color: var(--orange-dark); transition: transform var(--dur) var(--ease);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .38s var(--ease);
}
.faq-inner {
  padding-bottom: 24px;
  font-size: .9375rem; color: var(--gray-600); line-height: 1.78;
}

/* ── CONTACT ── */
#contact { background: var(--gray-50); }
.contact-layout { display: grid; gap: 48px; }

.contact-form-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl); padding: 40px 36px;
}
.contact-form-card h3 { color: var(--dark); margin-bottom: 6px; }
.contact-form-card > p { font-size: .9375rem; margin-bottom: 32px; }

.form-grid  { display: flex; flex-direction: column; gap: 20px; }
.form-row   { display: grid; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: .8rem; font-weight: 700; color: var(--gray-700); letter-spacing: .01em;
}
.form-label .req { color: var(--orange-dark); margin-left: 1px; }

.form-control {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  background: var(--white); color: var(--gray-800); font-size: .9375rem;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  -webkit-appearance: none; appearance: none;
}
.form-control::placeholder { color: var(--gray-400); }
.form-control:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(240,120,32,.12);
}
.form-control.invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.10);
}

select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 42px;
}
textarea.form-control { resize: vertical; min-height: 120px; }

.field-error { font-size: .78rem; color: #ef4444; font-weight: 600; display: none; }
.field-error.show { display: block; }

.form-submit { margin-top: 4px; }
.form-submit .btn { width: 100%; justify-content: center; padding: 14px; }

/* Success state */
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.show { display: block; }
.success-icon {
  width: 68px; height: 68px; background: var(--orange-bg); border: 2px solid var(--orange);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.success-icon svg { width: 30px; height: 30px; color: var(--orange); }
.form-success h3 { color: var(--dark); font-size: 1.3rem; margin-bottom: 10px; }
.form-success p  { color: var(--gray-600); font-size: .9375rem; max-width: 380px; margin: 0 auto; }

/* Contact info panel */
.contact-panel { display: flex; flex-direction: column; gap: 24px; }

.contact-info-card {
  background: var(--dark); border-radius: var(--radius-xl); padding: 36px 32px;
  color: var(--white);
}
.contact-info-card h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 24px; }

.info-items { display: flex; flex-direction: column; gap: 20px; }
.info-item  { display: flex; align-items: flex-start; gap: 14px; }
.info-icon  {
  width: 40px; height: 40px; background: var(--orange-bg);
  border: 1px solid var(--orange-border); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.info-icon svg { width: 18px; height: 18px; color: var(--orange-light); }
.info-label { font-size: .72rem; color: rgba(255,255,255,.38); font-weight: 700; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 3px; }
.info-val   { font-size: .9375rem; font-weight: 600; color: rgba(255,255,255,.82); }
.info-val a { color: var(--orange-light); transition: color var(--dur); }
.info-val a:hover { color: var(--white); }

.service-badge {
  background: var(--orange-bg); border: 1px solid var(--orange-border);
  border-radius: var(--radius-lg); padding: 20px 22px; margin-top: 4px;
}
.service-badge h5 { color: var(--orange-light); font-size: .8rem; font-weight: 700; margin-bottom: 6px; }
.service-badge p  { font-size: .8125rem; color: rgba(255,255,255,.5); line-height: 1.65; }

/* ── FOOTER ── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.55); padding: 68px 0 32px; }

.footer-top {
  display: grid; gap: 44px; padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-logo img {
  width: 72px; height: 72px;
  object-fit: cover; object-position: center 20%;
  background: var(--white); border-radius: 10px;
  margin-bottom: 16px;
}
.footer-tagline { font-size: .9375rem; font-weight: 600; color: rgba(255,255,255,.82); margin-bottom: 12px; }
.footer-desc    { font-size: .8125rem; line-height: 1.72; max-width: 270px; }

.footer-col h5 {
  font-size: .74rem; font-weight: 700; letter-spacing: .10em;
  text-transform: uppercase; color: var(--white); margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: .875rem; transition: color var(--dur); }
.footer-links a:hover { color: var(--orange-light); }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-row  { display: flex; align-items: flex-start; gap: 10px; font-size: .875rem; }
.footer-contact-row svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-contact-row a   { color: rgba(255,255,255,.55); transition: color var(--dur); }
.footer-contact-row a:hover { color: var(--orange-light); }

.footer-bottom { padding-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.footer-legal  {
  display: flex; flex-wrap: wrap; gap: 4px 10px;
  font-size: .78rem; color: rgba(255,255,255,.38); line-height: 1.6;
}
.footer-legal a { color: var(--orange-light); }
.footer-legal a:hover { color: var(--white); }
.footer-sep   { color: rgba(255,255,255,.18); }
.footer-pride { font-size: .78rem; color: rgba(255,255,255,.32); margin-top: 4px; }

/* ── VIDEO MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.88); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur) var(--ease);
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }

.modal-box {
  position: relative; width: 100%; max-width: 880px;
  border-radius: var(--radius-xl); overflow: hidden; background: var(--dark);
  transform: scale(.94); transition: transform var(--dur) var(--ease);
}
.modal-overlay.open .modal-box { transform: scale(1); }

.modal-close {
  position: absolute; top: 12px; right: 12px; z-index: 1;
  width: 38px; height: 38px; background: rgba(0,0,0,.55);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--white); transition: background var(--dur);
}
.modal-close:hover        { background: rgba(0,0,0,.8); }
.modal-close:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
.modal-close svg { width: 16px; height: 16px; }

.modal-video { width: 100%; aspect-ratio: 16/9; display: block; background: #000; }

/* ── BTN ICON ── */
.btn-icon { width: 16px; height: 16px; }

/* ── HERO VISUAL ── */
.hero-visual { display: none; }

.hero-kiosk-cards { display: flex; flex-direction: column; gap: 12px; }

.hero-kiosk-card {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  color: var(--white); text-decoration: none;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.hero-kiosk-card:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(240,120,32,.4);
  transform: translateX(5px);
}

.hero-kiosk-thumb {
  width: 80px; height: 60px;
  border-radius: 8px;
  object-fit: cover; object-position: center top;
  flex-shrink: 0;
}

.hero-kiosk-info { flex: 1; min-width: 0; }
.hero-kiosk-label {
  font-size: .61rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--orange-light); margin-bottom: 4px;
}
.hero-kiosk-title {
  font-size: .9375rem; font-weight: 700; color: var(--white);
}

.hero-kiosk-arrow {
  width: 30px; height: 30px;
  background: var(--orange-bg); border: 1px solid var(--orange-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-kiosk-arrow svg { width: 13px; height: 13px; color: var(--orange-light); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, #0d1d50 0%, var(--dark) 65%);
  padding: 88px 0; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 100% at 88% 50%, rgba(240,120,32,.15) 0%, transparent 65%);
}
.cta-banner-inner {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 36px; position: relative;
}
.cta-banner-text h2 {
  color: var(--white);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  margin-bottom: 12px; letter-spacing: -.02em;
}
.cta-banner-text p { color: rgba(255,255,255,.58); font-size: 1rem; }
.cta-banner-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }
.reveal-d5 { transition-delay: .40s; }
.reveal-d6 { transition-delay: .48s; }

/* ── MOBILE MENU DRAWER (hidden by default at all sizes) ── */
.nav-menu-mobile {
  display: none;
  position: fixed; inset: var(--nav-h) 0 0 0;
  background: rgba(11,23,41,.97);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  z-index: 999; overflow-y: auto;
  flex-direction: column; padding: 28px 24px 48px; gap: 0;
}
.nav-menu-mobile.open { display: flex; }
/* Desktop nav items already inside nav — visible by default */
.nav > .nav-links { display: flex; }
.nav > .nav-actions { display: flex; }

/* ── RESPONSIVE ── */

/* ≥ 540px */
@media (min-width: 540px) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { flex-basis: auto; }
}

/* ≥ 768px */
@media (min-width: 768px) {
  .why-grid   { grid-template-columns: 1fr 1fr; }
  .hiw-steps  { grid-template-columns: repeat(3, 1fr); }
  .contact-layout { grid-template-columns: 1fr 380px; }

  /* Process: go horizontal */
  .process-row {
    flex-direction: row; align-items: flex-start;
    position: relative;
  }
  .process-row::before {
    content: '';
    position: absolute; top: 24px; left: 24px; right: 24px;
    height: 1.5px; background: linear-gradient(90deg, var(--orange-border), var(--dark-border) 80%);
    z-index: 0;
  }
  .process-step {
    flex-direction: column; align-items: center; text-align: center;
    flex: 1; padding: 0 12px; border-bottom: none; position: relative; z-index: 1;
  }
  .process-step:last-child { border-bottom: none; }
  .proc-num { margin-bottom: 16px; background: var(--dark); }
  .process-content { text-align: center; }
}

/* ≥ 1024px */
@media (min-width: 1024px) {
  .solutions-grid  { grid-template-columns: repeat(3, 1fr); }
  .industries-grid { grid-template-columns: repeat(4, 1fr); }
  .why-grid        { grid-template-columns: repeat(3, 1fr); }
  .contact-layout  { grid-template-columns: 1fr 420px; }
  .footer-top      { grid-template-columns: 260px 1fr 1fr 1fr; gap: 40px; }

  /* Hero 2-column */
  .hero-inner      { grid-template-columns: 1fr 400px; }
  .hero-visual     { display: block; }
  .hero-sub        { max-width: 100%; }

  /* CTA banner row */
  .cta-banner-inner   { flex-direction: row; text-align: left; justify-content: space-between; align-items: center; }
  .cta-banner-actions { justify-content: flex-start; flex-shrink: 0; }
}

/* ≤ 1023px  —  mobile nav */
@media (max-width: 1023px) {
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-links, .nav-actions {
    display: none;
    position: fixed; inset: var(--nav-h) 0 0 0;
    background: rgba(11,23,41,.97);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    z-index: 999; overflow-y: auto;
  }
  /* Combine into one visible element via JS */
  .nav-links { display: none; }
  .nav-actions { display: none; }

  .nav-menu-mobile {
    display: none;
    position: fixed; inset: var(--nav-h) 0 0 0;
    background: rgba(11,23,41,.97);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    z-index: 999; overflow-y: auto;
    flex-direction: column; padding: 28px 24px 48px;
    gap: 0;
  }
  .nav-menu-mobile.open { display: flex; }
  .nav-menu-mobile .nav-links { display: flex; flex-direction: column; gap: 4px; position: static; flex: none; background: none; backdrop-filter: none; }
  .nav-menu-mobile .nav-links a { padding: 14px 16px; font-size: 1.0625rem; border-radius: var(--radius); border-bottom: 1px solid rgba(255,255,255,.05); }
  .nav-menu-mobile .nav-actions { display: flex; flex-direction: column; align-items: stretch; gap: 12px; margin-top: 28px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08); position: static; background: none; backdrop-filter: none; }
  .nav-menu-mobile .btn { width: 100%; justify-content: center; }
  .nav-menu-mobile .lang-toggle { justify-content: center; }
}

/* ≤ 767px */
@media (max-width: 767px) {
  .section { padding: 72px 0; }
  .section-sm { padding: 56px 0; }
  .section-header { margin-bottom: 48px; }
  .hero-inner { max-width: 100%; }
  .trust-strip { flex-wrap: wrap; }
  .trust-item  { flex-basis: 50%; border-right: none !important; padding: 8px 0; }
  .trust-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,.1) !important; padding-right: 16px; }
  .trust-item:nth-child(even) { padding-left: 16px; }
  .contact-form-card { padding: 28px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-desc { max-width: 100%; }
}

/* ≤ 479px */
@media (max-width: 479px) {
  .hero-ctas .btn { width: 100%; }
  .solution-ctas .btn { flex: 1; }
}
