/* Storegram — landing styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Smooth anchor scrolling (no JS). Targets clear the sticky header via scroll-margin. */
html {
  scroll-behavior: smooth;
}

section[id],
#contact {
  scroll-margin-top: 88px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: 'Inter', sans-serif;
  /* Ambient depth: soft brand glows layered over the base navy, fixed so they
     drift as you scroll instead of tiling. Kills the "flat single-colour" feel. */
  background:
    radial-gradient(1100px 720px at 88% -8%, rgba(37,99,235,0.20), transparent 60%),
    radial-gradient(820px 560px at -6% 12%, rgba(14,165,233,0.12), transparent 55%),
    radial-gradient(900px 700px at 50% 108%, rgba(56,189,248,0.10), transparent 60%),
    #0f172a;
  background-attachment: fixed;
  color: #f8fafc;
  line-height: 1.6;
  overflow-x: hidden; /* guard against accidental horizontal scroll on small screens */
}

img { max-width: 100%; }

a { color: inherit; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== Header / nav ===== */
header {
  padding:10px 0;
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(15, 23, 42, 0.85);
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap; /* actions drop to a new line instead of overflowing on narrow screens */
}

.logo {
  max-width:80px;
  display: inline-flex;
}

.logo img {
  width:100%;
}

/* CSS-only mobile menu: hidden on desktop, shown as a burger ≤768px */
.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  margin-left: auto;
  cursor: pointer;
}

.nav-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #e2e8f0;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  /* margin-left: auto; */
}

.nav-links a {
  text-decoration: none;
  color: #cbd5e1;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: white;
}

/* Between tablet and desktop, tighten the nav so all 5 links + langs + CTA stay on one row */
@media (max-width: 1024px) and (min-width: 769px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 0.9rem; }
}

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

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 3px;
}

.lang-switcher a {
  text-decoration: none;
  color: #94a3b8;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.lang-switcher a:hover { color: #fff; }

.lang-switcher a.active {
  color: #fff;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
}

/* Header CTA shows the full label by default; a short "Demo" swaps in on small phones */
.nav-cta .cta-short { display: none; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: 1rem;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.9rem;
  border-radius: 12px;
}

.btn-primary {
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  color: white;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
}

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

.btn-ghost {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: #e2e8f0;
}

.btn-ghost:hover {
  border-color: rgba(56, 189, 248, 0.5);
}

/* ===== Hero ===== */
.hero {
  padding:40px 0 56px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  margin-bottom: 24px;
  font-weight: 800;
}

.gradient-text {
  color: #38bdf8; /* fallback if background-clip:text is unsupported */
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  color: #cbd5e1;
  font-size: 1.15rem;
  max-width: 560px;
}


.stat-card p {
  margin-bottom: 0px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin:36px 0px 0px 0px;
}

.stats {
  display: flex;
  gap: 24px;
  margin-top:36px;
  flex-wrap: wrap;
}

.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 20px;
  border-radius: 18px;
  min-width: 150px;
}

.stat-card h3 {
  font-size: 1.8rem;
  margin-bottom: 6px;
  color: #38bdf8;
}

/* ===== Phone mockup ===== */
.phone-mockup {
  background: linear-gradient(180deg, #1e293b, #0f172a);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 38px;
  padding: 18px;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}

.phone-screen {
  background: #16202a;
  border-radius: 28px;
  overflow: hidden;
  color: #0f172a;
}

.phone-screen img {
  display: block;
  width: 100%;
  height: auto;
}

.tg-header {
  background: #229ED9;
  color: white;
  padding: 18px;
  font-weight: 700;
  text-align: center;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid #e2e8f0;
}

.menu-item button {
  border: none;
  background: #2563eb;
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}
/* ===== Phone fan carousel (auto-rotate, no JS) ===== */
.phone-fan {
  position: relative;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-fan-item {
  position: absolute;
  max-width: 320px;
  transform-origin: bottom center;
  animation: cardCycle 9s infinite ease-in-out;
}

.phone-fan-item:nth-child(1) { animation-delay: 0s; }
.phone-fan-item:nth-child(2) { animation-delay: -3s; }
.phone-fan-item:nth-child(3) { animation-delay: -6s; }

.phone-fan:hover .phone-fan-item {
  animation-play-state: paused;
}

@keyframes cardCycle {
  0%, 22%  { transform: rotate(0deg) translateX(0) scale(1);        z-index: 3; opacity: 1; }
  33%, 55% { transform: rotate(10deg) translateX(60px) scale(0.92); z-index: 2; opacity: 0.85; }
  66%, 88% { transform: rotate(-10deg) translateX(-60px) scale(0.92); z-index: 1; opacity: 0.85; }
  100%     { transform: rotate(0deg) translateX(0) scale(1);        z-index: 3; opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .phone-fan-item { animation: none; }
  .phone-fan-item:nth-child(1) { transform: rotate(-10deg) translateX(-40px); z-index: 1; }
  .phone-fan-item:nth-child(2) { transform: rotate(10deg) translateX(40px);  z-index: 2; }
  .phone-fan-item:nth-child(3) { transform: rotate(0deg)  translateX(0);     z-index: 3; }
}

@media (max-width: 768px) {
  .phone-fan { height: 240px; }

  /* ~3x smaller than desktop so the fan never spills past the screen edges */
  .phone-fan-item { max-width: 110px; }

  /* Scale the phone "frame" down to match the smaller cards */
  .phone-mockup {
    padding: 6px;
    border-radius: 18px;
  }

  .phone-screen {
    border-radius: 14px;
  }

  /* Smaller horizontal shift so rotated cards stay inside the viewport */
  .phone-fan-item { animation-name: cardCycleMobile; }
}

@keyframes cardCycleMobile {
  0%, 22%  { transform: rotate(0deg) translateX(0) scale(1);         z-index: 3; opacity: 1; }
  33%, 55% { transform: rotate(10deg) translateX(26px) scale(0.92);  z-index: 2; opacity: 0.85; }
  66%, 88% { transform: rotate(-10deg) translateX(-26px) scale(0.92); z-index: 1; opacity: 0.85; }
  100%     { transform: rotate(0deg) translateX(0) scale(1);         z-index: 3; opacity: 1; }
}
/* ===== Sections ===== */
section {
  padding: 56px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 36px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.section-title p {
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== Features ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 24px;
}

.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 32px;
  transition: 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.5);
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.feature-card p {
  color: #cbd5e1;
}

/* ===== Comparison table ===== */
.comparison {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255,255,255,0.03);
  border-radius: 20px;
  overflow: hidden;
}

th, td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

th {
  background: rgba(255,255,255,0.05);
}

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 30px;
}

.pricing-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 40px;
  position: relative;
}

.pricing-card.popular {
  border: 1px solid #38bdf8;
  transform: scale(1.03);
}

.badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: #38bdf8;
  color: #0f172a;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  margin: 20px 0;
}

.pricing-card ul {
  list-style: none;
  margin: 30px 0;
}

.pricing-card li {
  margin-bottom: 14px;
  color: #cbd5e1;
}

/* ===== Pricing: single plan ===== */
.pricing-single {
  max-width: 460px;
  margin: 0 auto;
}

.pricing-foot {
  text-align: center;
  color: #94a3b8;
  font-size: 0.95rem;
  margin-top: 26px;
}

.pricing-foot a {
  color: #38bdf8;
  font-weight: 600;
}

/* ===== Lead form ===== */
.lead-form {
  max-width: 560px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
  text-align: left;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #cbd5e1;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: #f8fafc;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #64748b;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: #38bdf8;
}

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

.lead-form .btn {
  width: 100%;
  text-align: center;
}

.form-note {
  font-size: 0.85rem;
  color: #64748b;
  text-align: center;
}

/* ===== CTA ===== */
.cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(14,165,233,0.15), rgba(37,99,235,0.15));
  border: 1px solid rgba(56,189,248,0.2);
  border-radius: 32px;
  padding: 80px 40px;
}

.cta h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.cta p {
  max-width: 700px;
  margin: 0 auto 36px;
  color: #cbd5e1;
  font-size: 1.1rem;
}

/* ===== Footer ===== */
footer {
  padding: 50px 0;
  text-align: center;
  color: #94a3b8;
}

/* ===== Section eyebrow (small label above titles) ===== */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  color: #38bdf8;
  margin-bottom: 14px;
}

.eyebrow-accent {
  color: #38bdf8;
}

/* ===== Positioning / trust bands ===== */
.band-section {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.band-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.band-pills,
.trust-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.trust-pills {
  margin-top: 40px;
}

.pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #e2e8f0;
  white-space: nowrap;
}

/* ===== Solution statement ===== */
.solution-statement {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.solution-lead {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.solution-sub {
  color: #cbd5e1;
  font-size: 1.1rem;
  margin-bottom: 36px;
}

.check-list {
  list-style: none;
  display: inline-grid;
  gap: 14px;
  text-align: left;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #e2e8f0;
  font-weight: 500;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== How it works (steps) ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 24px;
}

.step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 36px 32px;
}

.step-num {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 10px 24px rgba(37,99,235,0.35);
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.step p {
  color: #cbd5e1;
}

/* ===== Savings calculator ===== */
.calc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 30px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 40px;
  align-items: center;
}

.calc-controls label {
  display: block;
  color: #cbd5e1;
  font-weight: 600;
  margin-bottom: 10px;
}

.calc-rev-value {
  font-size: 2.6rem;
  font-weight: 800;
  color: #38bdf8;
  margin-bottom: 18px;
}

.calc-controls input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  outline: none;
}

.calc-controls input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  cursor: pointer;
  border: 3px solid #0f172a;
  box-shadow: 0 4px 12px rgba(37,99,235,0.5);
}

.calc-controls input[type="range"]::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  cursor: pointer;
  border: 3px solid #0f172a;
}

.calc-scale {
  display: flex;
  justify-content: space-between;
  color: #64748b;
  font-size: 0.85rem;
  margin-top: 10px;
}

.calc-results {
  display: grid;
  gap: 12px;
}

.calc-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: #cbd5e1;
}

.calc-result strong {
  font-size: 1.3rem;
  color: #f8fafc;
  white-space: nowrap;
}

.calc-highlight {
  background: linear-gradient(135deg, rgba(14,165,233,0.18), rgba(37,99,235,0.18));
  border-color: rgba(56,189,248,0.4);
}

.calc-highlight span { color: #e2e8f0; font-weight: 600; }
.calc-highlight strong { color: #38bdf8; font-size: 1.6rem; }

.calc-note {
  color: #94a3b8;
  font-size: 0.95rem;
  padding: 4px 4px 0;
}

.calc-note strong { color: #e2e8f0; }

.calc-disclaimer {
  text-align: center;
  color: #64748b;
  font-size: 0.82rem;
  margin-top: 20px;
}

/* ===== Pricing per-period suffix ===== */
.price-per {
  font-size: 1.1rem;
  font-weight: 600;
  color: #94a3b8;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 4px 24px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

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

.faq-item summary::after {
  content: "+";
  color: #38bdf8;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  color: #cbd5e1;
  padding: 0 0 22px;
  margin-top: -4px;
}

/* Smooth open/close (no JS) — animates the auto height of the details content.
   Falls back to instant open on browsers without ::details-content support. */
:root {
  interpolate-size: allow-keywords;
}

.faq-item::details-content {
  block-size: 0;
  overflow: clip;
  opacity: 0;
  transition:
    block-size 0.28s ease,
    opacity 0.28s ease,
    content-visibility 0.28s allow-discrete;
}

.faq-item[open]::details-content {
  block-size: auto;
  opacity: 1;
}

/* ===== CTA alt link ===== */
.cta-alt {
  margin-top: 28px;
}

.cta-alt a {
  color: #38bdf8;
  font-weight: 600;
}

/* ===== Footer ===== */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 18px;
}

.footer-links a {
  text-decoration: none;
  color: #cbd5e1;
  transition: 0.2s ease;
}

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

/* ============================================================
   PREMIUM VISUAL PASS
   Depth, icon tiles, glow accents, section variety.
   ============================================================ */

/* --- Duotone SVG icon system (brand blue + sky, coloured from CSS) --- */
.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.duo-bg { fill: #2563eb; }   /* darker brand blue — the icon "body" */
.duo-fg { fill: #38bdf8; }   /* bright sky — the accent detail */

.ico {
  width: 30px;
  height: 30px;
  display: block;
}

.pill-ico {
  width: 16px;
  height: 16px;
  margin-right: 7px;
  vertical-align: -3px;
}

/* --- Card icon tiles (hold the duotone SVG) --- */
.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 22px;
  background: rgba(56,189,248,0.10);
  border: 1px solid rgba(56,189,248,0.20);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform 0.25s ease;
}

.feature-card:hover .card-icon {
  transform: translateY(-2px) scale(1.05);
}

/* --- Richer cards: gradient hairline, depth, glow on hover --- */
.feature-card {
  position: relative;
  background: linear-gradient(180deg, rgba(30,41,59,0.55), rgba(15,23,42,0.35));
  backdrop-filter: blur(6px);
  overflow: hidden;
}

/* top sheen line */
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56,189,248,0.5), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.feature-card:hover {
  box-shadow: 0 24px 60px rgba(2,6,23,0.55);
}

.feature-card:hover::before { opacity: 1; }

.feature-card h3 {
  letter-spacing: -0.01em;
}

/* --- Section headings: gradient accent under h2 --- */
.section-title h2 {
  letter-spacing: -0.02em;
}

.section-title .eyebrow {
  margin-bottom: 16px;
  color: #38bdf8;   /* beat the more-specific `.section-title p` rule */
}

/* --- Positioning band: subtle inner glow --- */
.band-section {
  position: relative;
  background: linear-gradient(180deg, rgba(56,189,248,0.04), transparent 70%);
}

.pill {
  transition: 0.2s ease;
}

.pill:hover {
  border-color: rgba(56,189,248,0.4);
  color: #fff;
}

/* --- Solution: glowing glass panel --- */
.solution-statement {
  position: relative;
  background: linear-gradient(180deg, rgba(30,41,59,0.6), rgba(15,23,42,0.35));
  border: 1px solid rgba(56,189,248,0.18);
  border-radius: 32px;
  padding: 60px 48px;
  box-shadow: 0 40px 90px rgba(2,6,23,0.5);
  overflow: hidden;
}

/* radial glow bleeding from the top of the panel */
.solution-statement::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 620px;
  height: 620px;
  max-width: 120%;
  background: radial-gradient(circle, rgba(37,99,235,0.28), transparent 62%);
  pointer-events: none;
}

.solution-statement > * { position: relative; }

/* --- How it works: connect the steps with a line, circular numbers --- */
.steps-grid {
  position: relative;
}

.step {
  position: relative;
  background: linear-gradient(180deg, rgba(30,41,59,0.55), rgba(15,23,42,0.35));
}

.step-num {
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(37,99,235,0.45), 0 0 0 6px rgba(56,189,248,0.08);
}

/* connecting dotted rail behind the numbers (desktop only) */
@media (min-width: 861px) {
  .steps-grid::before {
    content: "";
    position: absolute;
    top: 60px;
    left: 12%;
    right: 12%;
    height: 2px;
    background-image: linear-gradient(90deg, rgba(56,189,248,0.5) 40%, transparent 0);
    background-size: 14px 2px;
    background-repeat: repeat-x;
    z-index: 0;
  }
  .step { z-index: 1; }
}

/* --- Comparison: spotlight the Storegram column --- */
table { position: relative; }

.comparison td:nth-child(2),
.comparison th:nth-child(2) {
  background: rgba(56,189,248,0.07);
  box-shadow: inset 1px 0 0 rgba(56,189,248,0.18), inset -1px 0 0 rgba(56,189,248,0.18);
}

.comparison thead th:nth-child(2) {
  color: #38bdf8;
  background: rgba(56,189,248,0.14);
}

.comparison thead th {
  font-size: 1.05rem;
  font-weight: 700;
}

.comparison tbody tr:hover td {
  background: rgba(255,255,255,0.03);
}

.comparison tbody tr:hover td:nth-child(2) {
  background: rgba(56,189,248,0.11);
}

/* tick / cross marks */
.tick {
  width: 20px;
  height: 20px;
  vertical-align: -5px;
  margin-right: 6px;
}

.tick-yes { color: #38bdf8; }   /* on-brand "yes" */
.tick-no  { color: #f87171; }   /* muted red "no" */

/* --- Calculator: lift with a glow --- */
.calc {
  position: relative;
  box-shadow: 0 40px 90px rgba(2,6,23,0.5);
}

.calc::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(56,189,248,0.35), transparent 55%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

/* --- Pricing: lift the popular card with a glow --- */
.pricing-card {
  background: linear-gradient(180deg, rgba(30,41,59,0.5), rgba(15,23,42,0.3));
  transition: 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(2,6,23,0.5);
}

.pricing-card.popular {
  background: linear-gradient(180deg, rgba(37,99,235,0.16), rgba(15,23,42,0.35));
  box-shadow: 0 30px 70px rgba(37,99,235,0.28);
}

.pricing-card.popular:hover {
  transform: scale(1.03) translateY(-4px);
}

/* --- FAQ: hover accent --- */
.faq-item {
  transition: border-color 0.2s ease, background 0.2s ease;
}

.faq-item:hover,
.faq-item[open] {
  border-color: rgba(56,189,248,0.3);
  background: rgba(255,255,255,0.05);
}

/* --- CTA: brighter glow --- */
.cta {
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(2,6,23,0.5);
}

.cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  max-width: 130%;
  background: radial-gradient(circle, rgba(37,99,235,0.25), transparent 60%);
  pointer-events: none;
}

.cta > * { position: relative; }

/* --- Hero: glow pooled behind the phone fan --- */
.phone-fan::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  max-width: 100%;
  background: radial-gradient(circle, rgba(37,99,235,0.35), transparent 62%);
  z-index: -1;
  filter: blur(10px);
}

/* --- Reveal on scroll (only when JS adds .reveal; no-JS stays visible) --- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {

  /* Show the burger; header collapses to: logo | burger */
  .nav-burger { display: flex; }

  .logo {
    font-size: 1.2rem;
  }

  /* Section links + actions live inside the collapsible panel, hidden until toggled */
  .nav-links,
  .nav-actions {
    display: none;
    flex-basis: 100%;
    order: 5;
  }

  #nav-toggle:checked ~ .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 12px 0 4px;
    margin-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .nav-links a { padding: 12px 6px; }

  #nav-toggle:checked ~ .nav-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    padding: 6px 0 8px;
  }

  /* burger → X when open */
  #nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  #nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  #nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ===== Pricing: horizontal swipe slider (CSS scroll-snap, no JS) ===== */
  .pricing-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    /* top/bottom room so the "Popular" badge and card shadow aren't clipped */
    padding: 18px 0;
    scrollbar-width: none;           /* Firefox: hide scrollbar */
  }

  .pricing-grid::-webkit-scrollbar {
    display: none;                   /* Chrome / Safari: hide scrollbar */
  }

  .pricing-card {
    flex: 0 0 72%;                   /* each card ~72% wide → neighbours peek at the edges */
    scroll-snap-align: center;
    padding: 28px 24px;              /* tighter than the desktop 40px */
  }

  .pricing-card .price {
    font-size: 2.4rem;
    margin: 14px 0;
  }

  .pricing-card ul {
    margin: 16px 0;
  }

  .pricing-card li {
    margin-bottom: 7px;
    line-height: 1.3;
    font-size: 0.9rem;       /* ~10% smaller text */
  }

  .pricing-card h3 {
    margin-bottom: 4px;
  }

  .pricing-card > p {
    line-height: 1.3;
    font-size: 0.9rem;       /* ~10% smaller text */
  }

  /* scaling would break the fixed slide width; keep the highlight via border only */
  .pricing-card.popular {
    transform: none;
  }

  .hero {
    padding-top:0px;
  }

  /* On phones the screenshots go above the main heading */
  .hero-grid {
    gap:0px;
  }
  
  .hero h1 {
	  text-align:center;
	  margin-bottom:5px;
	  font-size: 2.25rem; /* ~10% smaller than the clamp() floor of 2.5rem on phones */
  }

  .phone-fan {
    order: -1;
  }

  /* Keep both hero buttons side by side on one line */
  .hero-buttons {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: center;
  }

  .hero-buttons .btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 12px 10px;
    font-size: 0.85rem;
    text-align: center;
    /* center the label vertically so the 1-line button matches the 2-line one */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero p {
    font-size:0.9rem;
	text-align:center;
	margin-top:5px;
  }

  /* Stats stay on one row but share width evenly without overflowing */
  .stats {
    flex-wrap: nowrap;
    gap: 10px;
	margin-top:10px;
  }

  .stat-card {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    padding: 16px 10px;
    text-align: center;
  }

  .stat-card h3 {
    font-size: 1.4rem;
  }

  .stat-card p {
    font-size: 0.8rem;
  }

  /* Only stretch in-content buttons, not the header CTA or hero pair */
  .pricing-card .btn,
  .cta .btn,
  .lead-form .btn {
    width: 100%;
    text-align: center;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .cta {
    padding: 56px 24px;
  }

  .cta h2 {
    font-size: 2rem;
  }

  section {
    padding: 44px 0;
  }

  th, td {
    padding: 14px 12px;
  }

  .band-section { padding: 44px 0; }

  .band-title { font-size: 1.1rem; }

  .calc { padding: 24px; }

  .calc-rev-value { font-size: 2rem; }

  .step { padding: 28px 24px; }

  .faq-item summary { font-size: 1rem; }
}

/* ===== Small phones ===== */
@media (max-width: 480px) {

  /* Logo + burger on the first row; the menu panel wraps below when opened */
  nav {
    flex-wrap: wrap;
    gap: 8px;
  }

  .logo {
    max-width: 60px;
    flex-shrink: 0;
  }

  .nav-actions {
    flex-wrap: nowrap;
    gap: 8px;
  }

  .lang-switcher {
    gap: 0;
    padding: 2px;
  }

  .lang-switcher a {
    padding: 4px 7px;
    font-size: 0.72rem;
  }

  .nav-actions .btn-sm {
    padding: 8px 12px;
    font-size: 0.8rem;
    flex-shrink: 0;
  }

  /* Swap the long header CTA for a short label so it never crowds the logo + langs */
  .nav-cta .cta-full { display: none; }
  .nav-cta .cta-short { display: inline; }

  .hero {
    padding-bottom: 60px;
  }

  .stats {
    gap: 8px;
  }

  .stat-card {
    padding: 14px 6px;
  }

  .stat-card h3 {
    font-size: 1.2rem;
  }

  .feature-card,
  .pricing-card {
    padding: 24px;
  }

  .section-title {
    margin-bottom: 28px;
  }

  section {
    padding: 38px 0;
  }
}