/* ============================================================
   ConvertaQ – Premium Glossy Light Theme
   Brand blue: #1e9ee3 (from logo)
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

:root {
  /* Core palette */
  --bg: #f0f8ff;
  --bg-alt: #e8f5fd;
  --surface: rgba(255, 255, 255, 0.75);
  --surface-solid: #ffffff;
  --surface-alt: rgba(255, 255, 255, 0.55);

  /* Accents — logo cerulean blue */
  --accent: #1e9ee3;
  --accent-2: #0d7fc4;
  --accent-3: #7dcef5;
  --accent-soft: rgba(30, 158, 227, 0.12);
  --accent-strong: #0d7fc4;
  --accent-orange: #f97316;
  --accent-orange-strong: #ea580c;
  --emerald: #10b981;

  /* Text */
  --text: #0f172a;
  --text-secondary: #1e293b;
  --muted: #64748b;
  --muted-light: #94a3b8;

  /* Borders */
  --border: rgba(148, 163, 184, 0.25);
  --border-glass: rgba(255, 255, 255, 0.6);
  --border-accent: rgba(30, 158, 227, 0.35);

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 4px 16px rgba(30, 158, 227, 0.08), 0 1px 4px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 32px rgba(30, 158, 227, 0.12), 0 2px 8px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 60px rgba(30, 158, 227, 0.18), 0 4px 16px rgba(15, 23, 42, 0.1);
  --shadow-xl: 0 32px 80px rgba(30, 158, 227, 0.22), 0 8px 24px rgba(15, 23, 42, 0.12);
  --glow-accent: 0 0 40px rgba(30, 158, 227, 0.28);
  --glow-orange: 0 0 40px rgba(249, 115, 22, 0.3);

  /* Radii */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-pill: 999px;

  /* Glass blur */
  --blur: blur(20px) saturate(1.8);
  --blur-sm: blur(12px) saturate(1.5);
}

/* ── Reset ─────────────────────────────────────────────────── */

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

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

/* ── Body & Background ─────────────────────────────────────── */

body {
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 60% at 10% -10%, rgba(125, 206, 245, 0.4)  0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 90% 15%,  rgba(147, 218, 250, 0.3)  0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(30,  158, 227, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%,  rgba(167, 243, 208, 0.18) 0%, transparent 55%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
  color: var(--accent-strong);
  text-decoration: underline;
}

/* ── Layout Helpers ────────────────────────────────────────── */

.container {
  width: min(1160px, 100% - 2.5rem);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section.bg-alt {
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(125, 206, 245, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 60%, rgba(147, 218, 250, 0.18) 0%, transparent 55%),
    rgba(232, 245, 253, 0.7);
}

.grid {
  display: grid;
  gap: 1.75rem;
}

/* ── Section Headers ───────────────────────────────────────── */

.section-header {
  max-width: 760px;
}

.section-header h1,
.section-header h2 {
  margin: 0 0 0.85rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
  background: linear-gradient(135deg, var(--text) 0%, #334155 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header h2 {
  font-size: clamp(1.9rem, 1.4rem + 1.2vw, 2.6rem);
}

.section-header p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

/* ── Glass Card ────────────────────────────────────────────── */

.card {
  background: var(--surface);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.75rem;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: transform 0.22s cubic-bezier(.34,1.56,.64,1), box-shadow 0.22s ease-out;
}

/* Glossy top-sheen */
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.08) 45%,
    transparent 100%
  );
  pointer-events: none;
  border-radius: inherit;
}

/* Hover color wash */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(30, 158, 227, 0.1),
    transparent 55%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease-out;
  border-radius: inherit;
}

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

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

.card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Site Header ───────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(32px) saturate(2.2) brightness(0.7);
  -webkit-backdrop-filter: blur(32px) saturate(2.2) brightness(0.7);
  background: rgba(6, 20, 40, 0.55);
  border-bottom: 1px solid rgba(30, 158, 227, 0.2);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 40px rgba(6, 20, 40, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -1px 0 rgba(30, 158, 227, 0.18);
}

/* Glossy top-sheen on header */
.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.02) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1.5rem;
}

/* ── Logo ──────────────────────────────────────────────────── */

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ── Navigation ────────────────────────────────────────────── */

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.92rem;
}

.nav a {
  color: rgba(203, 213, 225, 0.85);
  text-decoration: none;
  padding: 0.38rem 0.75rem;
  border-radius: var(--radius-pill);
  font-weight: 500;
  transition: color 0.15s, background 0.15s;
}

.nav a:hover {
  color: #ffffff;
  background: rgba(30, 158, 227, 0.22);
  text-decoration: none;
}

.nav-cta {
  margin-left: 0.5rem;
  padding-inline: 1.15rem !important;
  padding-block: 0.42rem !important;
  font-size: 0.88rem !important;
}

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

/* ── Buttons ───────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.14s cubic-bezier(.34,1.56,.64,1),
              box-shadow 0.18s ease-out,
              background 0.18s;
  white-space: nowrap;
}

/* Gloss sheen on buttons */
.btn::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.28), transparent);
  pointer-events: none;
}

.btn.primary {
  background: linear-gradient(135deg, #7dcef5, #1e9ee3, #0d7fc4);
  border-color: rgba(30, 158, 227, 0.5);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(30, 158, 227, 0.45), inset 0 1px 0 rgba(255,255,255,0.22);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(30, 158, 227, 0.6), inset 0 1px 0 rgba(255,255,255,0.28);
  text-decoration: none;
  color: #ffffff;
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: var(--blur-sm);
  border-color: var(--border-glass);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn.outline {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: var(--blur-sm);
  border-color: rgba(30, 158, 227, 0.4);
  color: var(--accent);
  box-shadow: var(--shadow-xs);
}

.btn.outline:hover {
  background: rgba(30, 158, 227, 0.06);
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm), 0 0 0 3px rgba(30, 158, 227, 0.1);
  text-decoration: none;
}

.btn.full-width {
  width: 100%;
  justify-content: center;
}

/* ── WhatsApp Button ───────────────────────────────────────── */

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  padding-inline: 1.1rem;
  padding-block: 0.55rem;
  border-color: rgba(16, 185, 129, 0.45) !important;
  color: #059669 !important;
}

.whatsapp-btn::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.7);
  flex-shrink: 0;
}

.whatsapp-btn:hover {
  border-color: #10b981 !important;
  background: rgba(16, 185, 129, 0.06) !important;
  color: #047857 !important;
}


/* ── Hero ──────────────────────────────────────────────────── */

.hero {
  padding: 4.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    align-items: center;
  }
}

.hero-copy h1 {
  margin: 0 0 1.1rem;
  font-size: clamp(2.5rem, 2rem + 2.2vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.1;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #1e9ee3 75%, #7dcef5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  margin: 0;
  max-width: 36rem;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.05rem;
}

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

/* Hero Highlights */
.hero-highlights {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
}

.hero-highlights::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,0.5) 0%, transparent 50%);
  pointer-events: none;
}

.hero-highlights div {
  display: grid;
  gap: 0.1rem;
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  transition: background 0.15s;
}

.hero-highlights div:last-child {
  border-bottom: none;
}

.hero-highlights div:hover {
  background: rgba(30, 158, 227, 0.05);
}

@media (min-width: 640px) {
  .hero-highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-highlights div {
    border-bottom: none;
    border-right: 1px solid rgba(148, 163, 184, 0.12);
  }

  .hero-highlights div:nth-child(3),
  .hero-highlights div:nth-child(6) {
    border-right: none;
  }

  .hero-highlights div:nth-child(4),
  .hero-highlights div:nth-child(5),
  .hero-highlights div:nth-child(6) {
    border-top: 1px solid rgba(148, 163, 184, 0.12);
  }
}

.hero-highlights dt {
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.14em;
  font-weight: 600;
}

.hero-highlights dd {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Hero Panel */
.hero-panel {
  position: relative;
  min-height: 380px;
}

.hero-visual {
  width: 100%;
  max-width: 430px;
  margin-left: auto;
  border-radius: var(--radius-xl);
  padding: 1.3rem 1.4rem 1.5rem;
  background: var(--surface);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-xl), var(--glow-accent);
  position: relative;
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top left,    rgba(125, 206, 245, 0.35), transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(30,  158, 227, 0.18), transparent 55%);
  pointer-events: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,0.6) 0%, transparent 45%);
  pointer-events: none;
}

.hero-visual-header {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fca5a5;
  box-shadow: 0 0 4px rgba(252, 165, 165, 0.6);
}

.hero-dot:nth-child(2) {
  background: #fcd34d;
  box-shadow: 0 0 4px rgba(252, 211, 77, 0.6);
}

.hero-dot:nth-child(3) {
  background: #6ee7b7;
  box-shadow: 0 0 4px rgba(110, 231, 183, 0.6);
}

.hero-visual-body {
  display: grid;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

/* Chart — deep navy matching dark header */
.hero-chart {
  padding: 1rem 1.1rem 1.1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, #061428, #0a2240, #0d2d52);
  color: #e0f2fe;
  border: 1px solid rgba(30, 158, 227, 0.25);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.hero-chart::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent);
  pointer-events: none;
}

.hero-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
  height: 110px;
  margin-bottom: 0.75rem;
}

.hero-chart-bars span {
  flex: 1;
  border-radius: var(--radius-pill);
  background: linear-gradient(to top, #0d7fc4, #1e9ee3, #7dcef5);
  box-shadow: 0 0 10px rgba(30, 158, 227, 0.45);
  position: relative;
  overflow: hidden;
}

.hero-chart-bars span::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(180deg, rgba(255,255,255,0.28), transparent);
  border-radius: inherit;
}

.hero-chart-label {
  font-size: 0.75rem;
  color: #7dcef5;
  letter-spacing: 0.01em;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero-metric-label {
  margin: 0;
  font-size: 0.7rem;
  color: var(--muted-light);
  letter-spacing: 0.03em;
}

.hero-metric-value {
  margin: 0.15rem 0 0;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.hero-metric-value-low {
  color: var(--emerald);
}

/* Floating Cards */
.kpi-card,
.leads-card {
  position: absolute;
  max-width: 220px;
}

.kpi-card {
  top: 0;
  right: -14px;
}

.leads-card {
  bottom: 0;
  left: -4%;
}

.kpi-label,
.leads-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.kpi-value,
.leads-value {
  margin: 0 0 0.2rem;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kpi-meta,
.leads-meta {
  font-size: 0.78rem;
  color: var(--muted);
}

.kpi-card {
  background: rgba(255,255,255,0.82);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-color: rgba(30, 158, 227, 0.2) !important;
  box-shadow: var(--shadow-lg), var(--glow-accent) !important;
}

.leads-card {
  background: rgba(255,255,255,0.82);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-color: rgba(16, 185, 129, 0.2) !important;
  box-shadow: var(--shadow-lg), 0 0 30px rgba(16, 185, 129, 0.15) !important;
}

.leads-value {
  background: linear-gradient(135deg, #10b981, #059669);
  -webkit-background-clip: text;
  background-clip: text;
}

@media (max-width: 899px) {
  .hero-panel { margin-top: 2.5rem; }
}

/* ── About Grid ────────────────────────────────────────────── */

.about-grid {
  margin-top: 2.75rem;
  display: grid;
  gap: 1.75rem;
}

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

.about-card {
  padding: 0;
  overflow: hidden;
  transition: transform 0.22s cubic-bezier(.34,1.56,.64,1), box-shadow 0.22s ease-out;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.about-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.about-card:hover img {
  transform: scale(1.03);
}

.about-card-body {
  padding: 1.4rem 1.6rem 1.5rem;
}

.about-card-body h3 {
  margin: 0 0 0.65rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.about-card-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Services Grid ─────────────────────────────────────────── */

.services-grid {
  margin-top: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* Icon accent on service cards */
.services-grid .card::before {
  background: radial-gradient(circle at top right, rgba(30, 158, 227, 0.1), transparent 55%);
}

/* ── Plans Grid ────────────────────────────────────────────── */

.plans-grid {
  margin-top: 2.75rem;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  align-items: stretch;
}

.plan {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.6rem;
  padding-bottom: 1.8rem;
}

.plan-name {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.plan-price {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.plan-price .currency {
  font-size: 0.88rem;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 0.15rem;
  font-weight: 500;
}

.plan-price .period {
  font-size: 0.88rem;
  color: var(--muted);
  margin-left: 0.2rem;
  font-weight: 400;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1.1rem;
  color: var(--muted);
  font-size: 0.93rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.plan-features li::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(135deg, #10b981, #059669),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover, 70% 70%;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

.plan .btn {
  margin-top: auto;
}

/* Featured plan */
.plan.featured {
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(30, 158, 227, 0.5);
  box-shadow: var(--shadow-xl), var(--glow-accent);
  position: relative;
}

.plan.featured::before {
  background: radial-gradient(circle at top, rgba(30, 158, 227, 0.1), transparent 65%) !important;
  opacity: 1 !important;
}

.plan-tag {
  position: absolute;
  top: 1.1rem;
  right: 1.3rem;
  padding: 0.18rem 0.75rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #7dcef5, #1e9ee3, #0d7fc4);
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  box-shadow: 0 4px 14px rgba(30, 158, 227, 0.5), inset 0 1px 0 rgba(255,255,255,0.3);
}

/* ── Contact ───────────────────────────────────────────────── */

.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
    align-items: start;
  }
}

.contact-meta p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.contact-form {
  padding: 1.8rem 1.8rem 1.6rem;
}

.form-row {
  display: grid;
  gap: 1.1rem;
}

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

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--muted);
}

.form-field input,
.form-field textarea {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  padding: 0.6rem 0.85rem;
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(30, 158, 227, 0.14);
  background: rgba(255, 255, 255, 0.95);
}

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

.form-consent {
  margin: 1rem 0 0.4rem;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.checkbox input[type="checkbox"] {
  margin-top: 0.1rem;
  accent-color: var(--accent);
}

.form-footnote,
.form-status {
  margin-top: 0.7rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.captcha-field {
  margin-top: 0.4rem;
  margin-bottom: 0.6rem;
}

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

/* ── Footer ────────────────────────────────────────────────── */

.site-footer {
  border-top: 1px solid var(--border-glass);
  background: rgba(232, 245, 253, 0.85);
  backdrop-filter: var(--blur-sm);
  padding: 1.5rem 0 2rem;
  margin-top: 1rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a {
  color: var(--muted);
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--accent);
  text-decoration: none;
}

/* ── Legal / Privacy Pages ─────────────────────────────────── */

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-main {
  flex: 1;
  padding: 3rem 0 2rem;
}

.legal-heading {
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 1.5rem + 1vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--text), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-content {
  margin-top: 1.5rem;
  padding: 2rem 2rem 1.8rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-lg);
}

.legal-content h2,
.legal-content h3 {
  margin-top: 1.8rem;
  margin-bottom: 0.65rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 0.5rem 0;
  color: var(--muted);
  line-height: 1.75;
}

.legal-content ul {
  margin: 0.5rem 0 0.75rem 1.25rem;
  padding: 0;
  color: var(--muted);
}

.legal-content li {
  margin-bottom: 0.3rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 1rem;
  transition: color 0.15s;
}

.back-link:hover {
  color: var(--accent);
}

.back-link::before {
  content: "←";
  font-size: 0.9rem;
}

/* ── Hero Badge ────────────────────────────────────────────── */

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(30, 158, 227, 0.1);
  border: 1px solid rgba(30, 158, 227, 0.25);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 1rem;
  backdrop-filter: blur(8px);
}

/* ── Stats Strip ───────────────────────────────────────────── */

.stats-strip {
  padding: 0;
  background: linear-gradient(135deg, #061428, #0a2240, #0d2d52);
  border-top: 1px solid rgba(30, 158, 227, 0.2);
  border-bottom: 1px solid rgba(30, 158, 227, 0.2);
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 100%);
  pointer-events: none;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 1.8rem 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.75rem 2.5rem;
  text-align: center;
}

.stat-number {
  font-size: clamp(1.9rem, 1.5rem + 1vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #7dcef5, #1e9ee3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-plus,
.stat-pct {
  font-size: 0.65em;
  -webkit-text-fill-color: transparent;
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  vertical-align: super;
}

.stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(203, 213, 225, 0.6);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(30, 158, 227, 0.2);
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .stat-divider { display: none; }
  .stat-item { padding: 0.6rem 1.5rem; }
  .stats-grid { gap: 0.5rem; }
}

/* ── Benefit Feature Rows ──────────────────────────────────── */

.benefit-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.benefit-row {
  display: grid;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 5rem;
}

.benefit-row:last-child {
  margin-bottom: 0;
}

@media (min-width: 900px) {
  .benefit-row {
    grid-template-columns: 1fr 1fr;
  }
  .benefit-row-reverse .benefit-visual {
    order: 2;
  }
  .benefit-row-reverse .benefit-copy {
    order: 1;
  }
}

.benefit-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.benefit-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-xl);
  transition: transform 0.4s ease;
}

.benefit-visual:hover .benefit-img {
  transform: scale(1.01);
}

.benefit-img-badge {
  position: absolute;
  bottom: -18px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: var(--blur-sm);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 0.65rem 1.1rem;
  box-shadow: var(--shadow-lg), var(--glow-accent);
}

.benefit-img-badge-alt {
  left: auto;
  right: 24px;
}

.badge-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.badge-title {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.badge-sub {
  margin: 0;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 500;
}

.benefit-copy {
  padding-top: 1.5rem;
}

.benefit-tag {
  display: inline-block;
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.9rem;
}

.benefit-copy h2 {
  font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--text);
}

.benefit-copy p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 1.25rem;
  font-size: 1.02rem;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.benefit-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #7dcef5, #1e9ee3);
  box-shadow: 0 0 8px rgba(30,158,227,0.35);
  background-image: linear-gradient(135deg, #7dcef5, #1e9ee3),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover, 65% 65%;
}

.benefit-stats-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
  padding: 1.1rem 1.3rem;
  background: var(--surface);
  backdrop-filter: var(--blur-sm);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.bstat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.bstat-num {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #1e9ee3, #0d7fc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bstat-lbl {
  font-size: 0.73rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ── How It Works ──────────────────────────────────────────── */

.hiw-section {
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(30, 158, 227, 0.1) 0%, transparent 60%),
    var(--bg);
}

.hiw-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.hiw-step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  padding: 0 1rem;
}

.hiw-connector {
  display: flex;
  align-items: center;
  padding-top: 1.8rem;
  color: rgba(30, 158, 227, 0.4);
  flex-shrink: 0;
}

@media (max-width: 680px) {
  .hiw-connector { display: none; }
  .hiw-step { max-width: 100%; text-align: left; display: flex; gap: 1rem; align-items: flex-start; }
  .hiw-grid { flex-direction: column; gap: 1.5rem; align-items: stretch; }
}

.hiw-icon-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(125, 206, 245, 0.2), rgba(30, 158, 227, 0.12));
  border: 1px solid rgba(30, 158, 227, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  color: var(--accent);
  backdrop-filter: var(--blur-sm);
  box-shadow: 0 0 24px rgba(30, 158, 227, 0.15);
}

@media (max-width: 680px) {
  .hiw-icon-wrap { margin: 0; flex-shrink: 0; }
}

.hiw-step-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e9ee3, #0d7fc4);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(30, 158, 227, 0.4);
}

.hiw-step h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.hiw-step p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.hiw-images {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 640px) {
  .hiw-images { grid-template-columns: 1fr; }
}

.hiw-img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: transform 0.22s cubic-bezier(.34,1.56,.64,1), box-shadow 0.22s;
}

.hiw-img-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.hiw-img-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.hiw-img-card:hover img {
  transform: scale(1.04);
}

.hiw-img-card span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.65rem 1rem;
  background: linear-gradient(0deg, rgba(6,20,40,0.85) 0%, transparent 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ── Service Card Icons ────────────────────────────────────── */

.service-card {
  padding-top: 1.4rem;
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(125, 206, 245, 0.18), rgba(30, 158, 227, 0.1));
  border: 1px solid rgba(30, 158, 227, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1rem;
  transition: background 0.2s, box-shadow 0.2s;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(125, 206, 245, 0.3), rgba(30, 158, 227, 0.2));
  box-shadow: 0 0 20px rgba(30, 158, 227, 0.2);
}

/* ── Results Section ───────────────────────────────────────── */

.results-section {
  background:
    radial-gradient(ellipse 70% 50% at 90% 10%, rgba(30, 158, 227, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 10% 90%, rgba(125, 206, 245, 0.08) 0%, transparent 50%),
    var(--bg);
}

.results-layout {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 960px) {
  .results-layout {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }
}

.results-chart-card {
  padding: 1.8rem;
}

.results-chart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.results-chart-title {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.results-chart-sub {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.results-chart-badge {
  flex-shrink: 0;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(16,185,129,0.08));
  border: 1px solid rgba(16,185,129,0.25);
  color: #059669;
  font-size: 0.78rem;
  font-weight: 700;
}

/* Bar Chart */
.bar-chart {
  width: 100%;
}

.bar-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  height: 180px;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  height: 100%;
  justify-content: flex-end;
}

.bar {
  width: 100%;
  height: var(--h);
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(to top, #0d7fc4, #1e9ee3, #7dcef5);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(30, 158, 227, 0.2);
  cursor: default;
}

.bar::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255,255,255,0.25), transparent);
  border-radius: inherit;
}

.bar:hover {
  transform: scaleY(1.02) translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 158, 227, 0.35);
}

.bar-group-active .bar {
  background: linear-gradient(to top, #0d7fc4, #1e9ee3, #a8dffa);
  box-shadow: 0 6px 24px rgba(30, 158, 227, 0.4);
}

.bar-val {
  position: absolute;
  top: -1.6rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.15s;
}

.bar:hover .bar-val {
  opacity: 1;
}

.bar-lbl {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
}

.bar-chart-legend {
  margin-top: 0.85rem;
  font-size: 0.75rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e9ee3, #0d7fc4);
  flex-shrink: 0;
}

/* Results Right Column */
.results-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Channel Bars */
.results-channels-card {
  padding: 1.5rem 1.6rem;
}

.channel-bars {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

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

.channel-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  width: 68px;
  flex-shrink: 0;
}

.channel-bar-track {
  flex: 1;
  height: 8px;
  border-radius: var(--radius-pill);
  background: rgba(148, 163, 184, 0.12);
  overflow: hidden;
}

.channel-bar-fill {
  height: 100%;
  width: var(--w);
  border-radius: var(--radius-pill);
  background: var(--color);
  box-shadow: 0 0 8px color-mix(in srgb, var(--color) 50%, transparent);
  position: relative;
  transition: width 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.channel-bar-fill::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: rgba(255,255,255,0.3);
  border-radius: inherit;
}

.channel-pct {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  width: 32px;
  text-align: right;
  flex-shrink: 0;
}

/* Donut Charts */
.donut-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.donut-card {
  padding: 1.1rem 0.9rem;
  text-align: center;
}

.donut-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.donut-svg {
  width: 72px;
  height: 72px;
  transform: rotate(-90deg);
  position: absolute;
  inset: 0;
}

.donut-label {
  position: relative;
  z-index: 1;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.donut-title {
  margin: 0 0 0.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.donut-sub {
  margin: 0;
  font-size: 0.7rem;
  color: var(--muted);
}

/* ── Industries Grid ───────────────────────────────────────── */

.industries-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.industries-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.industry-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: default;
  transition: transform 0.22s cubic-bezier(.34,1.56,.64,1), box-shadow 0.22s;
}

.industry-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-xl);
}

.industry-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.industry-card:hover img {
  transform: scale(1.06);
}

.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 20, 40, 0.85) 0%,
    rgba(6, 20, 40, 0.3) 50%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 1.1rem 1.2rem;
  transition: background 0.3s;
}

.industry-card:hover .industry-overlay {
  background: linear-gradient(
    to top,
    rgba(6, 20, 40, 0.9) 0%,
    rgba(30, 158, 227, 0.25) 60%,
    transparent 100%
  );
}

.industry-overlay span {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ── App Section ───────────────────────────────────────────── */

.app-section {
  padding: 5rem 0;
  background:
    radial-gradient(ellipse 70% 60% at 0% 50%, rgba(30, 158, 227, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 100% 50%, rgba(125, 206, 245, 0.08) 0%, transparent 55%),
    var(--bg);
}

.app-inner {
  display: grid;
  gap: 3.5rem;
  align-items: center;
}

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

.app-copy h2 {
  font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--text);
}

.app-copy p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 1.25rem;
  font-size: 1.02rem;
}

.app-badges {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: flex-start;
}

.app-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-md);
  background: #000;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 8px 28px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: transform 0.15s cubic-bezier(.34,1.56,.64,1), box-shadow 0.15s;
  position: relative;
  overflow: hidden;
}

.app-store-badge::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), transparent);
  pointer-events: none;
}

.app-store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.4);
  text-decoration: none;
  color: #fff;
}

.app-store-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.app-store-line1 {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  opacity: 0.85;
  line-height: 1;
}

.app-store-line2 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.app-store-note {
  font-size: 0.78rem;
  color: var(--muted);
}

/* Phone mockup */
.app-visual {
  display: flex;
  justify-content: center;
}

.app-phone-mockup {
  width: 240px;
  background: linear-gradient(145deg, #0a1628, #0d2244);
  border-radius: 36px;
  padding: 14px;
  box-shadow:
    0 40px 80px rgba(6,20,40,0.4),
    0 0 0 1px rgba(30,158,227,0.2),
    inset 0 1px 0 rgba(255,255,255,0.07);
  position: relative;
}

.app-phone-mockup::before {
  content: "";
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 6px;
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
  z-index: 2;
}

.app-phone-screen {
  background: #f0f8ff;
  border-radius: 26px;
  overflow: hidden;
  padding: 1rem 0.9rem 0.9rem;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.app-screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.3rem;
}

.app-screen-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text);
}

.app-screen-time {
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 600;
}

.app-screen-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}

.app-screen-stat {
  background: rgba(255,255,255,0.8);
  border-radius: 10px;
  padding: 0.5rem 0.3rem;
  text-align: center;
  border: 1px solid rgba(148,163,184,0.15);
  box-shadow: 0 2px 8px rgba(30,158,227,0.06);
}

.app-screen-stat-num {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.app-screen-stat-lbl {
  display: block;
  font-size: 0.5rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.1rem;
}

.app-screen-chart {
  background: linear-gradient(145deg, #061428, #0a2240);
  border-radius: 12px;
  padding: 0.65rem 0.7rem 0.55rem;
  flex: 1;
}

.app-mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 70px;
  margin-bottom: 0.4rem;
}

.app-mini-bars span {
  flex: 1;
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(to top, #0d7fc4, #1e9ee3, #7dcef5);
  box-shadow: 0 0 6px rgba(30,158,227,0.4);
}

.app-screen-chart-label {
  font-size: 0.55rem;
  color: #7dcef5;
  margin: 0;
  letter-spacing: 0.04em;
}

.app-screen-notif {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.8);
  border-radius: 8px;
  padding: 0.4rem 0.55rem;
  font-size: 0.58rem;
  color: var(--text);
  font-weight: 500;
  border: 1px solid rgba(148,163,184,0.15);
}

.app-notif-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1e9ee3;
  flex-shrink: 0;
  box-shadow: 0 0 4px rgba(30,158,227,0.6);
}

/* ── Form Submit Row ───────────────────────────────────────── */

.form-submit-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.form-submit-row .btn {
  padding: 0.5rem 1.75rem;
  font-size: 0.88rem;
}

.form-status {
  text-align: center;
  font-size: 0.85rem;
}

.form-status-success {
  color: #059669 !important;
  font-weight: 500;
}

.form-status-error {
  color: #dc2626 !important;
  font-weight: 500;
}

/* ── Utilities ─────────────────────────────────────────────── */

@keyframes shimmer-bg {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
