/* RWA Manager — PhonePe Business–inspired marketing UI */
:root {
  --bg: #ffffff;
  --bg-soft: #f7f5fb;
  --bg-tint: #f0ebf8;
  --surface: #ffffff;
  --text: #1a1025;
  --text-secondary: #3d3350;
  --muted: #6b6280;
  --accent: #5f259f;
  --accent-hover: #4a1c7d;
  --accent-soft: #efe6f8;
  --accent-mid: #7b3bb8;
  --success: #0f9d58;
  --negative: #d93025;
  --border: #e8e2f0;
  --border-strong: #d4cce0;
  --shadow-sm: 0 1px 2px rgba(26, 16, 37, 0.04), 0 4px 12px rgba(95, 37, 159, 0.06);
  --shadow-md: 0 8px 28px rgba(95, 37, 159, 0.1), 0 2px 8px rgba(26, 16, 37, 0.04);
  --shadow-lg: 0 20px 48px rgba(95, 37, 159, 0.14);
  --radius: 16px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Plus Jakarta Sans", var(--font);
  --header-h: 72px;
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-secondary);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.75rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.15rem, 4.5vw, 3.35rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  margin-bottom: 0.85rem;
}

h3 {
  font-size: 1.125rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ——— Header (PhonePe-style white sticky bar) ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo:hover {
  text-decoration: none;
  color: var(--accent);
}

.logo-mark {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  display: block;
  flex-shrink: 0;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(95, 37, 159, 0.32);
}

.logo-mark svg {
  width: 1.1rem;
  height: 1.1rem;
}

.nav-desktop {
  display: none;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.15rem 1rem;
  max-width: min(100%, 52rem);
}

.nav-desktop .nav-download-link {
  color: var(--accent);
  font-weight: 600;
}

.nav-desktop a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: none;
  padding: 0.35rem 0;
}

.nav-desktop a:hover {
  color: var(--accent);
}

.nav-desktop a.btn {
  margin-left: 0.35rem;
  padding: 0.55rem 1.2rem;
}

.nav-desktop a.btn-primary {
  color: #fff;
}

.nav-desktop a.btn-primary:hover {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.92rem;
  font-family: var(--font);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s, color 0.2s;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(95, 37, 159, 0.28);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  box-shadow: 0 6px 18px rgba(95, 37, 159, 0.35);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

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

.btn-lg {
  padding: 0.85rem 1.65rem;
  font-size: 1rem;
}

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

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

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 0 1.25rem;
  border-top: 1px solid var(--border);
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  color: var(--text-secondary);
  padding: 0.65rem 0;
  font-weight: 500;
}

.nav-mobile a.nav-download-link {
  color: var(--accent);
  font-weight: 600;
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .nav-mobile {
    display: none !important;
  }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  padding: 3.5rem 0 4rem;
  background:
    radial-gradient(ellipse 70% 55% at 85% 15%, rgba(95, 37, 159, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(123, 59, 184, 0.08), transparent 50%),
    linear-gradient(180deg, var(--bg-tint) 0%, var(--bg) 70%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.15rem;
}

.hero h1 {
  margin-bottom: 1rem;
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  max-width: 36rem;
  margin-bottom: 1.75rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

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

.hero-visual {
  display: none;
  position: relative;
}

@media (min-width: 960px) {
  .hero-visual {
    display: block;
  }
}

.hero-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(95, 37, 159, 0.15), rgba(123, 59, 184, 0.05));
  z-index: -1;
}

.hero-panel-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.hero-panel-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hero-panel-row:first-child {
  padding-top: 0;
}

.hero-panel-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.15rem;
}

.hero-panel-row strong {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-panel-row span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Trust / stats strip */
.trust-strip {
  padding: 1.75rem 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

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

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.trust-item span {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

/* ——— Sections ——— */
section {
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--border);
}

.section-intro {
  max-width: 640px;
  margin-bottom: 2.75rem;
}

.section-intro h2 {
  margin-bottom: 0.75rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.65rem;
}

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

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

/* Grid cards */
.grid-3 {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.card-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.card h3 {
  color: var(--text);
  margin-bottom: 0.5rem;
}

.card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.card ul li {
  margin-bottom: 0.35rem;
}

/* Interfaces */
.interfaces-section {
  background: var(--bg-soft);
}

.interface-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .interface-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.interface-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.interface-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.interface-card h3 {
  color: var(--text);
  margin: 0.5rem 0 0.35rem;
  font-size: 1.2rem;
}

.interface-for {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: var(--muted);
}

.interface-card ul {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
  flex: 1;
}

.interface-card ul li {
  margin-bottom: 0.4rem;
}

.interface-tech {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}

.interface-tech code {
  color: var(--text);
  font-size: 0.78rem;
}

.interface-badge {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  width: fit-content;
}

.interface-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.interface-icon-svg {
  width: 1.65rem;
  height: 1.65rem;
  display: block;
}

.interface-icon--web {
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(95, 37, 159, 0.15);
}

.interface-icon--android {
  background: #e6f7ed;
  color: #0f9d58;
  border: 1px solid rgba(15, 157, 88, 0.2);
}

.interface-icon--ios {
  background: #f0f1f4;
  color: #3d3350;
  border: 1px solid var(--border);
}

.interfaces-note {
  margin: 2rem 0 0;
  max-width: 52rem;
  font-size: 0.92rem;
  color: var(--muted);
}

/* Product gallery */
:root {
  --carousel-frame-h: 360px;
  --carousel-frame-h-mobile: 570px;
}

.gallery-section {
  background: var(--bg);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.gallery-sub {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.gallery-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0 0 1rem;
  padding: 0.3rem;
  background: var(--bg-soft);
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
}

.gallery-tab.btn {
  font-family: var(--font);
  box-shadow: none;
  border: none;
  background: transparent;
  color: var(--muted);
  padding: 0.5rem 1.1rem;
}

.gallery-tab.btn:hover {
  background: transparent;
  color: var(--accent);
  transform: none;
  box-shadow: none;
}

.gallery-tab.btn-primary.is-active,
.gallery-tab.is-active {
  background: var(--accent) !important;
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(95, 37, 159, 0.25);
}

.gallery-tab.btn-ghost {
  color: var(--muted);
}

.gallery-panel[hidden] {
  display: none !important;
}

#galleryPanelWeb,
#galleryPanelMobile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.gallery-carousel {
  width: fit-content;
  max-width: 100%;
  margin: 0 0 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.65rem 0.75rem 0.85rem;
  outline: none;
  box-sizing: border-box;
  box-shadow: var(--shadow-md);
}

.gallery-carousel:focus-visible {
  box-shadow: 0 0 0 3px rgba(95, 37, 159, 0.25);
}

.gallery-carousel--mobile .carousel-slide img {
  object-position: left center;
}

@media (max-width: 768px) {
  :root {
    --carousel-frame-h: min(54vw, 360px);
    --carousel-frame-h-mobile: min(102vw, 600px);
  }
}

.carousel-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: var(--bg-soft);
  touch-action: manipulation;
  width: auto;
  max-width: 100%;
  height: var(--carousel-frame-h);
  max-height: var(--carousel-frame-h);
  cursor: grab;
  user-select: none;
}

.carousel-viewport:active {
  cursor: grabbing;
}

.gallery-carousel--mobile .carousel-viewport {
  height: var(--carousel-frame-h-mobile);
  max-height: var(--carousel-frame-h-mobile);
}

.carousel-track {
  display: flex;
  height: 100%;
  margin: 0;
  transition: transform 0.4s ease;
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 auto;
  margin: 0;
  padding: 0.35rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.carousel-hit {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: 32%;
  padding: 0;
  border: none;
  cursor: pointer;
  background: linear-gradient(to right, rgba(26, 16, 37, 0.12), transparent);
  opacity: 0.35;
  transition: opacity 0.2s ease;
}

.carousel-hit--prev {
  left: 0;
}

.carousel-hit--next {
  right: 0;
  background: linear-gradient(to left, rgba(26, 16, 37, 0.12), transparent);
}

.carousel-viewport:hover .carousel-hit,
.carousel-hit:focus-visible {
  opacity: 1;
}

.carousel-hit:hover {
  opacity: 1;
}

.carousel-hit--prev::after,
.carousel-hit--next::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.75rem;
  line-height: 1;
  color: var(--text);
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.8);
  pointer-events: none;
}

.carousel-hit--prev::after {
  content: "‹";
  left: 0.65rem;
}

.carousel-hit--next::after {
  content: "›";
  right: 0.65rem;
}

.carousel-slide-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
}

.carousel-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
  padding: 0 0.25rem;
}

.carousel-caption {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.carousel-counter {
  font-size: 0.85rem;
  color: var(--muted);
  white-space: nowrap;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.65rem;
}

.carousel-btn {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

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

.carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  max-width: min(100%, 420px);
}

.carousel-dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--border-strong);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.carousel-dot.is-active {
  background: var(--accent);
  transform: scale(1.25);
}

.carousel-dot:hover {
  background: var(--muted);
}

/* Platforms */
.platform-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pill {
  background: var(--accent-soft);
  border: 1px solid rgba(95, 37, 159, 0.12);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.85rem 1.6rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.price-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.price-card.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--accent);
  background: linear-gradient(180deg, #faf7fd 0%, #fff 40%);
}

.price-card.featured::before {
  content: "Most popular";
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.price-card .plan-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
}

.price-card .amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  margin-top: 0.25rem;
}

.price-card .period {
  font-size: 0.85rem;
  color: var(--muted);
}

.price-card .period-detail {
  display: block;
  margin-top: 0.2rem;
}

.plan-tagline {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 1rem;
  line-height: 1.45;
}

.amount-custom {
  font-size: 1.65rem;
}

.plan-features {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  flex: 1;
}

.plan-features li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.45rem;
  color: var(--muted);
  line-height: 1.4;
}

.plan-features li:last-child {
  margin-bottom: 0;
}

.plan-features .feat-yes {
  color: var(--text-secondary);
}

.plan-features .feat-yes::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.plan-features .feat-no {
  color: var(--muted);
  opacity: 0.75;
}

.plan-features .feat-no::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: var(--negative);
  font-weight: 700;
}

.plan-cta {
  margin-top: 1.35rem;
  text-align: center;
  width: 100%;
  justify-content: center;
}

.popular-foot {
  display: none;
}

/* Table */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-top: 1.5rem;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

th,
td {
  padding: 0.9rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  background: var(--bg-soft);
  color: var(--text);
  font-weight: 600;
}

td {
  color: var(--muted);
}

tr:last-child td {
  border-bottom: none;
}

/* Terms list */
.terms-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.65rem;
  color: var(--muted);
  font-size: 0.95rem;
}

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

/* Infra */
.infra-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 600px) {
  .infra-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.infra-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow-sm);
}

.infra-item h3 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.infra-item p {
  font-size: 0.88rem;
  margin: 0;
}

/* CTA — full-bleed brand band */
.cta {
  background: linear-gradient(135deg, var(--accent) 0%, #3d1870 100%);
  text-align: center;
  padding: 4.5rem 1.25rem;
  border-bottom: none;
}

.cta h2 {
  margin-bottom: 0.75rem;
  color: #fff;
}

.cta p {
  max-width: 520px;
  margin: 0 auto 1.75rem;
  color: rgba(255, 255, 255, 0.88);
}

.cta .btn-primary {
  background: #fff;
  color: var(--accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta .btn-primary:hover {
  background: #f5f0fa;
  color: var(--accent-hover);
}

/* Contact */
.contact-section {
  text-align: left;
  scroll-margin-top: 5rem;
}

.contact-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr 1.1fr;
    gap: 2.5rem;
  }
}

.contact-copy h2,
.contact-copy p {
  text-align: left;
  margin-left: 0;
}

.contact-eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

.contact-email-line {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.92);
}

.contact-email-link {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-email-link:hover {
  color: #f5f0fa;
}

.contact-email-hint {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
}

@media (min-width: 640px) {
  .contact-email-hint {
    display: inline;
    margin-top: 0;
    margin-left: 0.25rem;
  }
}

.contact-form {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  color: var(--text);
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.contact-field-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 560px) {
  .contact-field-row {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: 2px solid rgba(95, 37, 159, 0.35);
  border-color: var(--accent);
}

.contact-field textarea {
  resize: vertical;
  min-height: 7rem;
}

.contact-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.contact-form-status {
  min-height: 1.25rem;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.contact-form-status.is-success {
  color: #2e7d32;
  font-weight: 600;
}

.contact-form-status.is-error {
  color: #c62828;
  font-weight: 600;
}

.contact-form-status.is-pending {
  color: var(--muted);
}

.contact-submit {
  width: 100%;
}

@media (min-width: 480px) {
  .contact-submit {
    width: auto;
  }
}

/* Footer */
.site-footer {
  padding: 3rem 0 2rem;
  background: #1a1025;
  border-top: none;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer-brand .logo:hover {
  color: #d4b8f0;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  max-width: 22rem;
  margin: 0;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  padding: 0.25rem 0;
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ——— Pain / product / why-us marketing sections ——— */
.subsection-title {
  font-size: 1.2rem;
  margin: 2rem 0 0.75rem;
  color: var(--text);
}

.product-tagline {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--accent);
  color: var(--text-secondary);
}

.product-tagline strong {
  color: var(--accent);
}

.product-highlights {
  margin-top: 2rem;
}

.data-table td strong {
  color: var(--text);
}

.pain-table td:first-child {
  min-width: 10rem;
  white-space: nowrap;
}

.modules-table td:first-child {
  min-width: 11rem;
}

.compare-table th:not(:first-child),
.compare-table td:not(:first-child) {
  text-align: center;
  white-space: nowrap;
}

.compare-table td:first-child {
  font-weight: 500;
  color: var(--text);
  min-width: 12rem;
}

.mark {
  font-size: 0.85rem;
}

.three-apps-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

@media (min-width: 900px) {
  .three-apps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }
}

.app-role-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow-sm);
}

.app-role-card--featured {
  border-color: var(--accent-mid);
  box-shadow: var(--shadow-md);
  background: linear-gradient(180deg, #fff 0%, var(--accent-soft) 100%);
}

.app-role-head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.app-role-emoji {
  font-size: 1.75rem;
  line-height: 1;
}

.app-role-head h3 {
  margin-bottom: 0.2rem;
}

.app-role-sub {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.app-role-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.app-role-list li {
  margin-bottom: 0.45rem;
}

.app-role-list li::marker {
  color: var(--accent);
}

.download-app-section {
  padding-top: 0;
}

.download-app-card {
  display: grid;
  gap: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}

@media (min-width: 900px) {
  .download-app-card {
    grid-template-columns: 1.2fr 0.9fr;
    align-items: start;
    padding: 2rem 2.25rem;
  }
}

.download-app-copy h3 {
  margin-bottom: 0.35rem;
}

.download-app-meta {
  margin-bottom: 0.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.download-app-version {
  margin: 0 0 1rem;
  color: var(--text);
  font-size: 0.95rem;
}

.download-app-version strong {
  font-weight: 700;
}

.download-app-features {
  margin: 0 0 1.25rem;
  padding-left: 1.15rem;
  color: var(--text-secondary);
}

.download-app-features li {
  margin-bottom: 0.4rem;
}

.download-app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.download-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.download-app-install {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.35rem;
}

.download-app-install h4 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

.download-app-install ol {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.download-app-install li {
  margin-bottom: 0.55rem;
}

.download-app-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.testimonial {
  margin: 0 0 2rem;
  padding: 1.35rem 1.5rem;
  background: var(--bg-soft);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.testimonial p {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-secondary);
}

.testimonial footer {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  font-style: normal;
}

.diff-list {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 1rem;
}

.diff-list li {
  color: var(--muted);
  line-height: 1.65;
}

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

#why-us {
  padding: 4rem 0;
}

@media (max-width: 720px) {
  .pain-table thead,
  .modules-table thead,
  .compare-table thead {
    display: none;
  }

  .pain-table tr,
  .modules-table tr,
  .compare-table tr {
    display: block;
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
  }

  .pain-table tr:last-child,
  .modules-table tr:last-child,
  .compare-table tr:last-child {
    border-bottom: none;
  }

  .pain-table td,
  .modules-table td,
  .compare-table td {
    display: block;
    border: none;
    padding: 0.35rem 1rem;
    text-align: left !important;
    white-space: normal;
  }

  .pain-table td::before,
  .modules-table td::before,
  .compare-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--accent);
    margin-bottom: 0.15rem;
  }

  .compare-table td:first-child::before {
    content: "Feature";
  }
}

/* ——— Blogs ——— */
.nav-desktop a.nav-link-active,
.nav-mobile a.nav-link-active {
  color: var(--accent);
  font-weight: 600;
}

.blog-hero {
  padding: 3rem 0 2.5rem;
  background:
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(95, 37, 159, 0.1), transparent 55%),
    linear-gradient(180deg, var(--bg-tint) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.blog-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
}

.blog-hero-lead {
  max-width: 42rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0;
}

.blog-grid {
  display: grid;
  gap: 1.5rem;
  padding: 2.5rem 0 4rem;
}

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

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.35rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.blog-card:hover {
  border-color: rgba(95, 37, 159, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  text-decoration: none;
}

.blog-card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
  width: fit-content;
}

.blog-card h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 0.65rem;
  color: var(--text);
}

.blog-card p {
  flex: 1;
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.blog-card-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: auto;
}

.blog-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
}

.blog-article {
  padding: 2.5rem 0 4rem;
}

.blog-article-inner {
  max-width: 42rem;
  margin: 0 auto;
}

.blog-breadcrumb {
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
}

.blog-breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

.blog-breadcrumb a:hover {
  text-decoration: underline;
}

.blog-article-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.blog-article-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

.blog-article-meta {
  font-size: 0.88rem;
  color: var(--muted);
}

.blog-prose {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.blog-prose h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin: 2rem 0 0.75rem;
}

.blog-prose p {
  margin: 0 0 1rem;
}

.blog-prose ul,
.blog-prose ol {
  margin: 0 0 1.25rem;
  padding-left: 1.35rem;
}

.blog-prose li {
  margin-bottom: 0.45rem;
}

.blog-prose a {
  color: var(--accent);
}

.blog-article-footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* ——— FAQ ——— */
.faq-section .faq-list {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--surface, #fff);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.15rem 1.1rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  padding: 1rem 0;
  position: relative;
  padding-right: 1.75rem;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent);
}

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

.faq-item p {
  margin: 0 0 1.1rem;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

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