/* ============================================
   VadászTárs Landing Page — style.css
   Clean SaaS, forest green + amber accents
   ============================================ */

:root {
  /* Colors */
  --forest-900: #1B2E1A;
  --forest-800: #22391F;
  --forest-700: #2E4A2C;      /* primary */
  --forest-600: #3E6339;
  --forest-500: #547E4A;
  --amber-700:  #8E5A22;
  --amber-600:  #B8752E;      /* accent */
  --amber-500:  #D18B3E;
  --amber-100:  #F7E8CE;
  --cream-50:   #FAF6EE;
  --cream-100:  #F1EADC;

  --ink-900:    #14201A;
  --ink-800:    #1F2A1D;
  --ink-700:    #2C3A29;
  --ink-500:    #556457;
  --ink-400:    #7A8778;
  --ink-300:    #A9B2A6;
  --ink-200:    #D6DAD3;
  --ink-100:    #EDEFEB;
  --ink-50:     #F8F9F6;

  --danger:     #B23A48;
  --success:    #3F7A3A;

  /* Layout */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(20, 32, 26, 0.06), 0 1px 3px rgba(20, 32, 26, 0.05);
  --shadow-md: 0 6px 16px rgba(20, 32, 26, 0.08), 0 2px 6px rgba(20, 32, 26, 0.06);
  --shadow-lg: 0 20px 40px rgba(20, 32, 26, 0.14), 0 8px 16px rgba(20, 32, 26, 0.08);
  --shadow-xl: 0 40px 80px rgba(20, 32, 26, 0.18), 0 16px 32px rgba(20, 32, 26, 0.10);

  --ff-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --ff-serif: 'Lora', Georgia, 'Times New Roman', serif;

  --container: 1180px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-800);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest-700); text-decoration: none; transition: color .2s; }
a:hover { color: var(--amber-600); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* A11y skip */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--forest-700);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 999;
}
.skip-link:focus { left: 0; }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 238, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.site-header.scrolled {
  border-bottom-color: var(--ink-100);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-900);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.brand img {
  border-radius: 10px;
  object-fit: contain;
}
.brand-name { font-family: var(--ff-serif); font-weight: 700; }
.brand-accent { color: var(--amber-600); }

.main-nav {
  display: flex;
  gap: 28px;
}
.main-nav a {
  color: var(--ink-700);
  font-weight: 500;
  font-size: 15px;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--amber-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 12px; }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink-800);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 12px 20px 24px;
  gap: 16px;
  background: var(--cream-50);
  border-top: 1px solid var(--ink-100);
}
.mobile-nav a { color: var(--ink-800); font-weight: 500; padding: 8px 0; }
.mobile-nav .btn { margin-top: 8px; text-align: center; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .12s ease, background .2s ease, box-shadow .2s ease, border-color .2s;
  white-space: nowrap;
}
.btn-lg { padding: 14px 26px; font-size: 16px; }
.btn:active { transform: translateY(1px) scale(.99); }

.btn-primary {
  background: var(--forest-700);
  color: #fff;
  box-shadow: 0 6px 18px rgba(46, 74, 44, 0.28);
}
.btn-primary:hover { background: var(--forest-800); color: #fff; box-shadow: 0 10px 24px rgba(46, 74, 44, 0.35); }

.btn-ghost {
  background: transparent;
  color: var(--forest-700);
  border-color: var(--ink-200);
}
.btn-ghost:hover { border-color: var(--forest-700); color: var(--forest-800); }

/* ============ Hero ============ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 100px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 500px at 90% -100px, rgba(184, 117, 46, 0.16), transparent 60%),
    radial-gradient(900px 500px at -100px 400px, rgba(46, 74, 44, 0.12), transparent 60%),
    linear-gradient(180deg, var(--cream-50) 0%, var(--cream-100) 100%);
  z-index: -1;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 74, 44, 0.07);
  color: var(--forest-700);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
  border: 1px solid rgba(46, 74, 44, 0.15);
}
.pulse {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--amber-600);
  box-shadow: 0 0 0 rgba(184, 117, 46, 0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(184, 117, 46, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(184, 117, 46, 0); }
}
.display {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: clamp(36px, 5.4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--ink-900);
}
.grad {
  background: linear-gradient(90deg, var(--forest-700) 0%, var(--amber-600) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.65;
  color: var(--ink-700);
  margin: 0 0 32px;
  max-width: 560px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}
.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-700);
  font-size: 14px;
  font-weight: 500;
}
.hero-badges .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--forest-500);
}

/* Phone mockup */
.hero-visual {
  position: relative;
  min-height: 540px;
}
.phone {
  position: absolute;
  width: 280px;
  height: 570px;
  background: #14201A;
  border-radius: 42px;
  padding: 12px;
  box-shadow: var(--shadow-xl);
  border: 4px solid #0d160b;
}
.phone img {
  border-radius: 30px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.phone-notch {
  position: absolute;
  top: 16px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 22px;
  background: #0d160b;
  border-radius: 20px;
  z-index: 2;
}
.phone-main {
  right: 60px;
  top: 0;
  transform: rotate(3deg);
  z-index: 3;
}
.phone-back {
  right: 280px;
  top: 40px;
  transform: rotate(-5deg);
  opacity: 0.95;
  z-index: 2;
  filter: brightness(.94);
}

.floating-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 5;
}
.floating-card strong { display: block; font-size: 14px; color: var(--ink-900); }
.floating-card small { font-size: 12px; color: var(--ink-500); }
.fc-icon {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(184, 117, 46, 0.15), rgba(46, 74, 44, 0.15));
  border-radius: 10px;
  font-size: 18px;
}
.floating-1 { top: 60px; left: 0; animation: float 6s ease-in-out infinite; }
.floating-2 { bottom: 60px; right: -20px; animation: float 6s ease-in-out infinite reverse; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============ Strip ============ */
.strip {
  background: #fff;
  padding: 28px 0;
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
}
.strip-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.strip-title {
  color: var(--ink-500);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.strip-tags { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.tag {
  padding: 6px 12px;
  background: var(--ink-50);
  border: 1px solid var(--ink-100);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-700);
}

/* ============ Sections ============ */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.eyebrow-alt {
  display: inline-block;
  color: var(--amber-600);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-head h2 {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  margin: 0 0 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--ink-500);
  margin: 0;
}

/* ============ Features ============ */
.features { padding: 100px 0; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.feature {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.feature-icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--fi, var(--forest-700)) 12%, transparent);
  border-radius: 12px;
  font-size: 22px;
  margin-bottom: 20px;
}
.feature h3 {
  font-size: 18px;
  margin: 0 0 8px;
  color: var(--ink-900);
  font-weight: 700;
}
.feature p {
  margin: 0;
  color: var(--ink-500);
  font-size: 15px;
  line-height: 1.6;
}

/* ============ Screens showcase ============ */
.screens {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream-50) 0%, #fff 50%, var(--cream-50) 100%);
}
.screens-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.screen-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.screen-frame {
  position: relative;
  background: #14201A;
  padding: 10px;
  border-radius: 30px;
  border: 3px solid #0d160b;
  box-shadow: var(--shadow-md);
  transition: transform .3s ease, box-shadow .3s ease;
  width: 100%;
  max-width: 260px;
  aspect-ratio: 9 / 19.5;
}
.screen-card:hover .screen-frame {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.screen-frame img {
  border-radius: 22px;
  width: 100%; height: 100%; object-fit: cover;
}
.screen-card figcaption {
  text-align: center;
  max-width: 260px;
}
.screen-card figcaption strong {
  display: block;
  color: var(--ink-900);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.screen-card figcaption span {
  display: block;
  color: var(--ink-500);
  font-size: 14px;
  line-height: 1.5;
}

/* ============ Compliance ============ */
.compliance {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--forest-900) 0%, var(--forest-700) 100%);
  color: var(--cream-50);
}
.compliance-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: center;
}
.compliance .eyebrow-alt { color: var(--amber-500); }
.compliance h2 {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  color: #fff;
  margin: 0 0 20px;
}
.compliance p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 24px;
}
.compliance p strong { color: var(--amber-500); }
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 32px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.55;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 20px; height: 20px;
  background:
    linear-gradient(135deg, var(--amber-600), var(--amber-500));
  border-radius: 50%;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center;
}
.compliance .btn-primary {
  background: var(--amber-600);
  box-shadow: 0 6px 18px rgba(184, 117, 46, 0.35);
}
.compliance .btn-primary:hover { background: var(--amber-700); box-shadow: 0 10px 24px rgba(184, 117, 46, 0.45); }

.compliance-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat {
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.stat-value {
  font-family: var(--ff-serif);
  font-weight: 700;
  color: var(--amber-500);
  font-size: 44px;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-value span { color: rgba(255, 255, 255, 0.55); font-size: 24px; }
.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.4;
}

/* ============ Use cases ============ */
.usecases { padding: 100px 0; background: #fff; }
.uc-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.uc-card {
  padding: 32px;
  background: var(--cream-50);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  transition: transform .2s, border-color .2s;
}
.uc-card:hover { transform: translateY(-4px); border-color: var(--forest-500); }
.uc-card.featured {
  background: linear-gradient(180deg, #22391F 0%, #2E4A2C 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.uc-card.featured h3 { color: #fff; }
.uc-card.featured p { color: rgba(255, 255, 255, 0.85); }
.uc-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(184, 117, 46, 0.12);
  color: var(--amber-600);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.uc-card.featured .uc-badge {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.uc-card h3 {
  font-size: 20px;
  color: var(--ink-900);
  margin: 0 0 12px;
  line-height: 1.35;
  font-weight: 700;
}
.uc-card p {
  color: var(--ink-500);
  font-size: 15px;
  margin: 0;
}

/* ============ FAQ ============ */
.faq { padding: 100px 0; background: var(--cream-50); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq details {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  padding: 4px 20px;
  margin-bottom: 12px;
  transition: box-shadow .2s;
}
.faq details:hover { box-shadow: var(--shadow-sm); }
.faq details[open] {
  border-color: var(--forest-500);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer;
  padding: 16px 0;
  font-weight: 600;
  color: var(--ink-900);
  font-size: 16px;
  list-style: none;
  position: relative;
  padding-right: 32px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  color: var(--forest-700);
  font-size: 24px;
  font-weight: 400;
  transition: transform .2s;
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  color: var(--ink-500);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 16px;
  padding-right: 32px;
}
.faq details p a { color: var(--amber-600); font-weight: 600; }
.faq details p a:hover { color: var(--amber-700); text-decoration: underline; }

/* ============ CTA ============ */
.cta { padding: 100px 0 120px; }
.cta-card {
  background: linear-gradient(135deg, #2E4A2C 0%, #1B2E1A 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.cta-card::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(184, 117, 46, 0.28), transparent 70%);
  border-radius: 50%;
}
.cta-card::after {
  content: "";
  position: absolute;
  bottom: -80px; left: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(46, 74, 44, 0.4), transparent 70%);
  border-radius: 50%;
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card .eyebrow {
  display: inline-flex;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(184, 117, 46, 0.2);
  color: var(--amber-500);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.cta-card h2 {
  font-family: var(--ff-serif);
  font-weight: 700;
  color: #fff;
  font-size: clamp(28px, 3.4vw, 42px);
  margin: 0 0 16px;
  line-height: 1.15;
}
.cta-card p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  margin: 0 0 32px;
  max-width: 560px;
  margin-left: auto; margin-right: auto;
}
.cta-actions { display: flex; justify-content: center; margin-bottom: 20px; }

/* Launch badges (replaces demo CTA) */
.launch-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  min-width: 200px;
}
.launch-badge small {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 2px;
}
.launch-badge strong {
  display: block;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}
.cta-card .btn-primary {
  background: var(--amber-600);
  box-shadow: 0 8px 24px rgba(184, 117, 46, 0.35);
}
.cta-card .btn-primary:hover { background: var(--amber-700); box-shadow: 0 12px 32px rgba(184, 117, 46, 0.45); }
.cta-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* ============ Footer ============ */
.site-footer {
  background: var(--forest-900);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  padding-bottom: 40px;
}
.foot-brand .brand { color: #fff; }
.foot-tag { color: rgba(255, 255, 255, 0.6); font-size: 14px; margin: 12px 0 0; }
.foot-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.foot-col h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.foot-col a {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  padding: 4px 0;
  transition: color .2s;
}
.foot-col a:hover { color: var(--amber-500); }
.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}
.foot-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}
.foot-mini { color: rgba(255, 255, 255, 0.5); }

/* ============ Responsive ============ */
@media (max-width: 960px) {
  .main-nav, .header-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-nav[aria-hidden="false"] { display: flex; }

  .hero { padding: 60px 0 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { min-height: 480px; display: none; }
  .hero-visual.show { display: block; }

  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .screens-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .compliance-inner { grid-template-columns: 1fr; gap: 40px; }
  .uc-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .foot-nav { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .header-inner { height: 60px; }
  .brand-name { font-size: 18px; }

  .features, .screens, .compliance, .usecases, .faq { padding: 70px 0; }
  .cta { padding: 70px 0 90px; }
  .cta-card { padding: 40px 24px; }

  .feature-grid { grid-template-columns: 1fr; }
  .screens-grid { grid-template-columns: 1fr; }
  .compliance-stats { grid-template-columns: 1fr 1fr; }
  .foot-nav { grid-template-columns: 1fr; gap: 20px; }
  .foot-bottom-inner { justify-content: flex-start; }

  .btn { padding: 12px 20px; }
  .btn-lg { padding: 14px 22px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
}

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