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

html,
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  color: #1f2937;
  background-color: #ffffff;
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

p {
  line-height: 1.7;
  margin: 0 0 1rem;
  color: #4b5563;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.75rem;
  color: #111827;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.5rem;
}

button {
  font-family: inherit;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--alt {
  background-color: #f9fafb;
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 0.75rem;
}

.section__title {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.section__subtitle {
  max-width: 640px;
  margin: 0.5rem auto 0;
  color: #6b7280;
}

/* Color System (primary: #1177FF) */
:root {
  --primary: #1177ff;
  --primary-dark: #0d5fcc;
  --primary-light: #e0eeff;
  --text-main: #1f2937;
  --text-muted: #6b7280;
  --bg-alt: #f9fafb;
  --border-subtle: #e5e7eb;
}

.text-muted {
  color: var(--text-muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(17, 119, 255, 0.08);
  color: var(--primary-dark);
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.nav__left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__logo-img {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  object-fit: cover;
}

.nav__brand {
  display: flex;
  flex-direction: column;
}

.nav__title {
  font-weight: 700;
  font-size: 1rem;
}

.nav__subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav__link {
  font-size: 0.9rem;
  color: #4b5563;
  position: relative;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), #38bdf8);
  transition: width 0.25s ease;
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__cta {
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--primary), #1d4ed8);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.4);
  background: linear-gradient(135deg, var(--primary-dark), #1e40af);
}

.nav__cta span {
  font-size: 1.05rem;
}

.nav__menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.35rem;
  border-radius: 999px;
  cursor: pointer;
}

.nav__menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px 0;
  background-color: #111827;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav__menu-toggle--open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav__menu-toggle--open span:nth-child(2) {
  opacity: 0;
}

.nav__menu-toggle--open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav__mobile {
  display: none;
  border-top: 1px solid var(--border-subtle);
  padding: 0.75rem 1.5rem 1rem;
}

.nav__mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.nav__mobile-cta {
  width: 100%;
}

/* Hero Section */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top left, #eff6ff 0, #ffffff 38%, #e0f2fe 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -200px;
  background-image: radial-gradient(
      circle at 0 0,
      rgba(37, 99, 235, 0.18) 0,
      transparent 50%
    ),
    radial-gradient(
      circle at 100% 0,
      rgba(56, 189, 248, 0.16) 0,
      transparent 55%
    );
  opacity: 0.9;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: center;
  padding: 5rem 0 4rem;
}

/* Variant: full-width background image hero */
.hero--image {
  background-image: url("https://images.pexels.com/photos/3913025/pexels-photo-3913025.jpeg?auto=compress&cs=tinysrgb&w=1600");
  background-size: cover;
  background-position: center;
}

.hero--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.85), transparent 55%),
    linear-gradient(to bottom right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.5));
  z-index: 0;
}

.hero--image .hero__inner {
  grid-template-columns: minmax(0, 1fr);
  text-align: center;
  justify-items: center;
}

.hero--image .hero__subtitle,
.hero--image .hero__meta,
.hero--image .hero__trust {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero--image .hero__actions {
  justify-content: center;
}

.hero--image .hero__title {
  color: #f9fafb;
}

.hero--image .hero__subtitle {
  color: #e5e7eb;
}

.hero--image .hero__meta-pill {
  background-color: rgba(15, 23, 42, 0.9);
  border-color: rgba(148, 163, 184, 0.8);
  color: #e5e7eb;
}

.hero--image .hero__trust {
  color: #cbd5f5;
}

.hero__kicker {
  margin-bottom: 1rem;
}

.hero__title {
  font-size: 3.25rem;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.hero__highlight {
  background: linear-gradient(120deg, #0f172a, #1d4ed8);
  -webkit-background-clip: text;
  color: transparent;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: #4b5563;
  max-width: 36rem;
  margin-bottom: 1.75rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 2rem;
}

.hero__meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background-color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  color: #4b5563;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary), #1d4ed8);
  color: #ffffff;
  box-shadow: 0 14px 45px rgba(37, 99, 235, 0.45);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 55px rgba(37, 99, 235, 0.55);
  background: linear-gradient(135deg, var(--primary-dark), #1e40af);
}

.btn--ghost {
  background-color: rgba(255, 255, 255, 0.9);
  color: #111827;
  border: 1px solid rgba(148, 163, 184, 0.8);
}

.btn--ghost:hover {
  background-color: #e5edff;
  border-color: var(--primary);
}

.hero__trust {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: #6b7280;
}

.hero__right {
  position: relative;
}

.hero__panel {
  background-color: rgba(15, 23, 42, 0.96);
  border-radius: 1.5rem;
  padding: 1.75rem 1.75rem 1.5rem;
  color: #e5e7eb;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.75);
}

.hero__panel-gradient {
  position: absolute;
  inset: -40%;
  opacity: 0.45;
  background-image: conic-gradient(
    from 220deg,
    rgba(56, 189, 248, 0.4),
    rgba(129, 140, 248, 0.5),
    rgba(59, 130, 246, 0.85),
    rgba(56, 189, 248, 0.5),
    transparent
  );
}

.hero__panel-inner {
  position: relative;
  z-index: 1;
}

.hero__panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.hero__panel-title {
  font-size: 0.95rem;
  font-weight: 600;
}

.hero__chip {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background-color: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 0.7rem;
}

.hero__panel-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.metric {
  background-color: rgba(15, 23, 42, 0.92);
  border-radius: 0.9rem;
  padding: 0.65rem 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.metric__label {
  font-size: 0.7rem;
  color: #9ca3af;
  margin-bottom: 0.2rem;
}

.metric__value {
  font-size: 1.05rem;
  font-weight: 600;
}

.metric__tag {
  font-size: 0.65rem;
  color: #6ee7b7;
}

.hero__panel-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero__panel-item {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.78rem;
}

.hero__panel-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  margin-top: 0.25rem;
  background: linear-gradient(135deg, #38bdf8, #a855f7);
}

.hero__panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: #9ca3af;
}

.hero__mini-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  background-color: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.hero__floating-card {
  position: absolute;
  right: -10px;
  bottom: -18px;
  width: 210px;
  background-color: #f9fafb;
  border-radius: 1.25rem;
  padding: 0.9rem 0.95rem;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.3);
}

.hero__floating-title {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.hero__floating-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.hero__floating-badge {
  font-size: 0.7rem;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background-color: #e5f0ff;
  color: #1d4ed8;
}

.hero__image-main {
  margin-top: 1.35rem;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.hero__image-main img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* Grid helpers */
.grid {
  display: grid;
  gap: 2rem;
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

/* Feature Section */
.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.feature-layout--reverse {
  direction: rtl;
}

.feature-layout--reverse > * {
  direction: ltr;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem 1.1rem;
  align-items: flex-start;
}

.feature-item__icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), #38bdf8);
  color: #ffffff;
  font-size: 1.1rem;
}

.feature-item__title {
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.feature-item__meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.feature-visual-card {
  border-radius: 1.5rem;
  padding: 1.25rem;
  background: radial-gradient(circle at 0 0, #eff6ff 0, #ffffff 45%, #e0f2fe 100%);
  border: 1px solid rgba(191, 219, 254, 0.9);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
}

.feature-visual-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1d4ed8;
  margin-bottom: 0.5rem;
}

.feature-visual-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-visual-meta {
  font-size: 0.8rem;
  color: #4b5563;
  margin-bottom: 0.75rem;
}

.feature-visual-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  font-size: 0.78rem;
}

.feature-visual-stat {
  padding: 0.65rem 0.75rem;
  border-radius: 0.9rem;
  background-color: #ffffff;
  border: 1px dashed rgba(148, 163, 184, 0.8);
}

.feature-visual-stat span {
  display: block;
}

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.85rem;
}

.tag-pill {
  font-size: 0.75rem;
  border-radius: 999px;
  padding: 0.22rem 0.6rem;
  background-color: #eff6ff;
  color: #1d4ed8;
}

/* Steps / How it works */
.steps {
  max-width: 960px;
  margin: 0 auto;
}

.steps__timeline {
  position: relative;
  padding-left: 1.75rem;
}

.steps__timeline::before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 0.25rem;
  bottom: 0.25rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), #38bdf8);
  opacity: 0.4;
}

.step {
  position: relative;
  padding-left: 1.25rem;
  padding-bottom: 1.75rem;
}

.step:last-child {
  padding-bottom: 0;
}

.step__marker {
  position: absolute;
  left: -0.15rem;
  top: 0.15rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 999px;
  background: #ffffff;
  border: 3px solid var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.step__label {
  font-size: 0.8rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.step__title {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.step__content {
  font-size: 0.9rem;
  color: #4b5563;
}

/* Use Cases / Scenarios */
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.scenario-card {
  border-radius: 1.25rem;
  padding: 1.25rem;
  background-color: #ffffff;
  border: 1px solid rgba(209, 213, 219, 0.8);
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
}

.scenario-card__image {
  border-radius: 0.9rem;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.scenario-card__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2563eb;
  margin-bottom: 0.35rem;
}

.scenario-card__title {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.scenario-card__text {
  font-size: 0.9rem;
  color: #4b5563;
}

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

.testimonial {
  border-radius: 1.25rem;
  padding: 1.25rem 1.35rem 1.35rem;
  background-color: #0f172a;
  color: #e5e7eb;
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: "“";
  position: absolute;
  font-size: 4rem;
  line-height: 1;
  top: -1.1rem;
  right: 0.75rem;
  color: rgba(148, 163, 184, 0.25);
  font-family: Georgia, "Times New Roman", serif;
}

.testimonial__quote {
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

.testimonial__author {
  font-size: 0.85rem;
  font-weight: 600;
}

.testimonial__meta {
  font-size: 0.75rem;
  color: #9ca3af;
}

/* Download CTA */
.download-strip {
  border-radius: 1.5rem;
  padding: 1.75rem 1.75rem;
  background: radial-gradient(circle at 0 0, #1e3a8a 0, #111827 45%, #0f172a 85%);
  color: #e5e7eb;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.download-strip__title {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.download-strip__subtitle {
  font-size: 0.95rem;
  color: #9ca3af;
}

.download-strip__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background-color: rgba(15, 23, 42, 0.85);
  color: #f9fafb;
  font-size: 0.8rem;
  cursor: pointer;
}

.store-badge__icon {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: linear-gradient(135deg, #ffffff, #e5e7eb);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  font-size: 0.85rem;
}

.store-badge span {
  display: block;
  line-height: 1.2;
}

.store-badge__label {
  font-size: 0.7rem;
  color: #9ca3af;
}

.store-badge__name {
  font-weight: 600;
}

.download-strip__qr {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
}

.download-strip__qr img {
  width: 96px;
  height: 96px;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background-color: #020617;
}

.download-strip__qr-text {
  font-size: 0.8rem;
  color: #9ca3af;
  max-width: 180px;
}

/* Footer */
.site-footer {
  padding: 3rem 0 2.5rem;
  border-top: 1px solid #e5e7eb;
  background-color: #ffffff;
}

.footer__top {
  text-align: center;
  margin-bottom: 2rem;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.footer__logo img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
}

.footer__logo-text {
  font-weight: 700;
}

.footer__tagline {
  font-size: 0.9rem;
  color: #6b7280;
}

.footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.footer__links a {
  color: #4b5563;
}

.footer__bottom {
  text-align: center;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* About Page */
.hero-subpage {
  padding: 4rem 0 3rem;
  background: radial-gradient(circle at top left, #eff6ff 0, #ffffff 40%, #e0f2fe 100%);
}

.hero-subpage__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-subpage__image {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.3);
}

.hero-subpage__image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.timeline {
  border-left: 2px solid rgba(209, 213, 219, 0.9);
  padding-left: 1.5rem;
}

.timeline__item {
  margin-bottom: 1.5rem;
  position: relative;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -1.01rem;
  top: 0.2rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background-color: #ffffff;
  border: 2px solid var(--primary);
}

.timeline__year {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  margin-bottom: 0.1rem;
}

.timeline__title {
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.timeline__text {
  font-size: 0.9rem;
  color: #4b5563;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: stretch;
}

.about-card {
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background-color: #ffffff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

.about-card__title {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.about-card__text {
  font-size: 0.9rem;
  color: #4b5563;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.about-stat {
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  background-color: #f9fafb;
  border: 1px dashed rgba(209, 213, 219, 0.9);
}

.about-stat__value {
  font-size: 1.35rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.15rem;
}

.about-stat__label {
  font-size: 0.8rem;
  color: #6b7280;
}

.about-photo {
  border-radius: 1.5rem;
  overflow: hidden;
  height: 100%;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Legal pages (Terms / Privacy) */
.legal-hero {
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid #e5e7eb;
  background: linear-gradient(
    to bottom,
    rgba(17, 119, 255, 0.06),
    rgba(255, 255, 255, 0)
  );
}

.legal-hero__badge {
  margin-bottom: 0.75rem;
}

.legal-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 0.75rem;
}

.legal-main {
  padding: 2.5rem 0 4rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.8fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.legal-summary {
  border-radius: 1.25rem;
  padding: 1.35rem 1.3rem 1.4rem;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  font-size: 0.9rem;
}

.legal-summary__title {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.legal-summary ul {
  margin: 0.4rem 0 0;
  padding-left: 1.1rem;
  list-style: disc;
}

.legal-card {
  border-radius: 1.25rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid #e5e7eb;
  margin-bottom: 1.25rem;
}

.legal-card__title {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.legal-card__text {
  font-size: 0.9rem;
  color: #4b5563;
}

.legal-meta-box {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px dashed #d1d5db;
  font-size: 0.85rem;
  color: #6b7280;
}

/* Contact page */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
}

.contact-card {
  border-radius: 1.5rem;
  padding: 1.75rem 1.75rem 1.6rem;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.06);
}

.contact-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.contact-card__subtitle {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 1.35rem;
}

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

.form-group {
  margin-bottom: 1rem;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.form-label span {
  color: #ef4444;
}

.form-input,
.form-textarea,
.form-file {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid #d1d5db;
  padding: 0.7rem 0.8rem;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.35);
  background-color: #ffffff;
}

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

.form-helper {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

.form-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: #4b5563;
}

.form-checkbox-row input[type="checkbox"] {
  margin-top: 0.15rem;
}

.form-error {
  font-size: 0.78rem;
  color: #b91c1c;
  margin-top: 0.25rem;
  display: none;
}

.form-error--visible {
  display: block;
}

.form-status {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: #059669;
  display: none;
}

.form-status--visible {
  display: block;
}

.contact-info {
  border-radius: 1.5rem;
  padding: 1.75rem 1.75rem 1.6rem;
  background: radial-gradient(circle at 0 0, #eff6ff 0, #ffffff 45%, #e0f2fe 100%);
  border: 1px solid #bfdbfe;
}

.contact-info__item {
  margin-bottom: 1.25rem;
}

.contact-info__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2563eb;
  margin-bottom: 0.15rem;
}

.contact-info__value {
  font-size: 0.95rem;
  color: #111827;
}

.contact-info__hint {
  font-size: 0.8rem;
  color: #6b7280;
}

.status-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.status-pill {
  font-size: 0.75rem;
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  background-color: #dcfce7;
  color: #166534;
}

/* Download page */
.download-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: center;
}

.download-hero-image {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.45);
}

.download-hero-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.requirements-card {
  border-radius: 1.25rem;
  padding: 1.5rem 1.6rem 1.4rem;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  font-size: 0.9rem;
}

.requirements-card ul {
  list-style: disc;
  padding-left: 1.1rem;
  margin: 0.45rem 0 0;
}

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

.step-card {
  border-radius: 1.1rem;
  padding: 1rem 1rem 0.95rem;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  font-size: 0.88rem;
}

.step-card__label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2563eb;
  margin-bottom: 0.25rem;
}

.step-card__title {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.step-card__text {
  font-size: 0.85rem;
  color: #4b5563;
}

.version-card {
  margin-top: 1.5rem;
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  border: 1px dashed #d1d5db;
  font-size: 0.85rem;
  color: #4b5563;
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero__inner,
  .feature-layout,
  .download-strip,
  .hero-subpage__layout,
  .about-grid,
  .legal-layout,
  .contact-layout,
  .download-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__right {
    order: -1;
  }

  .download-strip__qr {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__menu-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .nav__mobile {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__title {
    font-size: 2.3rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .scenario-grid,
  .testimonial-grid,
  .steps-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .download-strip {
    padding: 1.5rem 1.25rem;
  }
}

@media (max-width: 640px) {
  .hero__meta {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .grid--2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-stats {
    grid-template-columns: minmax(0, 1fr);
  }
}


