:root {
  color-scheme: light;
  --bg-cream: #f8f4ee;
  --bg-sky: #e7f1ff;
  --bg-peach: #ffe9de;
  --ink: #1c2a3a;
  --ink-soft: #5a6b7d;
  --accent: #4aa8ff;
  --accent-strong: #2f7fe6;
  --accent-warm: #ff9f7a;
  --card: rgba(255, 255, 255, 0.92);
  --card-border: rgba(74, 168, 255, 0.2);
  --pill: rgba(74, 168, 255, 0.12);
  --shadow-sm: 0 12px 24px rgba(41, 72, 120, 0.12);
  --shadow-md: 0 20px 46px rgba(41, 72, 120, 0.16);
  --shadow: var(--shadow-md);
  --max: 1400px;
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Microsoft YaHei", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial,
    sans-serif;
  background: radial-gradient(circle at 20% 10%, rgba(74, 168, 255, 0.22), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(255, 159, 122, 0.25), transparent 50%),
    linear-gradient(135deg, var(--bg-cream), var(--bg-sky));
  color: var(--ink);
  min-height: 100vh;
  line-height: 1.55;
}

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

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

.page {
  width: 100%;
  margin: 0;
  padding: 0;
}

.top {
  position: relative;
  color: #eaf2ff;
  background: radial-gradient(circle at 18% 80%, rgba(20, 120, 220, 0.35), transparent 55%),
    radial-gradient(circle at 55% 10%, rgba(10, 40, 100, 0.9), transparent 54%),
    radial-gradient(circle at 85% 25%, rgba(40, 90, 200, 0.25), transparent 55%),
    linear-gradient(135deg, #02030c, #041025 55%, #071c3b);
  overflow: hidden;
}

.top::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 55% 40%, rgba(255, 255, 255, 0.08), transparent 60%),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.03) 0px,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 4px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.04) 0px,
      rgba(0, 0, 0, 0.04) 1px,
      transparent 1px,
      transparent 6px
    );
  opacity: 0.08;
}

.top::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 60% 50%, rgba(255, 255, 255, 0.08), transparent 58%);
  opacity: 0.55;
}

.top > * {
  position: relative;
  z-index: 1;
}

.top-divider {
  position: relative;
  width: 100%;
  height: 220px;
  margin-top: -110px;
  filter: drop-shadow(0 -18px 50px rgba(0, 0, 0, 0.35));
}

.top-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

.top-divider path {
  fill: rgba(255, 255, 255, 0.98);
}

.page > header,
.page > section,
.page > footer {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
}

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

.nav {
  width: 100%;
  padding: 8px 0 24px;
}

.top .nav {
  padding: 18px 0 16px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 22px;
  line-height: 1.1;
}

.logo-mark {
  width: 56px;
  height: 56px;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  border: none;
  overflow: visible;
}

.logo-mark img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  padding: 0;
}

.top .logo-mark img {
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.35));
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0 auto;
}

.top .nav-links {
  color: rgba(234, 242, 255, 0.82);
}

.nav-links a {
  color: inherit;
  padding: 10px 8px;
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease, opacity 160ms ease;
}

.nav-links a:hover {
  background: rgba(74, 168, 255, 0.12);
  color: var(--ink);
}

.top .nav-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(234, 242, 255, 0.98);
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  font-weight: 600;
  box-shadow: 0 12px 22px rgba(70, 130, 200, 0.25);
}

.top .nav-cta {
  box-shadow: 0 18px 40px rgba(0, 110, 255, 0.25);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(360px, 1.1fr) minmax(360px, 1fr);
  gap: 56px;
  align-items: center;
  padding: 56px 0 32px;
  min-height: 62vh;
}

.top .hero-inner {
  padding: 56px 0 72px;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 3vw + 1.2rem, 4.1rem);
  margin: 0 0 16px;
  line-height: 1.1;
}

.hero-copy p {
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 1.15rem;
  max-width: 40rem;
  line-height: 1.65;
}

.top .hero-copy p {
  color: rgba(234, 242, 255, 0.76);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.badge-row {
  justify-content: center;
  margin-top: 10px;
}

.badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(74, 168, 255, 0.25);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.badge-link::before {
  content: "";
  position: absolute;
  inset: -28px;
  background: radial-gradient(circle at 50% 20%, rgba(120, 200, 255, 0.6), transparent 72%);
  opacity: 0.95;
  filter: blur(20px);
  z-index: -1;
}

.badge-link:hover {
  border-color: rgba(74, 168, 255, 0.55);
  box-shadow: 0 16px 34px rgba(40, 140, 255, 0.25);
}

.badge-link:focus-visible {
  outline: 2px solid rgba(120, 200, 255, 0.8);
  outline-offset: 3px;
}

.badge-link img {
  height: 48px;
  width: auto;
  border-radius: 8px;
}

.btn {
  padding: 12px 20px;
  border-radius: 14px;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--card-border);
  color: var(--ink);
  line-height: 1.6;
}

.btn.secondary {
  background: #ffffff;
  color: var(--ink);
  border-color: rgba(74, 168, 255, 0.25);
  box-shadow: var(--shadow-sm);
}

.btn.secondary:hover {
  border-color: rgba(74, 168, 255, 0.45);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 6px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border-radius: 12px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.btn-link:hover {
  background: rgba(74, 168, 255, 0.12);
  color: var(--ink);
  transform: translateY(-1px);
}

.btn-link:focus-visible {
  outline: 2px solid rgba(74, 168, 255, 0.75);
  outline-offset: 2px;
}

.top .btn-link {
  color: rgba(234, 242, 255, 0.86);
}

.top .btn-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(234, 242, 255, 0.98);
}

.top .btn.ghost {
  background: rgba(255, 255, 255, 0.92);
  border-color: transparent;
  color: #071a35;
  box-shadow: 0 16px 40px rgba(3, 10, 25, 0.35);
}

.hero-media {
  position: relative;
  justify-self: end;
  width: min(560px, 100%);
  height: 460px;
}

.hero-media .mock {
  position: absolute;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(6, 20, 44, 0.55);
  backdrop-filter: blur(10px);
}

.hero-media .mock img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.04);
}

.hero-media.single {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.hero-media.single .mock {
  position: relative;
  width: min(680px, 100%);
  height: auto;
  transform: none;
  right: auto;
  top: auto;
  border: none;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.hero-media.single .mock img {
  height: auto;
  width: 100%;
  aspect-ratio: auto;
  border: none;
  outline: none;
}

.hero-media .mock-a {
  width: 290px;
  height: 430px;
  right: 255px;
  top: 40px;
  transform: rotate(-12deg);
  opacity: 0.92;
}

.hero-media .mock-b {
  width: 310px;
  height: 460px;
  right: 120px;
  top: 10px;
  transform: rotate(-2deg);
  opacity: 0.97;
}

.hero-media .mock-c {
  width: 330px;
  height: 490px;
  right: 0;
  top: 38px;
  transform: rotate(8deg);
}

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

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

  .spotlight-media {
    justify-content: center;
  }

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

  .hero-media {
    height: 520px;
    justify-self: start;
  }

  .hero-media.single {
    height: auto;
  }

  .hero-media .mock-a {
    right: 52%;
  }

  .hero-media .mock-b {
    right: 26%;
  }

  .hero-media .mock-c {
    right: 0;
  }
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--pill);
  color: var(--ink-soft);
  font-size: 12.5px;
}

.top .pill {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(234, 242, 255, 0.78);
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0 6px;
  flex-wrap: wrap;
}

.trust-label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(234, 242, 255, 0.6);
  font-weight: 700;
}

.trust-logos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-chip {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(234, 242, 255, 0.78);
  font-size: 12.5px;
}

.section {
  margin-top: 72px;
}

.fade-section {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  .fade-section {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

#workflow.section {
  margin-top: 96px;
}

#showcase.section {
  background: linear-gradient(180deg, #040404, #0a0a0a 55%, #040404);
  color: #eef4ff;
  padding: 56px 0 56px;
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

#showcase.section h2 {
  color: #f5f7ff;
}

#showcase.section p {
  color: rgba(234, 242, 255, 0.82);
}

#how.section {
  background: radial-gradient(circle at 20% 0%, rgba(76, 150, 255, 0.28), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(120, 200, 255, 0.2), transparent 50%),
    linear-gradient(135deg, #070c1c, #0b1e3d 55%, #102b55);
  color: #eaf2ff;
  padding: 56px 0;
  border-top: none;
  border-bottom: 1px solid rgba(74, 168, 255, 0.18);
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 50% 42px, 100% 0, 100% 100%, 0 100%);
}

#how.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.08), transparent 40%),
    radial-gradient(circle at 85% 15%, rgba(120, 200, 255, 0.12), transparent 45%),
    radial-gradient(circle at 70% 85%, rgba(120, 200, 255, 0.08), transparent 40%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04) 0px,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 120px
    );
  opacity: 0.7;
  pointer-events: none;
}

#how.section::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 200, 255, 0.25), rgba(120, 200, 255, 0) 65%);
  filter: blur(2px);
  opacity: 0.85;
  pointer-events: none;
}

#how.section > .container {
  position: relative;
  z-index: 1;
}
#how.section h2 {
  color: #f4f7ff;
}

#how.section p {
  color: rgba(234, 242, 255, 0.82);
}

#how.section .how-item h3 {
  color: #162232;
}

#how.section .how-item p {
  color: #3e4f63;
}

.section h2 {
  font-size: clamp(1.7rem, 1.6vw + 1rem, 2.5rem);
  margin-bottom: 16px;
}

.section p {
  color: var(--ink-soft);
}

.section.alt {
  background: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(74, 168, 255, 0.12);
  border-bottom: 1px solid rgba(74, 168, 255, 0.12);
  padding: 32px 0;
}

.spotlight {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: center;
}

.spotlight-copy h2 {
  margin-top: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(74, 168, 255, 0.12);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 22px;
  display: grid;
  gap: 10px;
}

.bullet-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 6px 12px rgba(47, 127, 230, 0.25);
}

.spotlight-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.spotlight-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 8px 0 22px;
}

.stat {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: var(--shadow-sm);
}

.stat-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}

.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}

.spotlight-media {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.phone-mock {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(30, 65, 120, 0.22);
  border: 1px solid rgba(74, 168, 255, 0.25);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
}

.phone-mock img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.spotlight-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(30, 65, 120, 0.18);
}

.spotlight-panel {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 14px;
  display: grid;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}

.panel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-soft);
}

.panel-row strong {
  color: var(--ink);
  font-weight: 600;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow-sm);
  min-height: 150px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 168, 255, 0.35);
  box-shadow: var(--shadow-md);
}

.feature-card h3 {
  margin: 10px 0 8px;
  font-size: 1.05rem;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(74, 168, 255, 0.18);
  color: #2f7fe6;
  font-size: 20px;
}

.feature-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.feature-label {
  margin-top: 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}

.showcase {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.95fr);
  gap: 32px;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
}

.showcase img {
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 14px;
  justify-content: end;
  justify-self: end;
  max-width: 460px;
}

.before-after figure {
  margin: 0;
  background: #ffffff;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(74, 168, 255, 0.2);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.before-after img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: none;
}

.before-after figcaption {
  margin-top: 10px;
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.how-strip {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  position: relative;
}

.how-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.92));
  border: 1px solid rgba(74, 168, 255, 0.22);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.how-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(74, 168, 255, 0.18), transparent 55%),
    radial-gradient(circle at 90% 20%, rgba(255, 159, 122, 0.12), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}

.how-item:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 168, 255, 0.42);
  box-shadow: var(--shadow-md);
}

.how-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  box-shadow: 0 12px 26px rgba(20, 60, 120, 0.18);
}

.how-badge {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(74, 168, 255, 0.95), rgba(47, 127, 230, 0.95));
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 12px;
  box-shadow: 0 10px 20px rgba(47, 127, 230, 0.28);
  position: relative;
  z-index: 1;
}

.how-item h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
  color: inherit;
}

.how-item p {
  margin: 0;
  color: var(--ink-soft);
  position: relative;
  z-index: 1;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(74, 168, 255, 0.18);
}


.cta {
  margin-top: 0;
  padding: 32px 32px 56px;
  background: linear-gradient(180deg, #050505, #0c0c0c 55%, #050505);
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  box-shadow: var(--shadow);
}

#download.cta {
  padding-top: 56px;
}

.cta-logo {
  width: 56px;
  height: 56px;
  margin: 0 auto 8px;
  border-radius: 0;
  background: transparent;
  border: none;
  display: grid;
  place-items: center;
  box-shadow: none;
  transform: translateY(-20px);
}

.cta-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cta h2 {
  margin-top: 0;
  color: #f7f7f7;
}

.cta p {
  color: rgba(245, 245, 245, 0.75);
}

.cta-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 14px;
  align-items: center;
  justify-content: center;
  padding-bottom: 24px;
}

.cta-actions {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.cta-note {
  font-size: 13px;
  color: rgba(245, 245, 245, 0.6);
}

.qr-card {
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(74, 168, 255, 0.25);
  box-shadow: var(--shadow-sm);
}

.qr-card img {
  width: 132px;
  height: 132px;
  object-fit: contain;
}

.footer {
  margin: 0;
  padding: 34px 0 40px;
  color: rgba(245, 245, 245, 0.7);
  background: #050505;
  font-size: 13px;
  text-align: left;
}

.footer .container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.footer-card {
  background: linear-gradient(180deg, #0a0a0a, #050505 60%, #040404);
  border-radius: 0;
  padding: 28px 40px 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(200px, 1.2fr) minmax(160px, 0.8fr) minmax(140px, 0.6fr);
  gap: 28px;
  align-items: start;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-brand p {
  margin: 6px 0 0;
  color: rgba(245, 245, 245, 0.55);
}

.footer-logo {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.footer-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(245, 245, 245, 0.45);
  margin-bottom: 10px;
  font-weight: 600;
}

.footer-email {
  color: #7cc6ff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.email-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 245, 245, 0.8);
  background: transparent;
}

.email-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}


.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(245, 245, 245, 0.75);
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 22px 0 14px;
}

.footer-bottom {
  color: rgba(245, 245, 245, 0.45);
}

.legal h1 {
  font-size: clamp(2rem, 2vw + 1.2rem, 2.6rem);
  margin-bottom: 12px;
}

.legal h2 {
  margin-top: 24px;
  font-size: 1.2rem;
}

.legal p {
  max-width: 720px;
}

.legal-note {
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }

  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-inner {
    padding-top: 8px;
  }

  .top .hero-inner {
    padding-top: 52px;
  }

  .footer {
    text-align: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

}

@media (max-width: 600px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-inner {
    gap: 20px;
  }

  .hero-media {
    height: 440px;
  }

  .hero-media.single {
    height: auto;
  }

  .hero-media.single .mock {
    width: 100%;
  }

  .spotlight-stats {
    grid-template-columns: 1fr;
  }

  .spotlight-tag {
    left: 12px;
    bottom: 12px;
    font-size: 11px;
  }

  .hero-media .mock-a {
    width: 230px;
    height: 350px;
    top: 46px;
    right: 48%;
  }

  .hero-media .mock-b {
    width: 250px;
    height: 380px;
    top: 20px;
    right: 20%;
  }

  .hero-media .mock-c {
    width: 270px;
    height: 410px;
    top: 44px;
  }

  .feature-grid {
    gap: 14px;
  }

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

  .before-after {
    grid-template-columns: 1fr;
  }

  .before-after img {
    height: 200px;
  }

  .cta {
    padding: 24px;
    text-align: center;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .badge-link img {
    height: 44px;
  }

  .qr-card img {
    width: 120px;
    height: 120px;
  }
}
