/* XenHelp — shared theme (matches homepage) */
:root {
  --bg-dark: #0f0f12;
  --bg-nav: rgba(15, 15, 18, 0.92);
  --bg-section: #16161a;
  --bg-light: #f7f7f8;
  --text-white: #ffffff;
  --text-muted: #b8b8c0;
  --text-dark: #1a1a1f;
  --text-body: #4a4a55;
  --accent: #c2185b;
  --accent-hover: #a0144c;
  --accent-soft: rgba(194, 24, 91, 0.12);
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(0, 0, 0, 0.08);
  --max: 1140px;
  --content-max: 820px;
  --radius: 6px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --fs-xs: clamp(0.7rem, 0.65rem + 0.2vw, 0.8rem);
  --fs-sm: clamp(0.82rem, 0.76rem + 0.28vw, 0.95rem);
  --fs-base: clamp(0.94rem, 0.88rem + 0.35vw, 1.05rem);
  --fs-md: clamp(1rem, 0.92rem + 0.45vw, 1.15rem);
  --fs-lg: clamp(1.1rem, 0.98rem + 0.65vw, 1.35rem);
  --fs-xl: clamp(1.35rem, 1.1rem + 1.2vw, 1.85rem);
  --fs-2xl: clamp(1.65rem, 1.25rem + 2vw, 2.35rem);
  --fs-3xl: clamp(1.9rem, 1.35rem + 2.8vw, 3.1rem);
  --fs-hero: clamp(1.75rem, 1.2rem + 3vw, 3.35rem);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: var(--fs-base);
  background: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  padding-top: 96px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  max-width: 100%;
}

/* ——— Navbar ——— */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background: var(--bg-nav);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 96px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: clamp(64px, 8vw, 84px);
  width: auto;
  max-width: min(360px, 68vw);
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.75rem;
}

.nav-links a {
  font-size: var(--fs-md);
  font-weight: 500;
  color: var(--text-muted);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.75rem;
  padding: 0.55rem 1.25rem;
  background: var(--accent);
  color: var(--text-white) !important;
  font-weight: 600;
  font-size: var(--fs-sm);
  border-radius: var(--radius);
}

.nav-cta:hover {
  background: var(--accent-hover);
  color: var(--text-white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
}

/* ——— Page hero ——— */
.page-hero {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  text-align: left;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(194, 24, 91, 0.22), transparent 55%),
    linear-gradient(165deg, #1a0a18 0%, var(--bg-dark) 55%, #0a0e1a 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero .eyebrow {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.page-hero h1 {
  font-size: var(--fs-hero);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--text-muted);
  font-size: var(--fs-lg);
  max-width: 560px;
  margin-inline: 0;
}

.page-hero .meta {
  margin-top: 1.25rem;
  font-size: var(--fs-md);
  color: var(--text-muted);
}

.page-hero .meta strong {
  color: var(--text-white);
  font-weight: 560;
}

/* ——— Legal content ——— */
.legal-wrap {
  flex: 1;
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 3.5rem 0 4.5rem;
}

.legal-content {
  width: min(100% - 2rem, var(--content-max));
  margin-left: max(1rem, calc((100% - var(--max)) / 2));
  margin-right: auto;
  font-size: var(--fs-md);
  text-align: left;
  max-width: calc(100% - 2rem);
  overflow-wrap: anywhere;
  word-wrap: break-word;
}

.legal-content > .intro {
  font-size: var(--fs-lg);
  color: var(--text-body);
  margin-bottom: 2.25rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
}

.legal-content section {
  margin-bottom: 2.25rem;
}

.legal-content h2 {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.legal-content h3 {
  font-size: var(--fs-lg);
  font-weight: 650;
  color: var(--text-dark);
  margin: 1.25rem 0 0.5rem;
}

.legal-content p {
  color: var(--text-body);
  margin-bottom: 0.85rem;
}

.legal-content ul {
  margin: 0.5rem 0 1rem 0.15rem;
}

.legal-content li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--text-body);
  margin-bottom: 0.45rem;
}

.legal-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.legal-content a {
  color: var(--accent);
  font-weight: 560;
}

.legal-content a:hover {
  text-decoration: underline;
  color: var(--accent-hover);
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.legal-actions .btn {
  border-radius: 999px;
  padding: 0.75rem 1.65rem;
  font-size: var(--fs-sm);
  font-weight: 600;
}

.legal-actions .btn-primary {
  background: var(--accent);
  color: var(--text-white);
  border: none;
  min-width: 9.5rem;
  box-shadow: 0 8px 20px rgba(194, 24, 91, 0.28);
}

.legal-actions .btn-primary:hover {
  background: var(--accent-hover);
  color: var(--text-white);
}

.legal-actions .btn-ghost {
  background: #fff;
  color: var(--accent);
  border: 1px solid rgba(194, 24, 91, 0.28);
}

.legal-actions .btn-ghost:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  font-family: inherit;
  font-size: var(--fs-sm);
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--text-white);
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border-light);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ——— Homepage ——— */
.hero {
  position: relative;
  padding: 4.5rem 0 4rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 85% 35%, rgba(194, 24, 91, 0.2), transparent 55%),
    radial-gradient(ellipse 50% 45% at 10% 80%, rgba(60, 40, 120, 0.25), transparent 50%),
    linear-gradient(160deg, #140a14 0%, var(--bg-dark) 45%, #0a0e18 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero-copy .eyebrow,
.section .eyebrow,
.page-hero .eyebrow {
  display: inline-block;
}

.hero-copy h1 {
  font-size: var(--fs-hero);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 0.75rem 0 1rem;
}

.hero-copy h1 span {
  color: var(--accent);
}

.hero-copy .eyebrow {
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-copy > p {
  color: var(--text-muted);
  font-size: var(--fs-md);
  max-width: 36rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-visual {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
}

.hero-orb {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194, 24, 91, 0.35), transparent 70%);
  filter: blur(8px);
}

.hero-chip {
  position: relative;
  width: min(100%, 300px);
  aspect-ratio: 1;
  border-radius: 28px;
  background: linear-gradient(145deg, #1c1c24, #0d0d12);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.chip-glow {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194, 24, 91, 0.55), transparent 65%);
}

.chip-grid {
  position: absolute;
  inset: 12%;
  border-radius: 16px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 22px 22px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 22px 22px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.stats {
  background: var(--bg-section);
  border-block: 1px solid var(--border);
  padding: 2rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stats-grid strong {
  display: block;
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.stats-grid span {
  color: var(--text-muted);
  font-size: var(--fs-sm);
}

.section {
  padding: 4.5rem 0;
}

.section-light {
  background: var(--bg-light);
  color: var(--text-dark);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.75rem;
}

.section-head h2,
.about-grid h2,
.contact-grid h2,
.download-copy h2,
.app-feature-copy h2 {
  font-size: var(--fs-2xl);
  letter-spacing: -0.02em;
  margin: 0.55rem 0 0.75rem;
  line-height: 1.25;
}

.section-head > p,
.section-trust .section-head p,
.section-how .section-head p,
.section-faq .section-head p {
  color: var(--text-muted);
  font-size: var(--fs-md);
}

.section-light .section-head > p {
  color: var(--text-body);
}

.section-light .section-head p {
  color: var(--text-body);
}

.section .eyebrow {
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow.dark {
  color: var(--accent);
}

/* ——— Trust section ——— */
.section-trust {
  background: var(--bg-section);
  border-block: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.trust-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(194, 24, 91, 0.35);
}

.trust-card h3 {
  font-size: var(--fs-md);
  font-weight: 700;
  margin: 0.85rem 0 0.45rem;
  letter-spacing: -0.01em;
}

.trust-card p {
  color: var(--text-muted);
  font-size: var(--fs-sm);
  line-height: 1.6;
}

/* ——— Services section ——— */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(26, 26, 31, 0.08);
}

.service-card .icon-box {
  margin-bottom: 0.85rem;
}

.service-card h3 {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.45rem;
  letter-spacing: -0.01em;
}

.service-card p {
  color: var(--text-body);
  font-size: var(--fs-sm);
  line-height: 1.6;
}

/* ——— How it works ——— */
.section-how {
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(194, 24, 91, 0.12), transparent 55%),
    var(--bg-dark);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.step-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem 1.35rem;
  text-align: center;
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--text-white);
  font-weight: 800;
  font-size: var(--fs-md);
  margin-bottom: 1rem;
}

.step-card h3 {
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: 0.45rem;
  letter-spacing: -0.01em;
}

.step-card p {
  color: var(--text-muted);
  font-size: var(--fs-sm);
  line-height: 1.6;
}

/* ——— Download banner ——— */
.download-banner {
  background:
    radial-gradient(ellipse 70% 60% at 20% 0%, rgba(194, 24, 91, 0.25), transparent 55%),
    linear-gradient(160deg, #1a0a18 0%, var(--bg-dark) 60%, #0a0e1a 100%);
  border-top: 1px solid var(--border);
  padding: 4rem 0;
}

.download-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.download-copy {
  flex: 1 1 320px;
  max-width: 560px;
}

.download-copy h2 {
  font-size: var(--fs-2xl);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.download-copy p {
  color: var(--text-muted);
  font-size: var(--fs-md);
  line-height: 1.65;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.store-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 168px;
  padding: 0.65rem 1.25rem;
  background: #fff;
  color: var(--text-dark);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.store-btn--google {
  background: rgba(255, 255, 255, 0.95);
}

.store-label {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.75;
}

.store-name {
  font-size: var(--fs-md);
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ——— Our Product showcase (split hero) ——— */
.product-showcase {
  position: relative;
  overflow: hidden;
  background: #fafafa;
  color: var(--text-dark);
  padding: clamp(3rem, 6vw, 5.5rem) 0;
}

.product-showcase__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.product-showcase__glow--one {
  width: min(52vw, 480px);
  height: min(52vw, 480px);
  left: -8%;
  top: 12%;
  background: radial-gradient(circle, rgba(194, 24, 91, 0.16), transparent 68%);
}

.product-showcase__glow--two {
  width: min(40vw, 360px);
  height: min(40vw, 360px);
  left: 18%;
  bottom: -10%;
  background: radial-gradient(circle, rgba(194, 24, 91, 0.1), transparent 70%);
}

.product-showcase__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.phone-stack {
  position: relative;
  min-height: clamp(340px, 52vw, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-stack__blob {
  position: absolute;
  width: 78%;
  height: 78%;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194, 24, 91, 0.14), rgba(194, 24, 91, 0.04) 55%, transparent 70%);
  z-index: 0;
}

.phone-mock {
  position: absolute;
  margin: 0;
  width: min(42%, 210px);
  line-height: 0;
  background: transparent;
  filter: none;
  transition: transform 0.35s ease;
}

.phone-mock img {
  width: 100%;
  height: auto;
  display: block;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  outline: none;
  mix-blend-mode: multiply;
}

.phone-mock--back {
  left: 4%;
  top: 12%;
  transform: rotate(-14deg);
  z-index: 1;
}

.phone-mock--mid {
  left: 28%;
  top: 6%;
  transform: rotate(-4deg);
  z-index: 2;
  width: min(46%, 230px);
}

.phone-mock--front {
  right: 6%;
  top: 10%;
  transform: rotate(8deg);
  z-index: 3;
  width: min(44%, 220px);
}

.product-showcase__copy {
  position: relative;
  z-index: 2;
  max-width: 34rem;
}

.product-showcase__brand {
  font-size: var(--fs-md);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #6b6b76;
  margin-bottom: 1rem;
}

.product-showcase__copy h1 {
  font-size: var(--fs-3xl);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.product-showcase__copy h1 strong {
  font-weight: 800;
  color: var(--text-dark);
}

.product-showcase__copy > p {
  color: var(--text-body);
  font-size: var(--fs-md);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.product-showcase__copy > p:last-child {
  margin-bottom: 0;
}

/* ——— Product page: app feature blocks ——— */
.section-customer-app {
  background: var(--bg-dark);
}

.app-feature-block {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.app-feature-block--reverse .app-feature-copy {
  order: 2;
}

.app-feature-block--reverse .app-feature-visual {
  order: 1;
}

.app-feature-copy .eyebrow {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.app-feature-copy > p {
  color: var(--text-muted);
  font-size: var(--fs-md);
  margin-bottom: 1.25rem;
  max-width: 36rem;
}

.feature-list {
  display: grid;
  gap: 0.55rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text-muted);
  font-size: var(--fs-sm);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.feature-list--dark li {
  color: var(--text-body);
}

.feature-list strong {
  color: var(--text-white);
  font-weight: 650;
}

.feature-list--dark strong {
  color: var(--text-dark);
}

.app-feature-visual {
  display: flex;
  justify-content: center;
}

.tech-cards--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tech-cards--three .tech-card .icon-box {
  margin-bottom: 0.75rem;
}

/* ——— Help & Support ——— */
.help-contact {
  max-width: 720px;
  margin-inline: auto;
}

.help-contact-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2rem clamp(1.25rem, 4vw, 2.5rem);
}

.help-contact-card h2 {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.help-contact-card > p {
  color: var(--text-body);
  font-size: var(--fs-md);
  margin-bottom: 1.25rem;
}

.help-links {
  display: grid;
  gap: 0.65rem;
}

.help-links li {
  color: var(--text-body);
  font-size: var(--fs-md);
}

.help-links a {
  color: var(--accent);
  font-weight: 600;
}

.help-links a:hover {
  text-decoration: underline;
}

.section-faq {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
}

.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-item summary {
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  font-size: var(--fs-md);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: var(--fs-lg);
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 1.25rem 1.15rem;
  color: var(--text-muted);
  font-size: var(--fs-sm);
  line-height: 1.65;
}

.faq-item p a {
  color: var(--accent);
  font-weight: 600;
}

.faq-item p a:hover {
  text-decoration: underline;
}

/* ——— Our Products ——— */
.section-products {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(194, 24, 91, 0.08), transparent 55%),
    var(--bg-light);
  color: var(--text-dark);
  overflow-x: clip;
  padding-top: 5.5rem;
}

.section-products .section-head p {
  color: var(--text-body);
}

.products-showcase {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.1rem;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 1.35rem 1.1rem 1.5rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(26, 26, 31, 0.1);
}

.product-card--featured {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  align-items: center;
  gap: 2.5rem;
  text-align: left;
  padding: 2rem clamp(1rem, 3vw, 2.25rem);
  background:
    linear-gradient(135deg, #fff 0%, #fff7fa 100%);
  border-color: rgba(194, 24, 91, 0.18);
}

.product-phone {
  width: min(100%, 240px);
  max-width: 100%;
  line-height: 0;
}

.product-card--featured .product-phone {
  width: min(100%, 280px);
  justify-self: center;
}

.product-phone img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  mix-blend-mode: multiply;
}

.app-feature-visual .product-phone {
  width: min(100%, 260px);
  filter: none;
  background: transparent;
}

.section-customer-app .product-phone img {
  mix-blend-mode: normal;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.35));
}

.section-provider-app .product-phone img {
  mix-blend-mode: multiply;
}

.product-info {
  max-width: 28rem;
  min-width: 0;
  width: 100%;
}

.product-tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.65rem;
}

.product-info h3 {
  font-size: var(--fs-lg);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
  color: var(--text-dark);
}

.product-info p {
  color: var(--text-body);
  font-size: var(--fs-sm);
  line-height: 1.6;
}

.product-points {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.45rem;
}

.product-points li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--text-body);
  font-size: var(--fs-sm);
}

.product-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  width: 100%;
  max-width: 100%;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-grid article {
  padding: 1.5rem 1.25rem;
}

.feature-grid h3 {
  font-size: var(--fs-md);
  margin: 0.9rem 0 0.45rem;
}

.feature-grid p {
  color: var(--text-body);
  font-size: var(--fs-sm);
}

.icon-box {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent);
}

.icon-box svg {
  width: 22px;
  height: 22px;
}

.section-tech {
  background:
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(90, 40, 140, 0.35), transparent 55%),
    linear-gradient(150deg, #15102a 0%, #0f0f16 50%, #0a1222 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-grid > div > p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.check-list {
  margin-bottom: 1.75rem;
}

.check-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text-muted);
  margin-bottom: 0.55rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.tech-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.tech-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.35rem;
}

.tech-card.wide {
  grid-column: 1 / -1;
}

.tech-card h3 {
  font-size: var(--fs-md);
  margin-bottom: 0.4rem;
}

.tech-card p {
  color: var(--text-muted);
  font-size: var(--fs-sm);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.process-grid .step {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--text-white);
  font-weight: 700;
  font-size: var(--fs-sm);
  margin-bottom: 0.85rem;
}

.process-grid h3 {
  font-size: var(--fs-md);
  margin-bottom: 0.4rem;
}

.process-grid p {
  color: var(--text-body);
  font-size: var(--fs-sm);
}

.section-cta {
  background:
    radial-gradient(ellipse 70% 60% at 80% 0%, rgba(194, 24, 91, 0.18), transparent 50%),
    var(--bg-dark);
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-grid > div > p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.contact-meta li {
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

.contact-meta a {
  color: var(--accent);
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 1rem;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  font: inherit;
  color: var(--text-white);
  background: #0c0c10;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 0.9rem;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}

.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-form .btn {
  justify-self: start;
  margin-top: 0.25rem;
}

/* ——— About page ——— */
.about-story {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.about-story h2 {
  font-size: var(--fs-2xl);
  letter-spacing: -0.02em;
  margin: 0.55rem 0 0.9rem;
  line-height: 1.25;
}

.about-story p {
  color: var(--text-body);
  margin-bottom: 0.9rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-highlights > div {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
}

.about-highlights strong {
  display: block;
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.about-highlights span {
  color: var(--text-body);
  font-size: var(--fs-sm);
}

.section-head.left {
  text-align: left;
  max-width: 680px;
  margin: 0 0 2rem;
}

.section-head .muted,
.about-cta p {
  color: var(--text-muted);
}

.about-mission {
  margin-top: 0.5rem;
}

.about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-cta h2 {
  font-size: var(--fs-2xl);
  letter-spacing: -0.02em;
  margin: 0.55rem 0 0.75rem;
}

/* ——— Footer ——— */
.footer {
  background: #0a0a0c;
  border-top: 1px solid var(--border);
  padding: 3rem 0 2.25rem;
}

.footer-simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.35rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-logo img {
  height: clamp(48px, 7vw, 64px);
  width: auto;
  max-width: min(360px, 85vw);
  object-fit: contain;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.75rem;
}

.footer-legal a {
  color: var(--text-muted);
  font-size: var(--fs-md);
  font-weight: 500;
}

.footer-legal a:hover,
.footer-legal a.active {
  color: var(--accent);
}

.footer-copy {
  color: var(--text-muted);
  font-size: var(--fs-xs);
  margin-top: 0.35rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  width: 100%;
  max-width: 640px;
}

.socials {
  display: flex;
  gap: 0.75rem;
}

.socials a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.socials a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.socials svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ——— Responsive ——— */
@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1000px) {
  .hero {
    padding: 1.75rem 0 2.5rem;
    position: relative;
  }

  .hero-grid,
  .about-grid,
  .about-story,
  .contact-grid,
  .app-feature-block {
    grid-template-columns: 1fr;
  }

  .app-feature-block--reverse .app-feature-copy,
  .app-feature-block--reverse .app-feature-visual {
    order: unset;
  }

  .product-showcase__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .phone-stack {
    order: -1;
    min-height: clamp(280px, 78vw, 400px);
    margin-inline: auto;
    width: min(100%, 420px);
  }

  .product-showcase__copy {
    text-align: left;
    max-width: 40rem;
    margin-inline: auto;
  }

  .product-showcase__glow--one,
  .product-showcase__glow--two,
  .phone-stack__blob {
    z-index: 0;
  }

  .phone-stack,
  .product-showcase__copy {
    position: relative;
    z-index: 1;
  }

  .hero-grid {
    gap: 1.75rem;
    align-items: start;
    position: relative;
  }

  .hero-copy {
    text-align: left;
    order: 0;
    position: relative;
    z-index: 2;
  }

  .hero-visual {
    order: 0;
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 0;
    margin-inline: auto;
    aspect-ratio: unset;
    pointer-events: none;
    z-index: 1;
  }

  .hero-orb {
    width: 180px;
    height: 180px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
  }

  .hero-chip {
    width: min(55vw, 180px);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 22px;
    opacity: 0.85;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .tech-cards--three {
    grid-template-columns: 1fr;
  }

  .download-inner {
    flex-direction: column;
    text-align: center;
  }

  .download-copy {
    max-width: none;
  }

  .store-buttons {
    justify-content: center;
  }

  .feature-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-card--featured {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
    padding: 1.75rem 1.25rem;
  }

  .product-info {
    margin-inline: auto;
  }

  .product-points {
    justify-items: center;
  }

  .product-points li {
    text-align: left;
  }

  .legal-content {
    width: min(100% - 2rem, var(--content-max));
    margin-inline: auto;
  }
}

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links {
    gap: 1.75rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 96px;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1.25rem 1.25rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 0.75rem;
    text-align: center;
  }

  .feature-grid,
  .process-grid,
  .stats-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .phone-stack {
    min-height: 300px;
    width: min(100%, 340px);
  }

  .phone-mock--back {
    left: 0;
    width: 38%;
  }

  .phone-mock--mid {
    left: 26%;
    width: 42%;
  }

  .phone-mock--front {
    right: 0;
    width: 40%;
  }

  .product-showcase {
    padding: 2.5rem 0 3rem;
  }

  .products-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 78vw);
    grid-template-columns: none;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.85rem;
    margin-inline: -0.25rem;
    padding-inline: 0.25rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .products-grid::-webkit-scrollbar {
    height: 6px;
  }

  .products-grid::-webkit-scrollbar-thumb {
    background: rgba(194, 24, 91, 0.35);
    border-radius: 999px;
  }

  .products-grid .product-card {
    scroll-snap-align: start;
    height: 100%;
  }

  .product-phone,
  .product-card--featured .product-phone {
    width: min(100%, 260px);
  }

  .product-card--featured {
    overflow: visible;
  }

  .section-products {
    padding-top: 3.5rem;
    overflow: visible;
  }

  .section-products .container {
    overflow: visible;
  }

  .hero-copy h1 {
    font-size: var(--fs-hero);
    margin: 0.5rem 0 0.75rem;
  }

  .hero-copy > p {
    font-size: var(--fs-base);
    margin-bottom: 1.25rem;
  }

  .hero-actions {
    width: 100%;
    gap: 0.75rem;
  }

  .hero-actions .btn {
    flex: 1 1 calc(50% - 0.4rem);
    min-width: 0;
    padding: 0.55rem 0.9rem;
    font-size: var(--fs-sm);
  }

  .hero {
    padding: 1.25rem 0 2rem;
    min-height: 280px;
  }

  .page-hero h1 {
    font-size: var(--fs-hero);
  }

  .footer-legal {
    flex-direction: column;
    gap: 0.85rem;
  }

  .legal-actions {
    flex-direction: column;
  }

  .legal-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 1.5rem, var(--max));
  }

  .logo img {
    max-width: min(280px, 68vw);
    height: clamp(56px, 12vw, 70px);
  }

  .product-card {
    padding: 1.1rem 0.85rem 1.25rem;
  }

  .stats-grid strong {
    font-size: var(--fs-xl);
  }
}
