﻿:root {
  --bg-page: #fffafa;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.7);
  --bg-alt: rgba(15, 23, 42, 0.04);
  --stroke-soft: rgba(15, 23, 42, 0.08);
  --stroke-strong: rgba(15, 23, 42, 0.15);
  --shadow-soft: 0 15px 35px rgba(15, 23, 42, 0.12);
  --shadow-lift: 0 24px 60px rgba(15, 23, 42, 0.16);
  --shadow-header: 0 18px 38px rgba(15, 23, 42, 0.08);
  --accent: #ff4158;
  --accent-rgb: 255, 65, 88;
  --accent-soft: rgba(255, 65, 88, 0.12);
  --accent-dark: #e03649;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --white: #ffffff;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --transition: cubic-bezier(.4,0,.2,1);
}

* {
  box-sizing: border-box;
}

body,
html {
  min-height: 100%;
}

.page-body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.8), rgba(241, 245, 249, 0)),
              radial-gradient(circle at 80% 0%, rgba(255, 247, 237, 0.5), rgba(241, 245, 249, 0)),
              var(--bg-page);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.page-main {
  flex: 1 0 auto;
}

/* Section rhythm and separation */
.page-main > .section {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

/* Subtle alternating background to add definition between sections */
.page-main > .section:nth-of-type(even) {
  background: var(--bg-alt);
}

/* Hairline divider between consecutive sections */
.page-main > .section + .section {
  border-top: 1px solid var(--stroke-soft);
}

.shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform 0.2s var(--transition), box-shadow 0.2s var(--transition), border-color 0.2s var(--transition);
}

.btn-large {
  padding: 1rem 1.9rem;
  font-size: 1.05rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  box-shadow: 0 18px 32px rgba(var(--accent-rgb), 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(var(--accent-rgb), 0.34);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(15, 23, 42, 0.12);
  color: var(--text-primary);
}

.btn-ghost:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 23, 42, 0.2);
  background: rgba(255, 255, 255, 0.6);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: var(--shadow-header);
}

/* Reduce only header right padding so actions sit closer to edge */
.site-header .shell { padding-right: 0.5rem; }

.site-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
  letter-spacing: -0.015em;
  text-decoration: none;
}

.brand-mark {
  height: 26px;
  width: auto;
  filter: drop-shadow(0 10px 18px rgba(var(--accent-rgb), 0.35));
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.desktop-nav a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  padding: 0.25rem 0;
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.6rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.6), rgba(var(--accent-rgb), 0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s var(--transition);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-self: end; /* snap to far right of header grid */
  margin-left: auto; /* ensure right alignment in mixed layouts */
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(255, 255, 255, 0.8);
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  background: var(--text-primary);
  border-radius: 999px;
  margin: 0 auto;
}

.mobile-drawer {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 0.75rem;
  padding: 1.4rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: var(--shadow-soft);
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.mobile-links a {
  text-decoration: none;
  color: inherit;
}

.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.section {
  padding: 5.5rem 0;
}

.hero {
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(var(--accent-rgb), 0.12), rgba(255, 255, 255, 0));
  z-index: -1;
}

.hero-grid {
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 4.6vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 1.1rem 0 1.2rem;
}

.hero-lede {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 46ch;
  margin-bottom: 2rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  background: rgba(var(--accent-rgb), 0.08);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.4rem;
}

.hero-metrics {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.metric-card {
  padding: 1.3rem 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.metric-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.hero-panel {
  background: linear-gradient(165deg, rgba(255,255,255,0.96), rgba(255,255,255,0.9));
  color: var(--text-primary);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 35px 55px rgba(15, 23, 42, 0.36);
  overflow: hidden;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.panel-body {
  padding: 1.6rem 1.4rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.panel-stat .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-primary);
  font-weight: 900;
}

.panel-stat .value {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  margin-top: 0.35rem;
}

.panel-stat .value.accent { color: var(--accent); }

.panel-stat .hint {
  font-size: 0.8rem;
  color: var(--text-primary);
  font-weight: 400;
}

.panel-bars {
  display: grid;
  gap: 1rem;
}

.panel-bars .label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
}

.panel-bars .bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(15,23,42,0.08);
  overflow: hidden;
}

.panel-bars .bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  width: 0; /* start collapsed for animation */
  transition: width 900ms var(--transition);
}

.panel-bars .delta {
  font-size: 0.75rem;
  color: rgba(52, 211, 153, 0.85);
}

.panel-cta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: center;
}

.nano-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.6);
  margin-bottom: 0.35rem;
}

.match {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.match-bar {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.15);
  overflow: hidden;
}

.match-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #22d3ee, #818cf8);
}

.match-score {
  font-size: 0.85rem;
  font-weight: 600;
}

.trust-card {
  padding: 2.4rem 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.24);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.trust-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--text-muted);
}

.trust-logos {
  margin-top: 1.6rem;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(var(--accent-rgb), 0.35);
  background: rgba(var(--accent-rgb), 0.12);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 1.2rem 0 1rem;
  font-size: clamp(2rem, 3.8vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-head p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0 auto;
}

.value-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.value-card {
  padding: 1.9rem 1.6rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.1);
  transition: transform 0.25s var(--transition), box-shadow 0.25s var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(var(--accent-rgb), 0.16);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}

.value-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.55;
}

.blueprint-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.step-card {
  padding: 2.1rem 1.7rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
}

.step-index {
  font-size: 0.75rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.step-card h3 {
  margin: 1rem 0 0.6rem;
  font-size: 1.15rem;
}

.step-card p {
  color: var(--text-secondary);
  line-height: 1.55;
  font-size: 0.95rem;
}

.spotlight-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
}

.spotlight-card {
  padding: 2.6rem 2.2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.88));
  color: rgba(226, 232, 240, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 35px 55px rgba(15, 23, 42, 0.32);
}

.spotlight-card h3 {
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 1.4rem 0;
}

.spotlight-card p {
  color: rgba(226, 232, 240, 0.72);
  font-size: 1rem;
  line-height: 1.65;
}

.spotlight-meta {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.spotlight-meta img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(var(--accent-rgb), 0.45);
}

.spotlight-meta strong {
  display: block;
  color: #fff;
}

.spotlight-meta span {
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.6);
}

.spotlight-visual video {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 25px 45px rgba(15, 23, 42, 0.22);
  background: #0f172a;
}

.testimonial-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 1fr;
}

.testimonial-card {
  padding: 2rem 1.8rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 20px 35px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.testimonial-card .stars {
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: var(--accent);
}

.testimonial-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.testimonial-meta strong {
  display: block;
  font-weight: 700;
  color: var(--text-primary);
}

.testimonial-meta span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.billing-bar {
  margin: 0 auto 2.2rem;
  display: inline-flex;
  /* Stretch children so both buttons match the tallest one */
  align-items: stretch;
  gap: 0.4rem;
  padding: 0.4rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.12);
}

.billing-btn {
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.2s var(--transition);
  /* Fill the parent's height so both options are equal */
  display: flex;
  align-items: center;
  justify-content: center;
}

.billing-btn span {
  display: inline-flex;
  align-items: center;
  margin-left: 0.45rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(var(--accent-rgb), 0.7);
}

.billing-btn.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 18px 32px rgba(var(--accent-rgb), 0.28);
}

  grid-template-columns: 1fr;
}

/* Pricing card */
.tier-card {
  position: relative;
  padding: 1.9rem 1.6rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--stroke-strong);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.28s var(--transition), box-shadow 0.28s var(--transition), border-color 0.28s var(--transition);
}

.tier-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(var(--accent-rgb), 0.35);
}

.tier-card.featured {
  border-color: rgba(var(--accent-rgb), 0.45);
  box-shadow: 0 32px 60px rgba(var(--accent-rgb), 0.22);
}

.plan-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(var(--accent-rgb), 0.18);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.plan-headline {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--stroke-soft);
  margin-bottom: 0.25rem;
}

.tier-name {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.plan-subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-top: 0.15rem;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.price-amount {
  font-size: 2.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.price-original {
  display: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-original.visible {
  display: inline-flex;
}

.price-interval {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.plan-metrics {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.metric-chip {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(var(--accent-rgb), 0.12);
  border: 1px solid rgba(var(--accent-rgb), 0.24);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.chip-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(15, 23, 42, 0.55);
}

.chip-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.tier-card .btn {
  width: 100%;
  justify-content: center;
}

.pricing-disclaimer { margin-top: 1.8rem; text-align: center; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--text-muted); }

.faq-grid {
  display: grid;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
  overflow: hidden;
  transition: border-color 0.25s var(--transition), box-shadow 0.25s var(--transition);
}

.faq-item.open {
  border-color: rgba(var(--accent-rgb), 0.4);
  box-shadow: 0 24px 45px rgba(15, 23, 42, 0.14);
}

.faq-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  color: var(--text-primary);
}

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.14);
  color: var(--accent);
  font-weight: 700;
  transition: transform 0.3s var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.55;
  transition: max-height 0.3s var(--transition), padding-bottom 0.3s var(--transition);
}

.faq-item.open .faq-content {
  padding-bottom: 1.4rem;
}

.site-footer {
  padding: 4rem 0 3rem;
  background: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: start;
}

/* Tighter, balanced footer on small screens */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 1.25rem;
  }
  /* Brand/info spans full width on mobile */
  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

/* Clear 4-column layout on larger screens */
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: var(--text-primary);
}

.site-footer h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
  font-size: 0.9rem;
}

/* Make link and plain list items look consistent */
.site-footer ul li,
.site-footer a {
  font-weight: 500;
}

/* Make contact/address list items match link color for consistency */
.site-footer ul li { color: var(--text-secondary); }

.site-footer a {
  color: var(--text-secondary);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent);
}

.site-footer p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.footer-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  text-transform: none;
}

/* Inline, wrap-friendly business info row */
.footer-note .business-info {
  list-style: none;
  margin: 0.25rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1rem;
}

.footer-note .business-info li {
  white-space: nowrap;
}

.footer-note .business-info li:not(:last-child)::after {
  content: '•';
  margin-left: 1rem;
  opacity: 0.6;
}

@media (max-width: 1024px) { .desktop-nav { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; } .header-actions { display: flex; } .nav-toggle { display: none; } }
@media (max-width: 768px) {
  .section {
    padding: 4.5rem 0;
  }

  .hero-grid {
    gap: 3rem;
  }

  .hero-metrics {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .billing-bar {
    width: 100%;
    justify-content: space-between;
  }

  .billing-btn {
    flex: 1 1 0;
  }

  .plan-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .spotlight-grid {
    gap: 2rem;
  }
@media (max-width: 540px) {
  .plan-metrics {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.plan-points{list-style:none;margin:0;padding:0;display:grid;gap:.55rem;color:var(--text-secondary);font-size:.95rem}.plan-points li{display:flex;align-items:baseline;gap:.5rem}.plan-points li::before { content: "\2713"; color: var(--accent); font-weight:700; margin-right:.35rem; }




}

.tier-card .btn { margin-top: auto; }


.tier-card {
  position: relative;
  padding: 1.9rem 1.6rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--stroke-strong);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.28s var(--transition), box-shadow 0.28s var(--transition), border-color 0.28s var(--transition);
}



.plan-points{margin-top:.9rem;padding-top:.9rem;border-top:1px solid var(--stroke-soft)}
.tier-card .btn-primary{box-shadow:0 10px 18px rgba(var(--accent-rgb),.18)}
/* UGC Carousel styles (LOCKED): Verified stable. Do not modify without QA. */
.ugc-carousel { display:flex; flex-wrap: nowrap; gap:.9rem; overflow-x:auto; -webkit-overflow-scrolling: touch; scroll-snap-type:x mandatory; padding:.6rem .3rem; align-items: stretch;  scrollbar-width: none; -ms-overflow-style: none; cursor: grab;  -webkit-overflow-scrolling: touch; }

.ugc-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  align-items: center;
}

.ugc-video {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
  transition: transform 0.25s var(--transition);
}

.ugc-video:hover {
  transform: scale(1.03);
}

.ugc-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ugc-video.selected {
  transform: scale(1.1);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
  z-index: 10;
  position: relative;
}

.ugc-video.selected video {
  filter: brightness(1.05);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.15);
  border: none;
  cursor: pointer;
  transition: all 0.2s var(--transition);
}

.carousel-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

.carousel-dot:hover {
  background: var(--accent);
  transform: scale(1.1);
}






.ugc-item{flex:0 0 auto;width:170px;border:1px solid var(--stroke-strong);border-radius:var(--radius-md);background:#fff;box-shadow:0 10px 24px rgba(15,23,42,.12);transition:transform .25s var(--transition),box-shadow .25s var(--transition),width .25s var(--transition);scroll-snap-align:center}
.ugc-item.active{width:230px;transform:scale(1.02);box-shadow:0 20px 40px rgba(15,23,42,.16)}
.ugc-item video{display:block;width:100%;height:auto;aspect-ratio:9/16;object-fit:cover;border-radius:inherit}
.ugc-nav{display:flex;justify-content:space-between;gap:.5rem;margin-top:.6rem}.ugc-nav button{border:1px solid var(--stroke-strong);background:#fff;border-radius:12px;padding:.5rem .8rem;font-weight:600;color:var(--text-primary);box-shadow:0 6px 16px rgba(15,23,42,.12)}.ugc-nav button:active{transform:translateY(1px)}



@media (min-width: 640px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

/* Mobile header simplification */
@media (max-width: 768px) {
  .desktop-nav { display: none !important; }
  .header-actions .btn-ghost { display: none !important; }
  .site-nav { grid-template-columns: auto 1fr auto; }
}


/* Mobile spacing for pricing cards */
@media (max-width: 640px) { .pricing-grid { row-gap: 2.6rem; } }
.pricing-grid { display: grid; grid-template-columns: 1fr; row-gap: 2.2rem; column-gap: 1.2rem; align-items: stretch; }
@media (min-width: 640px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

/* UGC overlay arrows and play button */
.ugc-wrap { position: relative; }
.ugc-arrow { position: absolute; top: 45%; transform: translateY(-50%); z-index: 5; border: none; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; width: 40px; height: 40px; border-radius: 50%; box-shadow: 0 10px 24px rgba(var(--accent-rgb), 0.35); cursor: pointer; display: grid; place-items: center; font-size: 20px; }
.ugc-arrow:hover { transform: translateY(-50%) scale(1.05); box-shadow: 0 14px 32px rgba(var(--accent-rgb), 0.45); }
.ugc-arrow.left { left: -6px; }
.ugc-arrow.right { right: -6px; }
@media (max-width: 640px){ .ugc-arrow.left { left: 4px; } .ugc-arrow.right { right: 4px; } }

.ugc-item { position: relative; }
.ugc-thumb { position: relative; border-radius: var(--radius-md); overflow: hidden; }
.ugc-play { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%); width: 54px; height: 54px; border-radius: 999px; border: 2px solid rgba(255,255,255,0.85); background: rgba(0,0,0,0.35); color: #fff; display: grid; place-items: center; font-size: 22px; box-shadow: 0 8px 20px rgba(15,23,42,.25); cursor: pointer; transition: opacity .2s; }
.ugc-item.playing .ugc-play { opacity: 0; pointer-events: none; }
.ugc-item video { pointer-events: none; }
.ugc-item.active video { pointer-events: auto; }
/* UGC play overlay and dimming */
.ugc-thumb::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.35); transition: opacity .25s; pointer-events: none; }
.ugc-item.playing .ugc-thumb::after { opacity: 0; }
.ugc-item video { filter: brightness(.65); transition: filter .25s; }
.ugc-item.playing video { filter: brightness(1); }

/* Clean triangle play button */
.ugc-play { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%); width: 56px; height: 56px; background: transparent; border: none; border-radius: 0; display: grid; place-items: center; cursor: pointer; box-shadow: none; z-index: 5; }
.ugc-play::before { content: ""; width: 0; height: 0; border-style: solid; border-width: 12px 0 12px 18px; border-color: transparent transparent transparent #ffffff; margin-left: 2px; filter: drop-shadow(0 2px 8px rgba(0,0,0,.25)); }
.ugc-item.playing .ugc-play { opacity: 0; pointer-events: none; transition: opacity .2s; }/* UGC visual cleanup: no card background/border */
.ugc-item { flex: 0 0 auto; width: 170px; scroll-snap-align: center; background: transparent !important; border: none !important; box-shadow: none !important; }
.ugc-item.active { width: 230px; }
.ugc-thumb { position: relative; border-radius: var(--radius-md); overflow: hidden; box-shadow: none; }
.ugc-item.active .ugc-thumb { box-shadow: 0 20px 40px rgba(15,23,42,.16); }
/* Hide any text glyph inside the play button; triangle is drawn via ::before */
.ugc-play { font-size: 0; }

.ugc-carousel::-webkit-scrollbar{ display: none; }

/* UGC profile header overlay */
.ugc-profile {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: .3rem .55rem;
  align-items: start;
  /* extra bottom padding so the gradient can fade nicely */
  padding: .6rem .75rem 1.2rem;
  /* Dark top-to-transparent gradient overlay */
  background: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0.6) 40%, rgba(0,0,0,0) 100%);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  backdrop-filter: none;
  box-shadow: none;
  transition: opacity .2s var(--transition), transform .2s var(--transition);
}
.ugc-profile__avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 2px 6px rgba(0,0,0,.35);
}
.ugc-profile__meta { display: grid; gap: 2px; }
.ugc-profile__name { font-size: .85rem; font-weight: 700; color: #fff; line-height: 1.1; text-shadow: 0 1px 2px rgba(0,0,0,.45); }
.ugc-profile__bio { font-size: .72rem; color: rgba(255,255,255,.85); line-height: 1.2; text-shadow: 0 1px 2px rgba(0,0,0,.45); }
.ugc-profile__username { font-size: .72rem; color: rgba(255,255,255,.75); text-shadow: 0 1px 2px rgba(0,0,0,.45); }
.ugc-profile__followers { font-size: .72rem; color: rgba(255,255,255,.8); font-weight: 600; text-shadow: 0 1px 2px rgba(0,0,0,.45); }

/* Hide the overlay when item is selected (active) or playing */
.ugc-item.playing .ugc-profile {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}

@media (max-width: 640px) {
  .ugc-profile { grid-template-columns: 32px 1fr; padding: .5rem .6rem 1rem; }
  .ugc-profile__avatar { width: 32px; height: 32px; }
  .ugc-profile__name { font-size: .8rem; }
}

/* Mobile: show only two hero metrics */
@media (max-width: 640px) {
  .hero-metrics .metric-card:nth-child(3) { display: none; }
}

/* --- Checkout / Forms --- */
.form-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.2fr 0.9fr;
  align-items: start;
}

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

.form-card, .summary-card {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
}

.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.field input, .field select {
  width: 100%;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(255, 255, 255, 0.9);
  padding: 0 0.9rem;
  font-size: 1rem;
  transition: box-shadow .2s var(--transition), border-color .2s var(--transition);
}

.field input:focus, .field select:focus {
  outline: none;
  border-color: rgba(var(--accent-rgb), .55);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), .12);
}

.field.invalid input, .field.invalid select {
  border-color: rgba(var(--accent-rgb), .7);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), .16);
}

.field-error {
  color: var(--accent);
  font-size: 0.85rem;
  margin-top: 0.35rem;
  min-height: 1.1em;
}

.input-wrap { position: relative; }
.input-wrap .prefix {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  color: var(--text-muted);
  font-weight: 600;
}
.input-wrap input { padding-left: 2rem; }

/* space for avatar suffix in IG field */
.input-wrap .suffix-avatar {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.12);
  background: #f3f4f6;
}
.input-wrap input#ig { padding-right: 44px; }

.row.two { display: grid; gap: 0.9rem; grid-template-columns: 1fr 1fr; }

.addons { margin: 1.2rem 0 1.2rem; }
.addons-head {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
}
.addon-list {
  display: grid;
  gap: 0.6rem;
}
.addon-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: border-color .2s var(--transition), box-shadow .2s var(--transition);
}
.addon-item:hover {
  border-color: rgba(var(--accent-rgb), .45);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}
.addon-item input { display: none; }
.addon-check {
  width: 20px; height: 20px; border-radius: 6px;
  border: 2px solid rgba(148, 163, 184, 0.6);
  display: inline-block;
}
.addon-item input:checked + .addon-check {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(var(--accent-rgb), .25);
  position: relative;
}
.addon-item input:checked + .addon-check::after {
  content: '\2713';
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -55%);
  color: #fff; font-size: 0.8rem; font-weight: 800;
}
.addon-body { display: flex; flex-direction: column; gap: 2px; }
.addon-title { font-weight: 600; }
.addon-note { color: var(--text-secondary); font-size: 0.9rem; }
.addon-price { font-weight: 700; }

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

.summary-head { border-bottom: 1px solid var(--stroke-soft); padding-bottom: .8rem; margin-bottom: .6rem; }
.summary-sub { color: var(--text-secondary); font-size: .9rem; }
.summary-lines { list-style:none; padding:0; margin:.6rem 0 1rem; display:grid; gap:.45rem; }
.summary-lines li { display:flex; justify-content: space-between; align-items:center; color: var(--text-primary); }
.summary-lines li.muted { color: var(--text-secondary); }
.summary-total { display:flex; justify-content: flex-end; align-items: baseline; gap:.4rem; font-weight:800; font-size:1.4rem; }
.summary-total .per { color: var(--text-secondary); font-weight:600; font-size:.95rem; }
.summary-foot { color: var(--text-secondary); font-size:.9rem; margin: .4rem 0 0; }
.addon-line.hidden { display: none; }
