:root {
  --brand: #0db6bd;
  --brand-dark: #0a959b;
  --navy: #022c4e;
  --navy-mid: #0e385b;
  --slate: #4d72a7;
  --muted: #6d767d;
  --line: #e4e6ea;
  --soft: #f2f8f8;
  --gold: #eab646;
  --white: #ffffff;
  --danger: #d44549;
  --font: "Readex Pro", "Cairo", sans-serif;
  --radius: 12px;
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* ——— Nav ——— */
.site-nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}

.site-nav.is-solid {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

.site-nav.is-solid .nav-link,
.site-nav.is-solid .brand-name { color: var(--navy); }

.site-nav.is-solid .nav-cta {
  background: var(--brand);
  color: var(--white);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  z-index: 2;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--brand), var(--navy));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: -.02em;
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
}

.nav-link {
  color: rgba(255,255,255,.88);
  font-size: .92rem;
  font-weight: 600;
  transition: color .2s;
}

.nav-link:hover,
.nav-link.is-active { color: var(--brand); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: .65rem 1.15rem;
  border-radius: 9px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  transition: background .2s, transform .2s;
}

.nav-cta:hover { background: var(--brand-dark); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 9px;
  background: transparent;
  cursor: pointer;
  place-items: center;
}

.site-nav.is-solid .nav-toggle { border-color: var(--line); }

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 3px 0;
  border-radius: 2px;
}

.site-nav:not(.is-solid) .nav-toggle { color: #fff; }
.site-nav.is-solid .nav-toggle { color: var(--navy); }

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.6rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  transition: transform .2s, background .2s, border-color .2s;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-ghost:hover { border-color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }

/* ——— Hero ——— */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(13,182,189,.28), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(77,114,167,.22), transparent 50%),
    linear-gradient(160deg, #021a30 0%, #022c4e 42%, #0a4a5c 100%);
  color: #fff;
  padding: 7rem 0 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: end;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.hero-copy {
  padding-bottom: 4.5rem;
  animation: rise .9s ease both;
}

.hero-brand {
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 1.1rem;
  background: linear-gradient(90deg, #fff 30%, #7ee8ec);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-title {
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 600;
  line-height: 1.45;
  max-width: 28ch;
  margin-bottom: .85rem;
  color: rgba(255,255,255,.95);
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.68);
  max-width: 36ch;
  margin-bottom: 1.75rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; }

.hero-visual {
  position: relative;
  animation: rise 1.1s .15s ease both;
}

.product-frame {
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.18);
  border-bottom: none;
  padding: 14px;
  box-shadow: 0 -20px 80px rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
}

.product-chrome {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.product-chrome i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
}

.product-screen {
  height: calc(100% - 21px);
  border-radius: 10px;
  background: #f7fbfb;
  color: var(--navy);
  padding: 14px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  overflow: hidden;
}

.screen-rail {
  background: var(--navy);
  border-radius: 8px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rail-dot {
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,.18);
}

.rail-dot.on { background: var(--brand); }

.screen-main { display: flex; flex-direction: column; gap: 10px; }

.screen-bar {
  height: 28px;
  border-radius: 6px;
  background: #e8f4f4;
}

.screen-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.stat-tile {
  background: #fff;
  border: 1px solid #e0ecec;
  border-radius: 8px;
  padding: 10px 8px;
  animation: pulseSoft 3s ease-in-out infinite;
}

.stat-tile:nth-child(2) { animation-delay: .4s; }
.stat-tile:nth-child(3) { animation-delay: .8s; }

.stat-tile strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1.1;
}

.stat-tile span {
  font-size: .65rem;
  color: var(--muted);
  font-weight: 600;
}

.screen-chart {
  flex: 1;
  border-radius: 8px;
  background:
    linear-gradient(180deg, transparent 60%, rgba(13,182,189,.12)),
    repeating-linear-gradient(90deg, transparent, transparent 18px, #eef5f5 18px, #eef5f5 19px);
  border: 1px solid #e0ecec;
  position: relative;
  min-height: 90px;
  overflow: hidden;
}

.chart-line {
  position: absolute;
  inset: 18% 8% 22% 8%;
  background: none;
  border: none;
}

.chart-line path {
  fill: none;
  stroke: var(--brand);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  animation: drawLine 1.8s .5s ease forwards;
}

/* ——— Sections ——— */
.section {
  padding: 5.5rem 0;
}

.section-head {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 3rem;
}

.section-head h2 {
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: .6rem;
}

.section-head p { color: var(--muted); font-size: .98rem; }

.services-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-item {
  padding: 1.35rem 1.1rem;
  border-bottom: 2px solid var(--line);
  transition: border-color .25s, transform .25s;
}

.service-item:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: rgba(13,182,189,.1);
  color: var(--brand);
}

.service-item h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: .4rem;
}

.service-item p {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.65;
}

.benefits {
  background:
    radial-gradient(circle at 100% 0%, rgba(13,182,189,.1), transparent 40%),
    linear-gradient(180deg, var(--soft), #fff);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3rem;
  align-items: center;
}

.benefit-list { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; }

.benefit-list li {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
}

.check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(13,182,189,.12);
  color: var(--brand);
  display: grid;
  place-items: center;
  margin-top: 2px;
}

.benefit-list strong { display: block; font-weight: 700; margin-bottom: .15rem; }
.benefit-list span { color: var(--muted); font-size: .9rem; }

.atmosphere {
  border-radius: 20px;
  min-height: 340px;
  background:
    linear-gradient(145deg, rgba(2,44,78,.82), rgba(13,182,189,.55)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.12'%3E%3Crect x='12' y='20' width='60' height='40' rx='4'/%3E%3Crect x='84' y='20' width='60' height='40' rx='4'/%3E%3Crect x='12' y='76' width='132' height='56' rx='4'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(160deg, #0e385b, #0db6bd);
  background-size: cover, 120px, cover;
  display: grid;
  place-items: center;
  padding: 2rem;
  color: #fff;
  text-align: center;
}

.atmosphere strong {
  font-size: 2.4rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.atmosphere span {
  opacity: .85;
  font-size: .95rem;
}

.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  text-align: center;
  padding: 5rem 1.25rem;
}

.cta-band h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: .75rem;
}

.cta-band p {
  color: rgba(255,255,255,.68);
  max-width: 420px;
  margin: 0 auto 1.75rem;
}

.cta-actions {
  display: flex;
  gap: .85rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ——— Page hero (inner) ——— */
.page-hero {
  padding: 8rem 0 4rem;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(13,182,189,.25), transparent 50%),
    linear-gradient(160deg, #021a30, #022c4e 70%);
  color: #fff;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: .7rem;
}

.page-hero p {
  color: rgba(255,255,255,.7);
  max-width: 480px;
  margin-inline: auto;
}

/* ——— Pricing ——— */
.billing-toggle {
  display: inline-flex;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 4px;
  gap: 4px;
  margin-top: 1.5rem;
}

.billing-toggle button {
  padding: .55rem 1.2rem;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
}

.billing-toggle button.active { background: var(--brand); }

.save-tag {
  font-size: .7rem;
  background: var(--gold);
  color: var(--navy);
  border-radius: 4px;
  padding: 2px 7px;
  font-weight: 800;
  margin-inline-start: .35rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
}

.price-plan {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 1.75rem 1.4rem;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
}

.price-plan.featured {
  border: 2px solid var(--brand);
  box-shadow: 0 8px 40px rgba(13,182,189,.14);
  transform: translateY(-8px);
  position: relative;
}

.plan-badge {
  position: absolute;
  top: -13px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  padding: 5px 18px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
  white-space: nowrap;
}

.plan-accent {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  margin-bottom: .9rem;
}

.price-plan h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: .25rem; }
.price-plan .tagline { color: var(--muted); font-size: .85rem; margin-bottom: 1.1rem; }

.price-amount {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  margin-bottom: .35rem;
}

.price-amount strong {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.price-amount span,
.price-note { color: var(--muted); font-size: .85rem; }

.price-note.accent { color: var(--brand); font-weight: 600; }

.emp-count {
  color: var(--slate);
  font-size: .85rem;
  font-weight: 600;
  margin: .75rem 0 1.1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid #f2f3f5;
}

.feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin-bottom: 1.4rem;
}

.feat-list li {
  display: flex;
  gap: .55rem;
  align-items: flex-start;
  font-size: .88rem;
}

.feat-list .ok { color: var(--brand); font-weight: 700; }
.feat-list .no { color: #bbb; }

.price-plan .btn { width: 100%; }

.pricing-notes {
  text-align: center;
  color: var(--muted);
  font-size: .88rem;
  margin-top: 1.75rem;
}

/* ——— Forms ——— */
.form-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1.5rem;
  margin: 3.5rem auto;
}

.form-panel,
.info-panel {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: 0 2px 24px rgba(0,0,0,.04);
}

.field { margin-bottom: 1rem; }

.field label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: .4rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .7rem .9rem;
  border-radius: 8px;
  border: 1.5px solid var(--line);
  font-size: .92rem;
  outline: none;
  background: #fff;
  transition: border-color .18s;
}

.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--brand); }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}

.form-success {
  text-align: center;
  padding: 2.5rem 1rem;
}

.form-success .ok-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(13,182,189,.1);
  border: 1.5px solid var(--brand);
  display: grid;
  place-items: center;
  margin: 0 auto 1.1rem;
  color: var(--brand);
  font-size: 1.5rem;
}

.info-stack { display: flex; flex-direction: column; gap: 1rem; }

.info-box {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem 1.15rem;
}

.info-box h4 {
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: .85rem;
  display: flex;
  align-items: center;
  gap: .55rem;
}

.info-row {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  padding: .45rem 0;
  border-bottom: 1px solid #f2f3f5;
  font-size: .85rem;
}

.info-row:last-child { border-bottom: none; }
.info-row .open { color: var(--brand); font-weight: 600; }
.info-row .closed { color: var(--danger); font-weight: 600; }

.channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: .85rem;
  margin-bottom: 2rem;
}

.channel {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1.05rem 1.15rem;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: #fff;
  transition: border-color .2s;
}

.channel:hover { border-color: var(--brand); }

.channel-ico {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.channel strong { display: block; font-size: .9rem; }
.channel span { font-size: .78rem; color: var(--muted); }

/* ——— Services explorer ——— */
.explorer {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.25rem;
  align-items: start;
}

.explorer-nav { display: flex; flex-direction: column; gap: .4rem; }

.explorer-btn {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem .85rem;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: #fff;
  cursor: pointer;
  text-align: start;
  transition: all .18s;
  color: var(--navy);
}

.explorer-btn.active {
  border-color: var(--brand);
  background: rgba(13,182,189,.08);
}

.explorer-btn .ico {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #f2f3f5;
  flex-shrink: 0;
  font-size: .9rem;
}

.explorer-btn.active .ico {
  background: var(--brand);
  color: #fff;
}

.explorer-btn .label { font-weight: 600; font-size: .88rem; }
.explorer-btn .cat { font-size: .72rem; color: var(--muted); font-weight: 600; }
.explorer-btn.active .cat { color: var(--brand); }

.explorer-panel {
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  background: #fff;
  box-shadow: 0 4px 32px rgba(2,44,78,.05);
}

.explorer-panel h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: .4rem 0 .25rem;
}

.explorer-panel .sub { color: var(--muted); font-size: .88rem; margin-bottom: 1.1rem; }
.explorer-panel .desc { color: var(--muted); margin-bottom: 1.4rem; }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem 1.4rem;
  background: #fafbfc;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.15rem 1.3rem;
  margin-bottom: 1.4rem;
}

.feature-grid li {
  display: flex;
  gap: .55rem;
  align-items: flex-start;
  font-size: .88rem;
  list-style: none;
}

.stats-bar {
  background: var(--brand);
  color: #fff;
}

.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 1.4rem 0;
}

.stat-cell {
  text-align: center;
  padding: .4rem 0;
  border-inline-start: 1px solid rgba(255,255,255,.22);
}

.stat-cell:first-child { border-inline-start: none; }
.stat-cell strong { display: block; font-size: 1.55rem; font-weight: 800; line-height: 1.1; }
.stat-cell span { font-size: .78rem; opacity: .85; font-weight: 500; }

/* ——— Legal ——— */
.legal {
  max-width: 780px;
  margin: 3.5rem auto 5rem;
}

.legal h2 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 2rem 0 .85rem;
  padding-bottom: .55rem;
  border-bottom: 2px solid var(--brand);
}

.legal p, .legal li {
  color: var(--muted);
  margin-bottom: .75rem;
  font-size: .95rem;
}

.legal ul { padding-inline-start: 1.2rem; margin-bottom: 1rem; }

.legal-warn {
  background: rgba(234,182,70,.08);
  border: 1.5px solid rgba(234,182,70,.3);
  border-radius: 12px;
  padding: 1.1rem 1.3rem;
  color: #6d3b00;
  font-size: .9rem;
}

/* ——— Footer ——— */
.site-footer {
  background: #021627;
  color: rgba(255,255,255,.75);
  padding: 3.5rem 0 1.75rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand .brand-name { color: #fff; margin-bottom: .75rem; }
.footer-brand p { font-size: .88rem; max-width: 28ch; line-height: 1.7; }

.footer-col h4 {
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: .88rem;
  margin-bottom: .55rem;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}

.footer-col a:hover { color: var(--brand); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}

/* ——— FAQ ——— */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  text-align: start;
  padding: 1.1rem 1.35rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
}

.faq-a {
  display: none;
  padding: 0 1.35rem 1.15rem;
  color: var(--muted);
  font-size: .9rem;
}

.faq-item.open .faq-a { display: block; }

/* ——— Animations ——— */
@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

@keyframes pulseSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ——— Responsive ——— */
@media (max-width: 960px) {
  .hero-grid,
  .benefits-grid,
  .form-layout,
  .explorer,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .services-row { grid-template-columns: 1fr 1fr; }
  .price-plan.featured { transform: none; }
  .hero { align-items: center; padding-top: 6rem; }
  .hero-copy { padding-bottom: 1.5rem; }
  .hero-visual { order: -1; }
  .product-frame { border-radius: 16px; border: 1px solid rgba(255,255,255,.18); }
  .stats-bar .container { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(3) { border-inline-start: none; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    inset: 0 0 auto 0;
    top: 72px;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem;
    gap: .25rem;
    display: none;
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
  }

  .nav-links.open { display: flex; }
  .nav-link { color: var(--navy) !important; padding: .75rem; }
  .nav-cta { justify-content: center; margin-top: .5rem; }
  .nav-toggle { display: grid; }
  .services-row,
  .feature-grid,
  .field-row { grid-template-columns: 1fr; }
  .hero-brand { font-size: 2.6rem; }
}
