/* =============================================
   ZYLOVA — Main Stylesheet
   ============================================= */

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

:root {
  --navy:        #0a0f1e;
  --navy2:       #111827;
  --navy3:       #1a2235;
  --teal:        #00d4aa;
  --teal2:       #00b891;
  --teal-glow:   rgba(0, 212, 170, 0.15);
  --white:       #ffffff;
  --off-white:   #f0f4f8;
  --muted:       #8892a4;
  --card-bg:     rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.08);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-pill: 50px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, .logo, .plan-name, .step-num {
  font-family: 'Syne', sans-serif;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: var(--navy);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-pill);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--teal2); transform: translateY(-2px); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-pill);
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border: 1px solid var(--card-border);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.3); background: var(--card-bg); }

/* =============================================
   NAVIGATION
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 15, 30, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--card-border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; color: var(--white); }
.logo span { color: var(--teal); }

.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a { color: var(--muted); font-size: 0.9rem; font-weight: 400; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--teal);
  color: var(--navy);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--teal2); transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 2rem 1.5rem;
  gap: 1rem;
  border-top: 1px solid var(--card-border);
}
.mobile-menu a { color: var(--muted); font-size: 1rem; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--white); }
.mobile-menu .mobile-cta {
  display: inline-block;
  margin-top: 0.5rem;
  background: var(--teal);
  color: var(--navy);
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-pill);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
}
.mobile-menu.open { display: flex; }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0,212,170,0.13) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 80%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; max-width: 900px; margin-bottom: 3.5rem; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,212,170,0.1);
  border: 1px solid rgba(0,212,170,0.3);
  color: var(--teal);
  padding: 0.375rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1.75rem;
}

.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.75); }
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero h1 .accent { color: var(--teal); }

.hero-content p {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* =============================================
   DEMO AGENT
   ============================================= */
.demo-wrap { position: relative; z-index: 1; width: 100%; max-width: 660px; }

.demo-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 0.875rem;
}

.demo-card {
  background: var(--navy2);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,212,170,0.04);
}

.demo-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.demo-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), #0099ff);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 1rem; font-weight: 800;
  color: var(--navy);
  flex-shrink: 0;
}

.demo-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.9rem; }
.demo-status { font-size: 0.75rem; color: var(--teal); }
.demo-status-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  margin-right: 4px;
  animation: pulse 2s infinite;
}

.chat-area {
  height: 300px;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  scroll-behavior: smooth;
}
.chat-area::-webkit-scrollbar { width: 4px; }
.chat-area::-webkit-scrollbar-track { background: transparent; }
.chat-area::-webkit-scrollbar-thumb { background: var(--card-border); border-radius: 2px; }

.msg {
  max-width: 82%;
  padding: 0.75rem 1rem;
  border-radius: 16px;
  font-size: 0.875rem;
  line-height: 1.6;
  animation: fadeUp 0.3s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.msg-bot {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--card-border);
  color: var(--off-white);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.msg-user {
  background: var(--teal);
  color: var(--navy);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}

.msg-typing {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--card-border);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  padding: 0.875rem 1rem;
}

.typing-dots { display: flex; gap: 5px; align-items: center; }
.typing-dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--muted);
  animation: bounce 1.2s infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30%           { transform: translateY(-6px); }
}

.quick-replies { padding: 0.75rem 1.25rem; display: flex; gap: 0.5rem; flex-wrap: wrap; }

.qr {
  background: transparent;
  border: 1px solid var(--card-border);
  color: var(--muted);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.qr:hover { border-color: var(--teal); color: var(--teal); background: rgba(0,212,170,0.05); }

.chat-input-area {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--card-border);
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.chat-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.1rem;
  color: var(--white);
  font-size: 0.875rem;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.chat-input::placeholder { color: var(--muted); }
.chat-input:focus { border-color: rgba(0,212,170,0.4); }

.chat-send {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--teal);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.chat-send:hover { background: var(--teal2); transform: scale(1.05); }
.chat-send svg { width: 16px; height: 16px; fill: var(--navy); }

/* =============================================
   STATS
   ============================================= */
.stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  padding: 4rem 2rem;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.stat { text-align: center; }
.stat-num { font-family: 'Syne', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--teal); line-height: 1; }
.stat-label { font-size: 0.875rem; color: var(--muted); margin-top: 0.5rem; font-weight: 300; }

/* =============================================
   SECTIONS
   ============================================= */
.section { padding: 6rem 2rem; }
.section-dark { background: var(--navy2); }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-tag {
  font-size: 0.78rem;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 0.875rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 3rem;
}

/* =============================================
   FEATURES
   ============================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--teal-glow), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover { border-color: rgba(0,212,170,0.3); transform: translateY(-3px); }
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 46px; height: 46px;
  background: rgba(0,212,170,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.feature-title { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-desc  { font-size: 0.9rem; color: var(--muted); line-height: 1.65; font-weight: 300; }

/* =============================================
   USE CASES
   ============================================= */
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
}

.usecase {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  cursor: pointer;
  display: block;
}
.usecase:hover { border-color: rgba(0,212,170,0.3); background: rgba(0,212,170,0.04); transform: translateY(-2px); }

.usecase-icon  { font-size: 2rem; margin-bottom: 0.75rem; }
.usecase-title { font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 700; margin-bottom: 0.375rem; }
.usecase-desc  { font-size: 0.8rem; color: var(--muted); font-weight: 300; line-height: 1.5; }

/* =============================================
   HOW IT WORKS
   ============================================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.step-num  { font-size: 3.5rem; font-weight: 800; color: rgba(0,212,170,0.15); line-height: 1; margin-bottom: 1rem; }
.step-title { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-desc  { font-size: 0.9rem; color: var(--muted); line-height: 1.65; font-weight: 300; }

/* =============================================
   PRICING
   ============================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: transform 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured { background: rgba(0,212,170,0.06); border-color: rgba(0,212,170,0.4); }

.popular-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--navy);
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.plan-name  { font-size: 0.8rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.plan-price { font-size: 3rem; font-weight: 800; line-height: 1; margin-bottom: 0.25rem; }
.plan-price span { font-size: 1rem; font-weight: 400; color: var(--muted); }
.plan-desc  { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.5rem; font-weight: 300; }

.plan-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.plan-features li { font-size: 0.875rem; color: var(--off-white); display: flex; gap: 0.625rem; align-items: flex-start; font-weight: 300; }
.plan-features li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.plan-btn {
  display: block;
  width: 100%;
  padding: 0.75rem;
  border-radius: var(--radius-pill);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.plan-btn-outline { background: transparent; border: 1px solid var(--card-border); color: var(--white); }
.plan-btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.plan-btn-filled { background: var(--teal); border: none; color: var(--navy); }
.plan-btn-filled:hover { background: var(--teal2); }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.stars { color: var(--teal); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.9rem; color: var(--off-white); line-height: 1.7; font-weight: 300; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }

.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(0,212,170,0.15);
  border: 1px solid rgba(0,212,170,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem; font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
}

.author-name { font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 700; }
.author-biz  { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }

/* =============================================
   CTA
   ============================================= */
.cta-section { padding: 7rem 2rem; text-align: center; position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0,212,170,0.1), transparent); pointer-events: none; }
.cta-inner { position: relative; z-index: 1; }

.cta-section h2 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -0.025em; margin-bottom: 1rem; line-height: 1.2; }
.cta-section h2 .accent { color: var(--teal); }
.cta-section p  { font-size: 1.05rem; color: var(--muted); font-weight: 300; line-height: 1.7; margin-bottom: 2.5rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =============================================
   FOOTER
   ============================================= */
footer { border-top: 1px solid var(--card-border); padding: 4rem 2rem 2rem; }

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.footer-brand .logo { font-size: 1.5rem; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.875rem; color: var(--muted); font-weight: 300; max-width: 220px; }
.footer-links { display: flex; gap: 4rem; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col-title { font-family: 'Syne', sans-serif; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--white); margin-bottom: 0.25rem; }
.footer-col a { font-size: 0.875rem; color: var(--muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--teal); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--card-border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 300;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.page-hero { padding: 10rem 2rem 5rem; text-align: center; position: relative; overflow: hidden; }
.page-hero .hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0,212,170,0.12), transparent 70%); pointer-events: none; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1rem; position: relative; z-index: 1; }
.page-hero p  { font-size: 1.1rem; color: var(--muted); font-weight: 300; position: relative; z-index: 1; }

.contact-section { padding: 0 2rem 6rem; max-width: 700px; margin: 0 auto; }

.contact-form {
  background: var(--navy2);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 600; color: var(--off-white); }

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--white);
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(0,212,170,0.5); }
.form-group select option { background: var(--navy2); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  background: var(--teal);
  color: var(--navy);
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.875rem 2rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--teal2); transform: translateY(-2px); }

.form-success { display: none; text-align: center; padding: 2rem; color: var(--teal); font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; }

/* =============================================
   INDUSTRY PAGES
   ============================================= */
.industry-hero { padding: 10rem 2rem 5rem; text-align: center; position: relative; overflow: hidden; }
.industry-hero .hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0,212,170,0.12), transparent 70%); pointer-events: none; }
.industry-hero .industry-emoji { font-size: 4rem; margin-bottom: 1rem; position: relative; z-index: 1; }
.industry-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1rem; position: relative; z-index: 1; }
.industry-hero p  { font-size: 1.1rem; color: var(--muted); font-weight: 300; max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.7; position: relative; z-index: 1; }
.industry-hero .hero-btns { position: relative; z-index: 1; justify-content: center; display: flex; }

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-section { max-width: 760px; margin: 0 auto; padding: 10rem 2rem 6rem; }
.legal-section h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 0.5rem; }
.legal-section .legal-date { color: var(--muted); font-size: 0.875rem; margin-bottom: 3rem; }
.legal-section h2 { font-size: 1.3rem; font-weight: 700; margin: 2.5rem 0 0.75rem; color: var(--teal); }
.legal-section p  { font-size: 0.95rem; color: var(--muted); line-height: 1.8; margin-bottom: 1rem; font-weight: 300; }
.legal-section ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-section ul li { font-size: 0.95rem; color: var(--muted); line-height: 1.8; font-weight: 300; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .stats { gap: 2rem; }
  .stat-num { font-size: 2rem; }
  .features-grid, .usecases-grid, .steps-grid,
  .pricing-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 2rem; }
  .footer-links { gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form { padding: 1.75rem; }
}

@media (max-width: 480px) {
  .hero-btns, .cta-btns { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }
}
