/* ==========================================================
   EzPzeApp — Marketing Site Stylesheet
   Brand colors pulled from the ezPze logo (Google-style palette)
   ========================================================== */

:root {
  --ez-blue: #4285F4;
  --ez-red: #EA4335;
  --ez-yellow: #FBBC04;
  --ez-green: #34A853;
  --ez-gold: #F2A900;   /* "App" badge accent — primary CTA color */

  --navy: #14213D;
  --navy-light: #1E2E52;
  --text-dark: #1A1A2E;
  --text-body: #4A4A58;
  --bg-white: #FFFFFF;
  --bg-light: #F7F8FA;
  --border-light: #E7E9EE;

  --radius: 12px;
  --shadow: 0 4px 20px rgba(20, 33, 61, 0.08);
  --max-width: 1140px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 { color: var(--text-dark); font-weight: 700; line-height: 1.25; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 12px; }
h3 { font-size: 1.15rem; margin-bottom: 8px; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ez-blue);
  margin-bottom: 10px;
}

.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head p { font-size: 1.05rem; }
.section-sub { font-size: 0.92rem !important; color: #6B7280; margin-top: 4px; }

section { padding: 88px 0; }
.bg-light { background: var(--bg-light); }
.bg-navy { background: var(--navy); color: #C9D2E8; }
.bg-navy h2, .bg-navy h3 { color: #FFFFFF; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--ez-gold); color: #1A1A2E; }
.btn-primary:hover { box-shadow: 0 8px 20px rgba(242, 169, 0, 0.35); }
.btn-outline { border-color: rgba(255,255,255,0.5); color: inherit; }
.btn-outline.dark { border-color: var(--ez-blue); color: var(--ez-blue); }
.btn-outline:hover { background: rgba(255,255,255,0.08); }
.btn-outline.dark:hover { background: rgba(66,133,244,0.08); }
.btn-block { width: 100%; text-align: center; }

/* ---------- Logo ---------- */
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.4rem; font-weight: 800; }
.logo-img { display: block; height: 34px; width: auto; }
.footer-about .logo-img { height: 30px; }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-light);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-weight: 600; font-size: 0.92rem; color: var(--text-dark); }
.nav-links a:hover { color: var(--ez-blue); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text-dark); }

/* ---------- Hero ---------- */
.hero { padding: 96px 0 72px; text-align: center; background: linear-gradient(180deg, #FFFFFF 0%, #F7F8FA 100%); position: relative; overflow: hidden; }
.hero-mascot {
  position: absolute;
  right: 3%;
  bottom: 0;
  width: 170px;
  height: auto;
  animation: mascotFloat 3.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes mascotFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@media (max-width: 1100px) { .hero-mascot { display: none; } }
.hero h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); max-width: 820px; margin: 0 auto 20px; }
.hero .gradient-text {
  background: linear-gradient(90deg, var(--ez-blue), var(--ez-green), var(--ez-yellow), var(--ez-red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead { font-size: 1.15rem; max-width: 640px; margin: 0 auto 32px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.hero-note { font-size: 0.85rem; color: #8A8FA3; }
.hero-since { font-size: 0.8rem; color: #A2A8BC; margin-top: 6px; }
.hero-industries { margin-top: 40px; font-size: 0.85rem; color: #8A8FA3; }
.hero-industries strong { color: var(--text-dark); }

/* ---------- Industries icon grid ---------- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
}
.industry-card { text-align: center; }
.industry-icon-circle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.industry-icon-circle svg { width: 26px; height: 26px; }
.industry-icon-circle.c1 { background: rgba(66,133,244,0.12); color: var(--ez-blue); }
.industry-icon-circle.c2 { background: rgba(52,168,83,0.12); color: var(--ez-green); }
.industry-icon-circle.c3 { background: rgba(251,188,4,0.16); color: #B58300; }
.industry-icon-circle.c4 { background: rgba(234,67,53,0.12); color: var(--ez-red); }
.industry-label { font-size: 0.82rem; font-weight: 600; color: var(--text-dark); }

/* ---------- Problem / Solution comparison box ---------- */
.compare-box {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.compare-header { display: grid; grid-template-columns: 1fr 1fr; }
.compare-col-head {
  padding: 18px 28px;
  font-weight: 800;
  font-size: 1rem;
  text-align: center;
}
.compare-col-head.without { background: rgba(234,67,53,0.1); color: var(--ez-red); border-bottom: 3px solid var(--ez-red); }
.compare-col-head.with { background: rgba(52,168,83,0.1); color: var(--ez-green); border-bottom: 3px solid var(--ez-green); }
.compare-row { display: grid; grid-template-columns: 1fr 1fr; }
.compare-row:nth-child(odd) .compare-cell { background: var(--bg-light); }
.compare-cell {
  display: flex;
  gap: 12px;
  padding: 20px 28px;
  font-size: 0.94rem;
  border-bottom: 1px solid var(--border-light);
}
.compare-cell.without { border-right: 1px solid var(--border-light); }
.compare-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.compare-icon-circle svg { width: 24px; height: 24px; }
.compare-icon-circle.without { background: rgba(234,67,53,0.12); color: var(--ez-red); }
.compare-icon-circle.with { background: rgba(52,168,83,0.12); color: var(--ez-green); }
.compare-cell b { color: var(--text-dark); display: block; margin-bottom: 2px; }
.compare-row:last-child .compare-cell { border-bottom: none; }

/* ---------- How it Works steps ---------- */
.steps-row { display: flex; align-items: flex-start; justify-content: center; gap: 8px; flex-wrap: wrap; }
.step-card { flex: 1; min-width: 190px; max-width: 240px; text-align: center; }
.step-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ez-blue);
  color: #fff;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.step-arrow { align-self: center; font-size: 1.4rem; color: #C7CCDA; margin-top: 6px; }
.step-card p { font-size: 0.9rem; }

/* ---------- Feature grid ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-top: 4px solid var(--ez-blue);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.feature-content { flex: 1; min-width: 0; }
.feature-card:nth-child(4n+2) { border-top-color: var(--ez-green); }
.feature-card:nth-child(4n+3) { border-top-color: var(--ez-yellow); }
.feature-card:nth-child(4n+4) { border-top-color: var(--ez-red); }
.feature-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(66,133,244,0.1);
  color: var(--ez-blue);
}
.feature-icon-circle svg { width: 24px; height: 24px; }
.feature-card:nth-child(4n+2) .feature-icon-circle { background: rgba(52,168,83,0.1); color: var(--ez-green); }
.feature-card:nth-child(4n+3) .feature-icon-circle { background: rgba(251,188,4,0.16); color: #B58300; }
.feature-card:nth-child(4n+4) .feature-icon-circle { background: rgba(234,67,53,0.1); color: var(--ez-red); }
.feature-card .tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ez-green);
  background: rgba(52,168,83,0.1);
  padding: 3px 9px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.feature-card p { font-size: 0.92rem; }

/* ---------- Coming soon band ---------- */
.soon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.soon-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 26px;
}
.soon-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  background: var(--ez-gold);
  color: #1A1A2E;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.soon-card p { color: #AEB8D4; font-size: 0.92rem; }

/* ---------- Integrations ---------- */
.integration-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.integration-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 20px 12px;
  text-align: center;
  background: #fff;
  box-shadow: var(--shadow);
}
.integration-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(66,133,244,0.1);
  color: var(--ez-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.integration-icon-circle svg { width: 22px; height: 22px; }
.integration-label { font-size: 0.8rem; font-weight: 600; color: var(--text-dark); }
.integration-note { text-align: center; font-size: 0.88rem; color: #8A8FA3; margin-top: 24px; }

/* ---------- Testimonial slider ---------- */
.testimonial-slider { max-width: 900px; margin: 0 auto; }
.testimonial-viewport { overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.4s ease; }
.testimonial-slide { flex: 0 0 100%; }
.testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 20px; }
.testimonial-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: #fff;
  color: var(--text-dark);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-arrow:hover { background: var(--bg-light); }
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-light);
  cursor: pointer;
  display: inline-block;
}
.testimonial-dots .dot.active { background: var(--ez-blue); }

/* ---------- Testimonial ---------- */
.testimonial-row { display: flex; align-items: center; gap: 24px; }
.testimonial-card {
  flex: 1;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  text-align: center;
}
.testimonial-card .stars { color: var(--ez-gold); font-size: 1.2rem; margin-bottom: 16px; letter-spacing: 3px; }
.testimonial-card blockquote { font-size: 1.1rem; color: var(--text-dark); font-style: italic; margin-bottom: 20px; }
.testimonial-card .author { font-weight: 700; color: var(--text-dark); }
.testimonial-card .role { font-size: 0.85rem; color: #8A8FA3; }
.testimonial-note {
  text-align: center;
  font-size: 0.8rem;
  color: #B5471B;
  background: #FFF3E9;
  border: 1px dashed #E2A272;
  border-radius: 8px;
  padding: 10px 16px;
  max-width: 760px;
  margin: 20px auto 0;
}
.testimonial-media {
  flex: 0 0 280px;
  width: 280px;
  background: var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-media.is-video { aspect-ratio: 16/9; }
.testimonial-media.is-video iframe { width: 100%; height: 100%; border: 0; display: block; }
.testimonial-media.is-photo { flex-basis: 220px; width: 220px; aspect-ratio: 1/1; }
.testimonial-media.is-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.price-card.popular { border: 2px solid var(--ez-gold); position: relative; transform: scale(1.03); }
.price-card .popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ez-gold);
  color: #1A1A2E;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
}
.price-card .price { font-size: 1.4rem; font-weight: 800; color: var(--text-dark); margin: 10px 0 4px; }
.price-card .price span { font-size: 0.85rem; font-weight: 500; color: #8A8FA3; }
.price-card ul { margin: 20px 0 28px; flex-grow: 1; }
.price-card li { display: flex; gap: 8px; font-size: 0.9rem; margin-bottom: 12px; }
.price-card li .icon { color: var(--ez-green); font-weight: 800; }

/* ---------- Pricing calculator (technician slider) ---------- */
.calc-card {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 40px 32px;
}
.calc-top { text-align: center; margin-bottom: 16px; }
.calc-currency-note { font-size: 0.85rem; color: #8A8FA3; margin: 12px 0 0; }

/* Billing cycle + currency toggles (share the same pill-group pattern) */
.billing-toggle, .currency-toggle {
  display: inline-flex;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  padding: 4px;
  background: var(--bg-light);
  flex-wrap: wrap;
  justify-content: center;
}
.currency-toggle { margin-top: 10px; }
.billing-toggle button, .currency-toggle button {
  border: none;
  background: transparent;
  padding: 9px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 7px;
}
.billing-toggle button.active, .currency-toggle button.active { background: var(--ez-blue); color: #fff; }
.billing-toggle button .save-tag {
  font-size: 0.68rem;
  font-weight: 800;
  background: var(--ez-gold);
  color: #1A1A2E;
  padding: 2px 7px;
  border-radius: 20px;
}
.billing-toggle button.active .save-tag { background: rgba(255,255,255,0.9); }

.calc-slider-row { margin: 28px 0 10px; }
.calc-slider-row label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text-dark); margin-bottom: 12px; }
.calc-input-row { display: flex; align-items: flex-start; gap: 16px; }
.slider-wrap { flex: 1; position: relative; padding-bottom: 22px; }
input[type="range"].tech-slider {
  width: 100%;
  height: 6px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--ez-blue), var(--ez-green), var(--ez-yellow), var(--ez-red));
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  display: block;
}
.slider-ticks { position: relative; width: 100%; height: 16px; margin-top: 6px; }
.slider-ticks .tick {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 600;
  color: #A2A8BC;
  white-space: nowrap;
}
input[type="range"].tech-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--navy);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}
input[type="range"].tech-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--navy);
  cursor: pointer;
}
.tech-number-input {
  width: 76px;
  flex-shrink: 0;
  padding: 8px 10px;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  color: var(--text-dark);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background: var(--bg-light);
}
.tech-number-input:focus { outline: 2px solid var(--ez-blue); outline-offset: 1px; }
.calc-plans-legend-text { font-size: 0.72rem; color: #A2A8BC; margin-bottom: 24px; }
.calc-result { text-align: center; background: var(--bg-light); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; }
.calc-plan-name { display: inline-block; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ez-blue); background: rgba(66,133,244,0.1); padding: 4px 12px; border-radius: 20px; margin-bottom: 14px; }
.calc-price { font-size: 2.2rem; font-weight: 800; color: var(--text-dark); }
.calc-price span { font-size: 1rem; font-weight: 500; color: #8A8FA3; }
.calc-breakdown { margin: 6px 0 14px; }
.breakdown-line { display: flex; justify-content: space-between; font-size: 0.88rem; color: var(--text-body); padding: 6px 0; border-bottom: 1px dashed var(--border-light); text-align: left; }
.breakdown-line.total { border-bottom: none; border-top: 2px solid var(--border-light); margin-top: 4px; padding-top: 12px; font-size: 1.1rem; font-weight: 800; color: var(--text-dark); }
.calc-addon-note { font-size: 0.8rem; color: #8A8FA3; margin-top: 10px; }
.voucher-toggle-text {
  text-align: center;
  font-size: 0.82rem;
  color: #A2A8BC;
  cursor: pointer;
  margin-bottom: 8px;
  text-decoration: underline dotted;
  text-underline-offset: 3px;
}
.voucher-toggle-text:hover { color: #8A8FA3; }
.voucher-row { display: flex; gap: 10px; max-width: 360px; margin: 0 auto 8px; }
.voucher-input {
  flex: 1;
  padding: 10px 14px;
  font-size: 0.88rem;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background: var(--bg-light);
  color: var(--text-dark);
}
.voucher-input:focus { outline: 2px solid var(--ez-blue); outline-offset: 1px; }
.voucher-apply-btn { padding: 10px 18px; font-size: 0.85rem; white-space: nowrap; }
.voucher-message { text-align: center; font-size: 0.82rem; margin-bottom: 18px; min-height: 1.2em; }
.voucher-message.success { color: var(--ez-green); font-weight: 600; }
.voucher-message.error { color: var(--ez-red); font-weight: 600; }
.calc-features-note { text-align: center; font-size: 0.88rem; margin-bottom: 22px; }
.calc-setup-note { text-align: center; font-size: 0.82rem; color: #8A8FA3; margin-bottom: 22px; }
.calc-cta { text-align: center; margin-bottom: 18px; }
.secure-badges { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; font-size: 0.78rem; color: #8A8FA3; }
.secure-badges .badge-item { display: flex; align-items: center; gap: 6px; }
.secure-badges svg { width: 14px; height: 14px; }

/* ---------- Final CTA ---------- */
.cta-band { text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #AEB8D4; max-width: 520px; margin: 0 auto 28px; }

/* ---------- Footer ---------- */
footer { background: var(--navy); color: #8A93B3; padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.footer-grid h4 { color: #fff; font-size: 0.9rem; margin-bottom: 16px; }
.footer-grid ul li { margin-bottom: 10px; font-size: 0.88rem; }
.footer-grid ul li a:hover { color: #fff; }
.footer-about p { font-size: 0.88rem; max-width: 300px; margin-top: 12px; }
.footer-corp-link { margin-top: 10px !important; }
.footer-corp-link a { color: var(--ez-blue); font-weight: 600; font-size: 0.85rem; }
.footer-corp-link a:hover { text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a:hover { color: #fff; }

/* ---------- Book a Demo modal ---------- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20,33,61,0.55);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  max-width: 440px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: none;
  background: none;
  font-size: 1.6rem;
  line-height: 1;
  color: #8A8FA3;
  cursor: pointer;
}
.modal-close:hover { color: var(--text-dark); }
.modal-box h3 { font-size: 1.3rem; margin-bottom: 8px; }
.modal-subtext { font-size: 0.9rem; margin-bottom: 20px; }
.modal-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-dark); margin: 14px 0 6px; }
#demoForm input {
  width: 100%;
  padding: 10px 12px;
  font-size: 0.9rem;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background: var(--bg-light);
  color: var(--text-dark);
}
#demoForm input:focus { outline: 2px solid var(--ez-blue); outline-offset: 1px; }
.modal-submit { margin-top: 22px; }
.modal-thanks p { font-size: 0.92rem; }

/* ---------- Legal pages ---------- */
.legal-page { padding: 64px 0 96px; }
.legal-page .container { max-width: 820px; }
.legal-page h1 { margin-bottom: 8px; }
.legal-page .updated { font-size: 0.85rem; color: #8A8FA3; margin-bottom: 40px; }
.legal-page h2 { font-size: 1.2rem; margin-top: 36px; margin-bottom: 12px; }
.legal-page p, .legal-page li { font-size: 0.95rem; margin-bottom: 12px; }
.legal-page ul { list-style: disc; padding-left: 22px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .feature-grid, .soon-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .industry-grid { grid-template-columns: repeat(4, 1fr); }
  .integration-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 700px) {
  .compare-header, .compare-row { grid-template-columns: 1fr; }
  .compare-cell.without { border-right: none; border-bottom: 1px solid var(--border-light); }
  .compare-col-head.with { border-top: 1px solid var(--border-light); }
  .industry-grid { grid-template-columns: repeat(3, 1fr); gap: 24px 12px; }
  .integration-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-row { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); margin: 4px 0; }
  .step-card { max-width: 320px; }
}

@media (max-width: 640px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: block; }
  .navbar.open .nav-links {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
    gap: 18px;
  }
  section { padding: 56px 0; }
  .feature-grid, .soon-grid, .pricing-grid, .footer-grid { grid-template-columns: 1fr; }
  .price-card.popular { transform: none; }
  .testimonial-card { padding: 28px; }
  .testimonial-row { flex-direction: column; }
  .testimonial-media, .testimonial-media.is-photo { width: 100%; flex-basis: auto; aspect-ratio: 16/9; }
}
