:root {
  --blue: #2196f3;
  --purple: #9c27b0;
  --blue-dark: #1565c0;
  --text: #1a1a2e;
  --muted: #5c5c72;
  --surface: #ffffff;
  --border: #e8eaf0;
  --muted-bg: #f4f7fc;
  --radius: 16px;
  --shadow: 0 12px 40px rgba(33, 150, 243, 0.1);
  --shadow-lg: 0 20px 60px rgba(33, 150, 243, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

a {
  color: var(--blue);
}

.container {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
}

.container.narrow {
  width: min(760px, calc(100% - 32px));
}

/* ── Top bar ── */
.top-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.top-nav {
  display: none;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  font-size: 0.92rem;
  font-weight: 600;
}

.top-nav a {
  text-decoration: none;
  color: var(--muted);
  transition: color 0.15s;
}

.top-nav a:hover {
  color: var(--blue);
}

.nav-cta {
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff !important;
}

.nav-cta:hover {
  opacity: 0.92;
}

.lang-toggle {
  display: inline-flex;
  margin-left: auto;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: var(--surface);
  flex-shrink: 0;
}

.top-bar .lang-toggle {
  margin-left: 0;
}

.lang-toggle button {
  border: 0;
  background: transparent;
  padding: 7px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--muted);
}

.lang-toggle button.active {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
}

/* ── Hero ── */
.hero-band {
  padding: 48px 0 56px;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(33, 150, 243, 0.14), transparent),
    radial-gradient(ellipse 70% 50% at 90% 20%, rgba(156, 39, 176, 0.12), transparent),
    linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}

.hero-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-dark);
  background: rgba(33, 150, 243, 0.1);
}

/* ── Download hero (top of page, QR landing) ── */
.download-hero {
  padding: 28px 0 40px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(33, 150, 243, 0.16), transparent),
    radial-gradient(ellipse 60% 50% at 90% 30%, rgba(156, 39, 176, 0.12), transparent),
    linear-gradient(180deg, #eef6ff 0%, #fff 100%);
}

.download-hero-head {
  margin-bottom: 20px;
}

.download-logo {
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 16px;
}

.download-title {
  margin: 0 0 10px;
  font-size: clamp(2rem, 6vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--blue) 20%, var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.download-lead {
  margin: 0 auto;
  max-width: 28rem;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 600;
}

.download-hero .download-card {
  max-width: 680px;
  margin: 0 auto;
  padding: 24px;
}

.app-preview {
  max-width: 900px;
  margin: 28px auto 0;
}

.app-preview-title {
  margin: 0 0 6px;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.app-preview-hint {
  margin: 0 0 12px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
}

.screenshot-sections {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.screenshot-section + .screenshot-section {
  padding-top: 22px;
  border-top: 1px solid rgba(26, 26, 46, 0.08);
}

.screenshot-section-label {
  margin: 0 0 10px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue-dark);
}

.screenshot-strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 2px 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.screenshot-strip::-webkit-scrollbar {
  height: 6px;
}

.screenshot-strip::-webkit-scrollbar-thumb {
  background: rgba(26, 26, 46, 0.2);
  border-radius: 999px;
}

.screenshot-frame {
  flex: 0 0 auto;
  width: min(42vw, 200px);
  margin: 0;
  scroll-snap-align: center;
  text-align: center;
}

.screenshot-open {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  border-radius: 22px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.screenshot-open:hover {
  transform: translateY(-2px);
}

.screenshot-open:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.screenshot-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  border: 3px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 36px rgba(26, 26, 46, 0.14);
  background: #fff;
  pointer-events: none;
}

.screenshot-frame figcaption {
  margin-top: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

@media (min-width: 720px) {
  .screenshot-strip {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 14px;
  }

  .screenshot-frame {
    width: 200px;
  }
}

.screenshot-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
}

.screenshot-lightbox[hidden] {
  display: none;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(12, 12, 24, 0.82);
  cursor: zoom-out;
}

.lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(92vw, 420px);
  max-height: calc(100vh - 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.lightbox-close {
  position: absolute;
  top: -12px;
  right: -8px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #1a1a2e;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.lightbox-close-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.lightbox-close:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.lightbox-img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 120px);
  height: auto;
  object-fit: contain;
  border-radius: 24px;
  border: 3px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  background: #fff;
}

.lightbox-caption {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
}

@media (min-width: 720px) {
  .lightbox-panel {
    width: min(420px, 36vw);
  }
}

.hero-copy h1,
.hero-heading {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 7vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--blue) 20%, var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin: 0 0 12px;
  font-size: clamp(1.15rem, 3vw, 1.35rem);
  font-weight: 600;
  color: var(--text);
  max-width: 36rem;
}

.hero-sub {
  margin: 0 0 24px;
  color: var(--muted);
  max-width: 36rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  box-shadow: 0 8px 24px rgba(33, 150, 243, 0.28);
}

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: #fff;
}

.hero-card {
  padding: 28px;
}

.hero-card-label {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--purple);
}

.hero-card-text {
  margin: 0 0 24px;
  font-size: 1.1rem;
  font-weight: 600;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat {
  text-align: center;
  padding: 14px 8px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.06), rgba(156, 39, 176, 0.06));
}

.stat-num {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--blue);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

/* ── Sections ── */
.section {
  padding: 56px 0;
  scroll-margin-top: 88px;
}

#share-experience {
  scroll-margin-top: 96px;
}

.section-muted {
  background: var(--muted-bg);
}

.section-title {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 4vw, 2rem);
  letter-spacing: -0.03em;
}

.section-title.center {
  text-align: center;
}

.section-title.light {
  color: #fff;
}

.section-lead {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-lead.center {
  text-align: center;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.section-lead.light,
.hint.light {
  color: rgba(255, 255, 255, 0.88);
}

.center {
  text-align: center;
}

.highlight-line {
  margin-top: 28px;
  font-weight: 600;
  color: var(--blue-dark);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ── Features ── */
.feature-grid {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.feature-card {
  padding: 24px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  margin-bottom: 14px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--purple));
}

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

.feature-card p {
  margin: 0;
  color: var(--muted);
}

/* ── How it works ── */
.how-grid {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.how-card {
  padding: 28px;
}

.how-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue-dark);
  background: rgba(33, 150, 243, 0.12);
}

.how-badge-alt {
  color: var(--purple);
  background: rgba(156, 39, 176, 0.12);
}

.how-list {
  margin: 0;
  padding-left: 1.2rem;
}

.how-list li {
  margin-bottom: 10px;
  color: var(--text);
}

.how-list li:last-child {
  margin-bottom: 0;
}

.how-note {
  margin-top: 28px;
  font-weight: 600;
  color: var(--muted);
}

.how-unpaid-note {
  margin: 14px auto 0;
  max-width: 720px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}

/* ── Common questions ── */
.qa-list {
  display: grid;
  gap: 18px;
  margin-top: 8px;
}

.qa-item {
  padding: 20px 22px;
  border-radius: 14px;
  background: var(--surface, #fff);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.qa-q {
  margin: 0 0 10px;
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--text);
}

.qa-a {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--muted);
}

/* ── Pricing ── */
.pricing-group-title {
  margin: 36px 0 16px;
  font-size: 1.15rem;
}

.pricing-grid {
  display: grid;
  gap: 20px;
}

.price-card {
  padding: 24px;
  position: relative;
}

.price-card-featured {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
}

.price-card-wide {
  max-width: 720px;
}

.price-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--purple));
}

.price-card h4 {
  margin: 0 0 6px;
  font-size: 1.15rem;
}

.price-amount {
  margin: 0 0 14px;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.02em;
}

.price-amount-inline {
  font-size: 1.15rem;
  margin: 0 0 12px;
}

.price-free-label {
  margin: 0 0 12px;
  font-weight: 700;
}

.price-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.price-list li {
  margin-bottom: 8px;
}

.price-list li:last-child {
  margin-bottom: 0;
}

.pricing-locations-note {
  margin: 20px auto 0;
  max-width: 760px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
  text-align: center;
}

/* ── Tags ── */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.tag {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-dark);
  background: #fff;
  border: 1px solid rgba(33, 150, 243, 0.2);
  box-shadow: 0 4px 14px rgba(33, 150, 243, 0.08);
}

/* ── Mission ── */
.mission-band {
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  color: #fff;
}

.mission-text {
  margin: 0;
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  line-height: 1.7;
  opacity: 0.95;
}

/* ── About + contact ── */
.about-grid {
  display: grid;
  gap: 28px;
  align-items: start;
}

.contact-card {
  padding: 28px;
}

.contact-card h3 {
  margin: 0 0 12px;
}

.contact-card p {
  margin: 0 0 12px;
}

.contact-meta {
  color: var(--muted);
}

.contact-stripe {
  margin-top: 16px !important;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--muted);
}

/* ── Download (legacy band — unused) ── */
.download-band {
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(33, 150, 243, 0.2), transparent),
    linear-gradient(160deg, #1a1a2e 0%, #2d2a5e 50%, #1a1a2e 100%);
  padding-bottom: 64px;
}

.download-card {
  max-width: 640px;
  margin: 0 auto;
  padding: 24px;
}

.store-grid {
  display: grid;
  gap: 20px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 18px 20px;
  border-radius: 14px;
  border: 2px solid transparent;
  text-decoration: none;
  color: inherit;
  background: #f7f9fc;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.store-btn-tile {
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 32px 24px 28px;
  min-height: 220px;
}

.store-platform-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  margin-bottom: 8px;
  border-radius: 22px;
  flex-shrink: 0;
}

.store-platform-icon img,
.store-platform-icon svg {
  width: 72px;
  height: 72px;
  display: block;
}

.store-platform-icon-apple {
  background: #fff;
  color: #1a1a2e;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.store-platform-icon-apple img {
  width: 64px;
  height: 64px;
  filter: none;
}

.store-platform-icon-android {
  background: #fff;
  box-shadow: 0 8px 24px rgba(66, 133, 244, 0.15);
}

.store-platform-icon-android img {
  width: 76px;
  height: 76px;
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(33, 150, 243, 0.18);
}

.store-btn.recommended {
  border-color: var(--blue);
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.08), rgba(156, 39, 176, 0.08));
}

.store-btn.recommended .store-platform-icon {
  transform: scale(1.06);
}

.store-btn.disabled {
  opacity: 0.72;
  pointer-events: none;
}

.store-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.store-copy strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0;
}

.store-subtitle {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.store-btn.recommended .store-subtitle {
  color: var(--blue-dark);
}

.hint {
  margin-top: 16px;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.download-band .hint {
  color: rgba(255, 255, 255, 0.75);
}

/* ── Footer ── */
.site-footer {
  padding: 40px 0 48px;
  background: #0f0f1a;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.footer-inner {
  text-align: center;
}

.site-footer nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 16px 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 600;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* ── Legal pages ── */
.legal-page .container,
.legal-page .wrap {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 48px;
}

.legal-page h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin: 0 0 8px;
}

.legal-meta,
.legal-subtitle {
  color: var(--muted);
  margin: 0 0 20px;
}

.legal-body h2 {
  margin-top: 28px;
  font-size: 1.15rem;
}

.legal-body h3 {
  margin-top: 18px;
  font-size: 1rem;
}

.legal-body ul {
  padding-left: 1.25rem;
}

.legal-body hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

.support-card p {
  margin: 0 0 12px;
}

.billing-return-close-hint {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.billing-return-page .billing-return-card {
  text-align: center;
  max-width: 480px;
  margin: 48px auto 32px;
  padding: 32px 24px;
}

.billing-return-actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.billing-return-actions .btn-primary {
  min-width: min(100%, 280px);
}

.billing-return-hint {
  margin: 8px 0 0;
}

.billing-return-download {
  margin: 20px 0 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.billing-return-stores {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
}

.billing-return-store-link.muted {
  color: var(--muted);
}

.billing-return-store-link[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.65;
  text-decoration: none;
  color: var(--muted);
}

.support-card a {
  font-weight: 600;
}

/* ── Responsive ── */
@media (min-width: 720px) {
  .top-nav {
    display: flex;
  }

  .top-bar .lang-toggle {
    margin-left: 0;
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

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

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

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

  .about-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

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

  .store-platform-icon {
    width: 112px;
    height: 112px;
  }

  .store-platform-icon-apple img {
    width: 72px;
    height: 72px;
  }

  .store-platform-icon-android img {
    width: 84px;
    height: 84px;
  }
}

@media (min-width: 900px) {
  .top-bar-inner {
    padding: 14px 0;
  }
}

@media (max-width: 719px) {
  .top-bar-inner {
    flex-wrap: wrap;
  }

  .top-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 16px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
  }

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

  .store-btn-tile {
    min-height: 200px;
    padding: 36px 24px 32px;
  }

  .store-platform-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 12px;
  }

  .store-platform-icon-apple img {
    width: 80px;
    height: 80px;
  }

  .store-platform-icon-android img {
    width: 92px;
    height: 92px;
  }

  .store-copy strong {
    font-size: 1.2rem;
  }
}

/* ── Testimonials / site experiences ── */
.testimonials-section {
  background:
    radial-gradient(ellipse 80% 55% at 12% 0%, rgba(33, 150, 243, 0.14), transparent),
    radial-gradient(ellipse 70% 50% at 92% 12%, rgba(156, 39, 176, 0.11), transparent),
    linear-gradient(180deg, #f4f8fd 0%, #f8fbff 48%, #fff 100%);
}

.testimonials-eyebrow {
  margin: 0 auto 12px;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-dark);
  background: rgba(33, 150, 243, 0.1);
}

.testimonials-title {
  background: linear-gradient(135deg, var(--blue) 15%, var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.testimonials-grid {
  display: grid;
  gap: 20px;
  margin: 32px 0 40px;
}

.testimonial-card {
  position: relative;
  margin: 0;
  padding: 24px 24px 24px 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  border: 1px solid rgba(33, 150, 243, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 10px 32px rgba(33, 150, 243, 0.08);
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--blue), var(--purple));
}

.testimonial-quote {
  margin: 0 0 16px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
}

.testimonial-quote::before {
  content: "\201C";
  color: var(--purple);
  font-weight: 700;
  margin-right: 2px;
}

.testimonial-quote::after {
  content: "\201D";
  color: var(--purple);
  font-weight: 700;
  margin-left: 2px;
}

.testimonial-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  font-size: 0.92rem;
}

.testimonial-role {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--purple));
}

.testimonial-author {
  font-style: normal;
  font-weight: 600;
  color: var(--muted);
}

.testimonials-empty {
  margin: 0 0 32px;
  color: var(--muted);
}

.testimonials-form-card {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px 32px;
  background: #fff;
  border: 1px solid rgba(33, 150, 243, 0.18);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.testimonials-form-card::before {
  content: "";
  display: block;
  height: 4px;
  margin: 0 -24px 24px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
}

.testimonials-form-title {
  margin: 0 0 20px;
  font-size: 1.2rem;
  text-align: center;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.testimonials-form {
  display: grid;
  gap: 18px;
}

.testimonials-role-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.testimonials-role-fieldset legend,
.testimonials-stars-fieldset legend {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text);
}

.testimonials-role-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.testimonials-role-pill {
  position: relative;
  flex: 1 1 140px;
  cursor: pointer;
}

.testimonials-role-pill input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.testimonials-role-pill span {
  display: block;
  text-align: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--muted);
  background: #fff;
  border: 1px solid rgba(33, 150, 243, 0.22);
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.testimonials-role-pill input:checked + span {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--purple));
}

.testimonials-role-pill input:focus-visible + span {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.testimonials-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(33, 150, 243, 0.06);
  border: 1px solid rgba(33, 150, 243, 0.12);
  width: fit-content;
}

.testimonials-check input {
  accent-color: var(--blue);
}

.testimonials-stars-fieldset {
  margin: 0;
  padding: 14px 16px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.06), rgba(156, 39, 176, 0.05));
}

.testimonials-stars-fieldset legend {
  margin-bottom: 8px;
}

.testimonials-stars-input {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 2px;
}

.testimonials-stars-input input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.testimonials-stars-input label {
  font-size: 2rem;
  line-height: 1;
  color: #d0d4de;
  cursor: pointer;
  transition: color 0.12s ease, transform 0.12s ease;
  user-select: none;
}

.testimonials-stars-input label:hover,
.testimonials-stars-input label:hover ~ label,
.testimonials-stars-input input:checked ~ label {
  color: #ffb300;
}

.testimonials-stars-input label:active {
  transform: scale(1.08);
}

.testimonial-stars-row {
  margin-bottom: 10px;
}

.testimonial-stars {
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: #ffb300;
}

.testimonial-stars-empty {
  color: #d0d4de;
}

.testimonials-field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text);
}

.testimonials-field input,
.testimonials-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(33, 150, 243, 0.2);
  border-radius: 14px;
  font: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.testimonials-field input:focus,
.testimonials-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.14);
}

.testimonials-field textarea {
  resize: vertical;
  min-height: 120px;
}

.testimonials-hint {
  margin: 8px 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.testimonials-form-error {
  margin: 0;
  padding: 10px 14px;
  border-radius: 12px;
  color: #b71c1c;
  font-size: 0.92rem;
  background: rgba(198, 40, 40, 0.08);
}

.testimonials-form-success {
  margin: 0;
  padding: 10px 14px;
  border-radius: 12px;
  color: #1b5e20;
  font-size: 0.92rem;
  background: rgba(46, 125, 50, 0.08);
}

.testimonials-submit {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 32px;
  border: none;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  cursor: pointer;
  box-shadow: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.testimonials-submit:hover:not(:disabled) {
  opacity: 0.94;
}

.testimonials-submit:active:not(:disabled) {
  transform: scale(0.98);
}

.testimonials-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

@media (min-width: 720px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
