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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: #0a0c0f;
  color: #e8eaed;
  overflow-x: hidden;
  cursor: none;
}
section#why {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

/* CUSTOM CURSOR */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: #00d4ff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 212, 255, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.12s ease;
}
body:hover .cursor { opacity: 1; }
a:hover ~ .cursor, button:hover ~ .cursor { width: 16px; height: 16px; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #0a0c0f; }
::-webkit-scrollbar-thumb { background: #00d4ff; border-radius: 2px; }

/* SVG NOISE TEXTURE */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* GRID PATTERN BG */
.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ==================== HEADER ==================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 12, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,212,255,0.08);
  transition: border-color 0.3s;
}
header.scrolled { border-bottom-color: rgba(0,212,255,0.18); }

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 36px;
  height: 36px;
}
.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #ffffff;
  letter-spacing: -0.02em;
}
.logo-text span { color: #00d4ff; }

nav { display: flex; gap: 36px; align-items: center; }
nav a {
  font-size: 14px;
  font-weight: 400;
  color: #9aa0ab;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.25s;
  position: relative;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: #00d4ff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
nav a:hover { color: #ffffff; }
nav a:hover::after { transform: scaleX(1); }

.btn-header {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #0a0c0f;
  background: #00d4ff;
  border: none;
  padding: 9px 22px;
  border-radius: 2px;
  cursor: none;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.btn-header:hover { background: #33deff; transform: translateY(-1px); }

/* MOBILE MENU BUTTON */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: none;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
  z-index: 1002;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #e8eaed;
  transition: all 0.3s;
}

/* MOBILE DRAWER */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1003;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-overlay.open { opacity: 1; }

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #0f1318;
  border-left: 1px solid rgba(0,212,255,0.12);
  z-index: 1004;
  padding: 80px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-drawer.open { right: 0; }

.drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: none;
  color: #9aa0ab;
  transition: color 0.2s;
  padding: 4px;
}
.drawer-close:hover { color: #ffffff; }

.mobile-drawer a {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #9aa0ab;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.25s;
}
.mobile-drawer a:hover { color: #00d4ff; }

.mobile-drawer .btn-drawer {
  margin-top: 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #0a0c0f;
  background: #00d4ff;
  border: none;
  padding: 14px 24px;
  border-radius: 2px;
  cursor: none;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s;
}
.mobile-drawer .btn-drawer:hover { background: #33deff; }

/* ==================== HERO ==================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 40px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0,212,255,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(0,80,160,0.08) 0%, transparent 50%),
    #0a0c0f;
}

/* Animated hex pattern */
.hex-pattern {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 580px;
  height: 580px;
  opacity: 0.12;
  animation: rotate-slow 60s linear infinite;
}
@keyframes rotate-slow { to { transform: translateY(-50%) rotate(360deg); } }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #00d4ff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
  padding: 6px 14px 6px 8px;
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 2px;
  background: rgba(0,212,255,0.05);
}
.hero-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #00d4ff;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 24px;
}
h1 .accent { color: #00d4ff; }
h1 .line2 { color: #9aa0ab; }

.hero-desc {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  color: #7a818c;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #0a0c0f;
  background: #00d4ff;
  border: none;
  padding: 14px 32px;
  border-radius: 2px;
  cursor: none;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  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: opacity 0.2s;
}
.btn-primary:hover { background: #00c4ee; transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,212,255,0.25); }
.btn-primary:hover::before { opacity: 1; }

.btn-ghost {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #9aa0ab;
  background: transparent;
  border: 1px solid rgba(154,160,171,0.25);
  padding: 14px 32px;
  border-radius: 2px;
  cursor: none;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: #ffffff; border-color: rgba(255,255,255,0.4); }

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.stat-item {}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-num span { color: #00d4ff; }
.stat-label {
  font-size: 13px;
  color: #5a6070;
  margin-top: 4px;
  font-weight: 300;
}

/* Floating card */
.hero-card {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  background: rgba(15,19,24,0.9);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 4px;
  padding: 28px;
  backdrop-filter: blur(20px);
  animation: float-card 6s ease-in-out infinite;
  z-index: 2;
}
@keyframes float-card {
  0%, 100% { transform: translateY(-50%) translateY(0); }
  50% { transform: translateY(-50%) translateY(-12px); }
}
.hero-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #00d4ff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.hero-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 16px;
  filter: grayscale(30%) brightness(0.8);
}
.hero-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 13px;
}
.hero-card-row:last-child { border-bottom: none; }
.hero-card-row .label { color: #5a6070; }
.hero-card-row .val { color: #e8eaed; font-weight: 500; }
.hero-card-row .val.green { color: #00e5a0; }

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  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.35s; }
.reveal-delay-4 { transition-delay: 0.5s; }

/* ==================== SECTION BASE ==================== */
section {
  position: relative;
  padding: 100px 40px;
  max-width: 1280px;
  margin: 0 auto;
}
section.full-width { max-width: none; padding-left: 0; padding-right: 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: #00d4ff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: #00d4ff;
}

h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  font-weight: 300;
  color: #6a707c;
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 56px;
}

/* ==================== PROBLEM BLOCK ==================== */
#problem {
  background: #0d1014;
  max-width: none;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
#problem .inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.problem-img {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.problem-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  filter: grayscale(40%) brightness(0.7);
  transition: filter 0.4s;
}
.problem-img:hover img { filter: grayscale(0%) brightness(0.85); }
.problem-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0,212,255,0.12);
  border-radius: 4px;
  pointer-events: none;
}
.img-corner {
  position: absolute;
  width: 20px; height: 20px;
  border-color: #00d4ff;
  border-style: solid;
  border-width: 0;
}
.img-corner.tl { top: 0; left: 0; border-top-width: 2px; border-left-width: 2px; }
.img-corner.br { bottom: 0; right: 0; border-bottom-width: 2px; border-right-width: 2px; }

.problem-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.problem-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 3px;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.3s, background 0.3s;
}
.problem-list li:hover {
  border-color: rgba(0,212,255,0.2);
  background: rgba(0,212,255,0.03);
}
.problem-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: #00d4ff;
}
.problem-text strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #e8eaed;
  margin-bottom: 4px;
}
.problem-text p {
  font-size: 13px;
  color: #5a6070;
  line-height: 1.55;
}

/* ==================== VENDORS ==================== */
#vendors { text-align: center; }
.vendors-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.vendor-card {
  background: #0d1014;
  border: 1px solid rgba(255,255,255,0.05);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: background 0.3s, border-color 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.vendor-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: #00d4ff;
  transform: scaleX(0);
  transition: transform 0.3s;
}
.vendor-card:hover { background: rgba(0,212,255,0.03); border-color: rgba(0,212,255,0.2); }
.vendor-card:hover::before { transform: scaleX(1); }
.vendor-logo {
  width: 48px;
  height: 48px;
  color: #6a707c;
  transition: color 0.3s;
}
.vendor-card:hover .vendor-logo { color: #00d4ff; }
.vendor-name {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #6a707c;
  transition: color 0.3s;
  letter-spacing: 0.04em;
}
.vendor-card:hover .vendor-name { color: #e8eaed; }

/* ==================== PROCESS ==================== */
#process {
  background: #0d1014;
  max-width: none;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
#process .inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.process-step {
  background: #0a0c0f;
  border: 1px solid rgba(255,255,255,0.05);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.process-step:hover { border-color: rgba(0,212,255,0.2); }
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: rgba(0,212,255,0.06);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 24px;
  transition: color 0.3s;
}
.process-step:hover .step-num { color: rgba(0,212,255,0.12); }
.step-icon {
  width: 40px;
  height: 40px;
  color: #00d4ff;
  margin-bottom: 20px;
}
.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}
.step-desc {
  font-size: 14px;
  color: #5a6070;
  line-height: 1.65;
}
.step-docs {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.doc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #9aa0ab;
}
.doc-item svg { color: #00e5a0; width: 14px; height: 14px; }

/* ==================== WHY US ==================== */
#why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
#why .why-content {}
.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.why-card {
  background: #0d1014;
  border: 1px solid rgba(255,255,255,0.05);
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.why-card:hover { border-color: rgba(0,212,255,0.2); transform: translateY(-4px); }
.why-card-icon {
  width: 36px;
  height: 36px;
  color: #00d4ff;
  margin-bottom: 16px;
}
.why-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}
.why-card-text {
  font-size: 13px;
  color: #5a6070;
  line-height: 1.6;
}

.why-img {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.why-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  filter: grayscale(30%) brightness(0.75);
}
.why-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(10,12,15,0.95), transparent);
}
.why-img-stat {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}
.why-img-stat span { color: #00d4ff; }
.why-img-stat-label { font-size: 13px; color: #6a707c; margin-top: 4px; }

/* ==================== FAQ ==================== */
#faq {
  background: #0d1014;
  max-width: none;
  border-top: 1px solid rgba(255,255,255,0.04);
}
#faq .inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: none;
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #c8cdd6;
  transition: color 0.25s;
  gap: 16px;
}
.faq-question:hover { color: #ffffff; }
.faq-question.active { color: #00d4ff; }
.faq-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #5a6070;
  transition: transform 0.3s, color 0.25s;
}
.faq-question.active .faq-arrow { transform: rotate(45deg); color: #00d4ff; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-answer.open { max-height: 300px; padding-bottom: 20px; }
.faq-answer p {
  font-size: 14px;
  color: #6a707c;
  line-height: 1.7;
}

/* ==================== CONTACT ==================== */
#contact {
  max-width: none;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-info {}
.contact-links {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: #9aa0ab;
  text-decoration: none;
  transition: color 0.25s;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 3px;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.3s, color 0.3s;
}
.contact-link:hover { border-color: rgba(0,212,255,0.25); color: #ffffff; }
.contact-link svg { color: #00d4ff; width: 20px; height: 20px; flex-shrink: 0; }

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 11px;
  font-weight: 500;
  color: #5a6070;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.form-input, .form-textarea {
  background: #0d1014;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #e8eaed;
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: #3a404a; }
.form-input:focus, .form-textarea:focus { border-color: rgba(0,212,255,0.4); }
.form-textarea { resize: vertical; min-height: 120px; }

.form-submit {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #0a0c0f;
  background: #00d4ff;
  border: none;
  padding: 14px 36px;
  border-radius: 2px;
  cursor: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
}
.form-submit:hover { background: #33deff; transform: translateY(-2px); }

/* ==================== FOOTER ==================== */
footer {
  background: #0a0c0f;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 12px;
  color: #3a404a;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 12px;
  color: #3a404a;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: #6a707c; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1100px) {
  .hero-card { display: none; }
  .vendors-grid { grid-template-columns: repeat(4, 1fr); }
  #why { grid-template-columns: 1fr; }
  #why .why-img { order: -1; }
  #why .why-img img { height: 360px; }
}

@media (max-width: 900px) {
  header { padding: 0 24px; }
  nav, .btn-header { display: none; }
  .menu-toggle { display: flex; }
  .mobile-overlay { display: block; }

  section { padding: 72px 24px; }

  #problem .inner { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
  .problem-img img { height: 280px; }

  .process-steps { grid-template-columns: 1fr; }

  .vendors-grid { grid-template-columns: repeat(3, 1fr); }

  .why-cards { grid-template-columns: 1fr; }

  #faq .inner { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }


  .contact-inner { grid-template-columns: 1fr; gap: 48px; padding: 72px 24px; }
  .form-row { grid-template-columns: 1fr; }

  footer { padding: 24px; flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
}

@media (max-width: 600px) {
    #faq {
    padding: 40px 0 !important;
}
.contact-inner {
    padding: 40px 30px !important;
}
    section#why {
                padding: 20px;
    grid-template-columns: 1fr !important;
}
  h1 { font-size: 36px; }
  .vendors-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 28px; }
}