/* ===================================================
   ZWEB Security Lock - Landing Page Styles
   =================================================== */

:root {
  --color-primary: #005249;
  --color-primary-dark: #003d36;
  --color-primary-light: #007a6e;
  --color-mint: #7FD1B9;
  --color-mint-soft: #A8E6CF;
  --color-mint-bg: #E8F4F1;
  --color-cream: #FAF7F0;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F5F8F7;
  --color-text: #1a2e2a;
  --color-text-muted: #5f7570;
  --color-border: #E2EAE7;
  --color-warning: #C9821B;
  --color-danger: #B23A3A;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 2px 8px rgba(0, 82, 73, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 82, 73, 0.08);
  --shadow-lg: 0 18px 48px rgba(0, 82, 73, 0.12);

  --font: 'Be Vietnam Pro', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --container-max: 1200px;
  --container-narrow: 860px;
  --header-h: 72px;

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 .6em;
  color: var(--color-text);
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2rem, 3.6vw, 3rem); }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.25rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 24px;
}
.container-narrow { max-width: var(--container-narrow); }

.section {
  padding: clamp(64px, 8vw, 110px) 0;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: .4em;
}
.section-sub {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}
.section-title-light { color: #fff; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-mint-bg);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow-light {
  color: var(--color-mint);
  background: rgba(127, 209, 185, 0.12);
}

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .96rem;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-block { display: flex; width: 100%; }

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 82, 73, 0.22);
}
.btn-primary:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 82, 73, 0.28);
}
.btn-outline {
  background: #fff;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: rgba(0, 82, 73, 0.2);
}
.btn-ghost:hover {
  background: var(--color-mint-bg);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--color-border);
  background: rgba(255, 255, 255, 0.96);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--color-text);
  font-size: 1.05rem;
}
.brand strong { color: var(--color-primary); font-weight: 800; }
.brand-light { color: #fff; }
.brand-light strong { color: var(--color-mint); }

.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.nav-menu {
  display: flex;
  gap: 4px;
}
.nav-link {
  display: inline-block;
  padding: 8px 14px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: 999px;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-link:hover { color: var(--color-primary); background: var(--color-mint-bg); }

.btn-header-cta { font-size: .9rem; padding: 10px 18px; }

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 10px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 9vw, 110px) 0 clamp(70px, 9vw, 120px);
  background:
    radial-gradient(1100px 500px at 110% -10%, rgba(127, 209, 185, 0.18), transparent 60%),
    radial-gradient(900px 600px at -10% 80%, rgba(0, 82, 73, 0.06), transparent 70%),
    linear-gradient(180deg, #FBFDFC 0%, #F2F8F6 100%);
}
.hero-bg-deco {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(0, 82, 73, 0.08) 1px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: .35;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.4), transparent 70%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.4), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-title { font-size: clamp(2rem, 4vw, 3.2rem); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  font-size: .92rem;
  color: var(--color-text-muted);
}
.hero-trust li { display: inline-flex; align-items: center; gap: 8px; }
.dot {
  width: 8px; height: 8px;
  background: var(--color-mint);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(127, 209, 185, 0.28);
  flex-shrink: 0;
}

/* Hero visual */
.hero-visual {
  position: relative;
  min-height: 460px;
}
.hero-3d {
  position: relative;
  width: 100%;
  height: 460px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 50%, rgba(127, 209, 185, 0.18), transparent 60%),
    linear-gradient(160deg, #003d36 0%, #005249 65%, #006b5e 100%);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 82, 73, 0.25);
}
.hero-3d canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.hero-3d-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
}
.hero-3d.fallback .hero-3d-fallback { display: flex; }
.hero-3d.fallback canvas { display: none; }
.fallback-shield { text-align: center; color: #fff; padding: 24px; }
.fallback-shield svg { margin: 0 auto 16px; filter: drop-shadow(0 0 12px rgba(127, 209, 185, 0.45)); }
.fallback-title { font-weight: 600; margin: 0 0 12px; font-size: 1.05rem; }
.fallback-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.fallback-chips span {
  font-size: .8rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(127, 209, 185, 0.16);
  color: var(--color-mint);
  border: 1px solid rgba(127, 209, 185, 0.3);
}

/* Floating labels */
.float-label {
  position: absolute;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--color-mint);
  background: rgba(0, 61, 54, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 6px 12px;
  border: 1px solid rgba(127, 209, 185, 0.35);
  border-radius: 999px;
  text-transform: uppercase;
  pointer-events: none;
  animation: floaty 5s ease-in-out infinite;
}
.label-locked { top: 14%; left: 8%; }
.label-token  { top: 22%; right: 8%; animation-delay: 1.2s; }
.label-audit  { bottom: 18%; left: 12%; animation-delay: 2.4s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* Status card */
.status-card {
  position: absolute;
  right: -10px;
  bottom: -28px;
  width: min(310px, 90%);
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}
.status-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}
.status-indicator {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--color-mint);
  box-shadow: 0 0 0 4px rgba(127, 209, 185, 0.35);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(127, 209, 185, 0.35); }
  50%      { box-shadow: 0 0 0 8px rgba(127, 209, 185, 0.08); }
}
.status-title { font-weight: 600; font-size: .95rem; }

.status-list { font-size: .88rem; }
.status-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
}
.status-list li span { color: var(--color-text-muted); }
.status-list li strong { color: var(--color-text); font-weight: 600; }
.status-locked { color: var(--color-primary) !important; }
.status-on { color: var(--color-mint) !important; background: var(--color-mint-bg); padding: 2px 10px; border-radius: 999px; font-size: .8rem;}

/* ---------- Cards (shared) ---------- */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 82, 73, 0.2);
}

/* ---------- Problems ---------- */
.problems { background: var(--color-bg-alt); }
.pain-card { display: flex; flex-direction: column; gap: 6px; }
.pain-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: #FFEAEA;
  color: var(--color-danger);
  font-weight: 800;
  margin-bottom: 8px;
  font-size: 1.2rem;
}
.pain-card p { color: var(--color-text-muted); margin: 0; }

/* ---------- Solution / Steps ---------- */
.steps-grid { gap: 24px; }
.step-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  border: 1px solid var(--color-border);
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  display: inline-block;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--color-primary);
  background: var(--color-mint-bg);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  letter-spacing: .04em;
}
.step-card p { color: var(--color-text-muted); margin: 0; }

/* ---------- Features ---------- */
.features { background: linear-gradient(180deg, #fff 0%, #F5F8F7 100%); }
.feature-grid { gap: 20px; }
.feature-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 82, 73, 0.2);
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--color-mint-bg);
  color: var(--color-primary);
  margin-bottom: 14px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 1.05rem; margin-bottom: .5em; }
.feature-card p { font-size: .95rem; color: var(--color-text-muted); margin: 0; }

/* ---------- For who ---------- */
.audience-grid { gap: 18px; }
.audience-card {
  display: flex;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.audience-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.audience-wide { grid-column: 1 / -1; }
.check-icon {
  width: 22px; height: 22px;
  color: var(--color-primary);
  background: var(--color-mint-bg);
  padding: 6px;
  border-radius: 8px;
  flex-shrink: 0;
  box-sizing: content-box;
}
.audience-card h3 { font-size: 1.05rem; margin-bottom: .35em; }
.audience-card p { font-size: .95rem; color: var(--color-text-muted); margin: 0; }

/* ---------- Pricing ---------- */
.pricing { background: var(--color-bg-alt); }
.pricing-grid { gap: 28px; max-width: 980px; margin-inline: auto; }
.pricing-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-featured {
  background: linear-gradient(160deg, #004a42 0%, #005249 60%, #006a5d 100%);
  border-color: transparent;
  color: #fff;
}
.pricing-featured .plan-name,
.pricing-featured .plan-desc,
.pricing-featured .plan-features li,
.pricing-featured .price-amount,
.pricing-featured .price-unit { color: #fff; }
.pricing-featured .plan-features li::before { color: var(--color-mint); }

.plan-badge {
  position: absolute;
  top: -14px;
  right: 28px;
  background: var(--color-mint);
  color: var(--color-primary-dark);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(127, 209, 185, 0.45);
}
.plan-name { font-size: 1.25rem; margin-bottom: 10px; }
.plan-price { margin-bottom: 14px; }
.price-amount {
  display: inline-block;
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--color-primary);
}
.price-unit { color: var(--color-text-muted); margin-left: 6px; font-size: .92rem; }
.plan-desc { color: var(--color-text-muted); margin-bottom: 20px; }
.plan-features { margin-bottom: 28px; }
.plan-features li {
  position: relative;
  padding: 8px 0 8px 26px;
  font-size: .95rem;
  border-bottom: 1px dashed rgba(0, 82, 73, 0.08);
}
.pricing-featured .plan-features li { border-bottom-color: rgba(255,255,255,0.12); }
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--color-primary);
  font-weight: 800;
}
.pricing-card .btn { margin-top: auto; }

.pricing-note {
  margin-top: 36px;
  text-align: center;
  color: var(--color-text-muted);
  font-size: .92rem;
  max-width: 800px;
  margin-inline: auto;
}

/* ---------- Process ---------- */
.process-list {
  counter-reset: step;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
.process-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.process-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.process-item h3 { font-size: 1.05rem; margin-bottom: .3em; }
.process-item p { color: var(--color-text-muted); margin: 0; font-size: .95rem; }

/* ---------- Demo ---------- */
.demo { background: var(--color-bg-alt); }
.demo-wrap {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 36px;
  align-items: center;
}
.demo-card {
  background: #0d2a26;
  color: #d6efe7;
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  box-shadow: var(--shadow-lg);
  font-family: 'SFMono-Regular', 'Consolas', 'Monaco', monospace;
}
.demo-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px dashed rgba(127, 209, 185, 0.25);
  font-size: .85rem;
}
.demo-badge {
  background: rgba(127, 209, 185, 0.18);
  color: var(--color-mint);
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: .04em;
}
.demo-time { color: #88aea7; }
.demo-log li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  padding: 7px 0;
  font-size: .9rem;
}
.demo-log li span { color: #88aea7; }
.demo-log li strong { color: #e8f8f3; font-weight: 600; }
.level-warn { color: #FFD9A6 !important; }
.level-block { color: #FFB4B4 !important; }

.demo-note h3 { margin-bottom: .4em; }
.demo-note p { color: var(--color-text-muted); margin-bottom: 18px; }
.demo-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: .95rem;
  color: var(--color-text);
}

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.faq-item:hover { box-shadow: var(--shadow-sm); border-color: rgba(0, 82, 73, 0.2); }
.faq-item.open { box-shadow: var(--shadow-md); border-color: rgba(0, 82, 73, 0.25); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
  cursor: pointer;
}
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.faq-icon::before {
  top: 11px; left: 4px; right: 4px; height: 2px;
}
.faq-icon::after {
  top: 4px; left: 11px; bottom: 4px; width: 2px;
}
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
.faq-item.open .faq-answer { max-height: 320px; }
.faq-answer p {
  padding: 0 22px 22px;
  color: var(--color-text-muted);
  margin: 0;
}

/* ---------- Contact ---------- */
.contact {
  background:
    radial-gradient(900px 400px at 80% 20%, rgba(127, 209, 185, 0.12), transparent 60%),
    linear-gradient(160deg, #003d36 0%, #005249 60%, #006a5d 100%);
  color: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: start;
}
.contact-sub { color: #c8dcd6; margin-bottom: 32px; }
.contact-info h3 { color: #fff; font-size: 1.05rem; margin-bottom: 12px; }
.contact-info ul li {
  padding: 6px 0;
  color: #c8dcd6;
  font-size: .95rem;
}
.contact-info ul li span { color: var(--color-mint); margin-right: 6px; }
.contact-info a { color: #fff; border-bottom: 1px dashed rgba(127, 209, 185, 0.45); }
.contact-info a:hover { color: var(--color-mint); }

.contact-form-wrap {
  background: #fff;
  color: var(--color-text);
  padding: 32px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.form-row { margin-bottom: 16px; }
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-row-2 > div { display: flex; flex-direction: column; }
.form-row label,
.form-row-2 label {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-text);
}
.form-row label span { color: var(--color-danger); }
.form-row input,
.form-row select,
.form-row textarea,
.form-row-2 input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .95rem;
  color: var(--color-text);
  background: #fff;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus,
.form-row-2 input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(0, 82, 73, 0.12);
}
.form-row textarea { resize: vertical; min-height: 90px; }

.form-success {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: var(--color-mint-bg);
  color: var(--color-primary-dark);
  border: 1px solid rgba(127, 209, 185, 0.6);
  font-size: .92rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.form-success strong { color: var(--color-primary); }

/* ---------- Footer ---------- */
.site-footer {
  background: #00302b;
  color: #c8dcd6;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding: 60px 24px 40px;
}
.footer-brand p { margin-top: 14px; color: #c8dcd6; max-width: 320px; }
.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 14px;
}
.footer-col ul li {
  padding: 5px 0;
  font-size: .92rem;
}
.footer-col a:hover { color: var(--color-mint); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  font-size: .88rem;
  color: #88aea7;
  text-align: center;
}
.footer-bottom p { margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { min-height: 420px; }
  .demo-wrap { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    padding: 16px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s var(--ease), transform .2s var(--ease);
    display: block;
  }
  .site-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-menu { flex-direction: column; gap: 4px; }
  .nav-link { display: block; padding: 12px 14px; }
  .menu-toggle { display: inline-flex; }
  .btn-header-cta { display: none; }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .audience-wide { grid-column: auto; }
  .pricing-grid { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; padding: 48px 24px 32px; }
  .status-card { right: 12px; }
}

@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero-3d { height: 380px; }
  .hero { padding-top: 56px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .status-card { right: 8px; left: 8px; width: auto; bottom: -36px; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .pricing-card { padding: 28px 22px; }
  .demo-log li { grid-template-columns: 1fr; gap: 2px; }
  .demo-log li span { font-size: .78rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ===================================================
   CONTACT - New cards (replaces old form)
   =================================================== */
.contact {
  position: relative;
  overflow: hidden;
}
.contact .container { position: relative; z-index: 2; }

.contact-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(127, 209, 185, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 209, 185, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 35%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 35%, transparent 75%);
  pointer-events: none;
  z-index: 1;
}
.contact-bg-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  top: -200px;
  right: -150px;
  background: radial-gradient(circle, rgba(127, 209, 185, 0.22), transparent 65%);
  pointer-events: none;
  z-index: 1;
  filter: blur(20px);
}

.contact .section-head { margin-bottom: 56px; }
.contact .contact-sub {
  color: #c8dcd6;
  max-width: 720px;
  margin-inline: auto;
  font-size: 1.05rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin-inline: auto;
}

.contact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 32px 28px 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(127, 209, 185, 0.22);
  border-radius: var(--radius-xl);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(127, 209, 185, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
}
.contact-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(127, 209, 185, 0.6);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(127, 209, 185, 0.18);
}
.contact-card:hover::before { opacity: 1; }
.contact-card:hover .contact-icon {
  transform: scale(1.06) rotate(-3deg);
  background: var(--color-mint);
  color: var(--color-primary-dark);
}
.contact-card:hover .contact-cta { gap: 12px; color: var(--color-mint-soft); }
.contact-card:hover .contact-cta svg { transform: translateX(4px); }

.contact-card-highlight {
  background: linear-gradient(160deg, rgba(127, 209, 185, 0.22), rgba(127, 209, 185, 0.08) 70%);
  border-color: rgba(127, 209, 185, 0.5);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.contact-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  background: var(--color-mint);
  padding: 5px 11px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(127, 209, 185, 0.35);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(127, 209, 185, 0.18);
  color: var(--color-mint);
  margin-bottom: 12px;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.contact-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

.contact-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-mint);
  opacity: .9;
}

.contact-value {
  font-size: 1.18rem;
  font-weight: 700;
  color: #fff;
  word-break: break-word;
  line-height: 1.3;
  margin-bottom: 14px;
}

.contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--color-mint);
  margin-top: auto;
  padding-top: 6px;
  transition: gap .25s var(--ease), color .25s var(--ease);
}
.contact-cta svg {
  width: 18px;
  height: 18px;
  transition: transform .25s var(--ease);
}

/* ===================================================
   FOOTER - Simplified (2 columns)
   =================================================== */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  padding: 60px 24px 40px;
}
.footer-col ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 24px;
}

/* ===================================================
   SCROLL REVEAL ANIMATIONS
   =================================================== */
.reveal {
  opacity: 0;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
.reveal-up    { transform: translateY(32px); }
.reveal-left  { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px); }
.reveal-scale { transform: scale(.94); }

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===================================================
   TOAST (anti-inspect deterrent feedback)
   =================================================== */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translate(-50%, 24px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 48, 43, 0.95);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(127, 209, 185, 0.22);
  font-size: .92rem;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  max-width: calc(100vw - 32px);
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
.toast-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--color-mint);
  flex-shrink: 0;
}
.toast-icon svg { width: 22px; height: 22px; display: block; }
.toast-msg { line-height: 1.3; }

/* ===================================================
   EXTRA RESPONSIVE FOR NEW SECTIONS
   =================================================== */
@media (max-width: 1024px) {
  .contact-cards { grid-template-columns: 1fr; max-width: 520px; }
}
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-col ul { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .contact-card { padding: 26px 22px; }
  .contact-value { font-size: 1.05rem; }
  .toast { bottom: 16px; font-size: .85rem; padding: 10px 14px; }
}
