/*
 * index.css — UpPulse Premium Landing Page
 * Design: Dark Navy · Electric Blue/Cyan · Inter
 * Style: Liquid Glass · Precision Dark · Bento Grid
 */

/* ══════════════════════════════════════════
   PAGE-LEVEL OVERRIDES
══════════════════════════════════════════ */

body {
  background: #060C18;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Frosted glass nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 12, 24, 0.72);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1rem 0;
  /* needed so the absolute dropdown is positioned relative to nav */
  overflow: visible;
}

.nav__logo {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #EEF4FF;
}

.nav__logo span {
  background: linear-gradient(130deg, #60A5FA 0%, #22D3EE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav__links a {
  color: rgba(238, 244, 255, 0.5);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav__links a:hover { color: #EEF4FF; }

/* ── Button overrides for landing ── */
.btn--primary {
  background: linear-gradient(135deg, #2563EB 0%, #0EA5E9 100%);
  color: #fff;
  border: none;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3B82F6 0%, #38BDF8 100%);
  opacity: 0;
  transition: opacity 0.25s;
}

.btn--primary:hover { color: #fff; box-shadow: 0 8px 32px rgba(37, 99, 235, 0.45); transform: translateY(-1px); }
.btn--primary:hover::after { opacity: 1; }
.btn--primary:active  { transform: translateY(0); }
.btn--primary > * { position: relative; z-index: 1; }

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(238, 244, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #EEF4FF;
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.btn--lg {
  padding: 0.75rem 1.75rem;
  font-size: 0.92rem;
  border-radius: 10px;
  gap: 0.45rem;
  cursor: pointer;
}

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

/* ══════════════════════════════════════════
   SHARED SECTION STYLES
══════════════════════════════════════════ */

.section-eyebrow {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #60A5FA;
  margin-bottom: 0.875rem;
}

.section-title {
  text-align: center;
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: #EEF4FF;
  margin-bottom: 0.75rem;
}

.section-sub {
  text-align: center;
  font-size: 0.975rem;
  color: rgba(238, 244, 255, 0.42);
  max-width: 440px;
  margin: 0 auto 3.5rem;
  line-height: 1.75;
}

/* ══════════════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */

.hero {
  position: relative;
  padding: 5.5rem 0 5rem;
  overflow: hidden;
}

/* ── Animated background ── */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}

.hero__orb--1 {
  width: 640px; height: 640px;
  top: -240px; left: -140px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.55) 0%, rgba(14, 165, 233, 0.25) 50%, transparent 70%);
  animation: orb1 20s ease-in-out infinite;
}

.hero__orb--2 {
  width: 520px; height: 520px;
  top: 80px; right: -160px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.35) 0%, rgba(139, 92, 246, 0.2) 50%, transparent 70%);
  animation: orb2 26s ease-in-out infinite;
}

.hero__orb--3 {
  width: 420px; height: 420px;
  bottom: -100px; left: 38%;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.22) 0%, transparent 70%);
  animation: orb3 17s ease-in-out infinite;
}

@keyframes orb1 {
  0%, 100% { transform: translate(0, 0)    scale(1); }
  33%       { transform: translate(50px, -50px) scale(1.07); }
  66%       { transform: translate(-35px, 35px) scale(0.93); }
}
@keyframes orb2 {
  0%, 100% { transform: translate(0, 0)    scale(1); }
  40%       { transform: translate(-55px, 45px) scale(1.09); }
  75%       { transform: translate(30px, -30px) scale(0.91); }
}
@keyframes orb3 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(-45px, -55px); }
}

/* Dot-grid overlay */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 40%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 40%, black 30%, transparent 100%);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero__content { max-width: 520px; }

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.22);
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #34D399;
  letter-spacing: 0.02em;
  margin-bottom: 1.75rem;
}

.hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #10B981;
  flex-shrink: 0;
  animation: pulse-green 2.4s ease-in-out infinite;
}

@keyframes pulse-green {
  0%   { box-shadow: 0 0 0 0   rgba(16, 185, 129, 0.7); }
  60%  { box-shadow: 0 0 0 7px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0   rgba(16, 185, 129, 0); }
}

/* Headline */
.hero__title {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #EEF4FF;
  margin-bottom: 1.4rem;
}

.hero__title-accent {
  background: linear-gradient(130deg, #60A5FA 0%, #22D3EE 55%, #818CF8 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: grad-pan 5s linear infinite;
}

@keyframes grad-pan {
  0%   { background-position: 0% center; }
  50%  { background-position: 100% center; }
  100% { background-position: 0% center; }
}

.hero__sub {
  font-size: 1.02rem;
  color: rgba(238, 244, 255, 0.5);
  line-height: 1.75;
  margin-bottom: 2.1rem;
}

.hero__actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Stats row */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.hero__stat { display: flex; flex-direction: column; gap: 0.1rem; }

.hero__stat-value {
  font-size: 1.3rem;
  font-weight: 800;
  color: #EEF4FF;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.68rem;
  color: rgba(238, 244, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 500;
}

.hero__stat-sep {
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, 0.1);
}

/* ── Dashboard Mockup ── */
.hero__mockup {
  background: rgba(10, 18, 36, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.07),
    0 40px 90px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}

.hero__mockup-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.025);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__mockup-trafficlights {
  display: flex;
  gap: 0.35rem;
}

.hero__mockup-trafficlights span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.hero__mockup-trafficlights span:nth-child(1) { background: rgba(255, 95, 86,  0.65); }
.hero__mockup-trafficlights span:nth-child(2) { background: rgba(255, 189, 46, 0.55); }
.hero__mockup-trafficlights span:nth-child(3) { background: rgba(40,  205, 65, 0.55); }

.hero__mockup-title {
  font-size: 0.74rem;
  font-weight: 500;
  color: rgba(238, 244, 255, 0.35);
  letter-spacing: 0.01em;
}

.hero__mockup-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.hero__mockup-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0.75rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.16);
  border-radius: 8px;
  margin-bottom: 0.2rem;
}

.hero__all-good {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: #34D399;
}

.hero__pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #10B981;
  animation: pulse-green 2s ease-in-out infinite;
}

.hero__checked-ago {
  font-size: 0.67rem;
  color: rgba(238, 244, 255, 0.28);
}

.hero__monitor-row {
  display: grid;
  grid-template-columns: 10px 1fr auto auto auto;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.hero__mon-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__mon-dot--up {
  background: #10B981;
  box-shadow: 0 0 5px rgba(16, 185, 129, 0.7);
}

.hero__mon-name {
  font-size: 0.76rem;
  font-weight: 500;
  color: rgba(238, 244, 255, 0.72);
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero__mon-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
}

.hero__mon-bars span {
  display: block;
  width: 4px;
  border-radius: 2px;
  height: 12px;
}

.hero__mon-bars .b-up   { background: rgba(16,  185, 129, 0.5); }
.hero__mon-bars .b-down { background: rgba(239,  68,  68, 0.65); height: 7px; }

.hero__mon-pct {
  font-size: 0.72rem;
  font-weight: 700;
  color: #34D399;
  font-variant-numeric: tabular-nums;
  min-width: 36px;
  text-align: right;
}

.hero__mon-ms {
  font-size: 0.67rem;
  color: rgba(238, 244, 255, 0.28);
  font-variant-numeric: tabular-nums;
  min-width: 34px;
  text-align: right;
}

.hero__mockup-foot {
  display: flex;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem 0;
  font-size: 0.67rem;
  color: rgba(238, 244, 255, 0.22);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  margin-top: 0.2rem;
}

/* ══════════════════════════════════════════
   SOCIAL PROOF
══════════════════════════════════════════ */

.social-proof {
  padding: 2.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.social-proof__label {
  text-align: center;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: rgba(238, 244, 255, 0.22);
  font-weight: 600;
  margin-bottom: 1rem;
}

.social-proof__logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.social-proof__logos span {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(238, 244, 255, 0.22);
  position: relative;
}

.social-proof__logos span + span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 12px;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

/* ══════════════════════════════════════════
   FEATURES
══════════════════════════════════════════ */

.features {
  padding: 3.5rem 0 7rem;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
}

.feature-card {
  background: #080E1C;
  padding: 2rem;
  position: relative;
  cursor: default;
  transition: background 0.3s ease;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(59, 130, 246, 0.07) 0%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.feature-card:hover { background: #0B1422; }
.feature-card:hover::before { opacity: 1; }

.feature-card--wide { grid-column: span 2; }
.feature-card--full { grid-column: 1 / -1; }

/* Icon badges */
.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.feature-card__icon--blue   { background: rgba(59, 130, 246, 0.12); color: #60A5FA; border: 1px solid rgba(59, 130, 246, 0.2); }
.feature-card__icon--violet { background: rgba(139, 92, 246, 0.12); color: #A78BFA; border: 1px solid rgba(139, 92, 246, 0.2); }
.feature-card__icon--green  { background: rgba(16, 185, 129, 0.12); color: #34D399; border: 1px solid rgba(16, 185, 129, 0.2); }
.feature-card__icon--amber  { background: rgba(245, 158, 11, 0.12); color: #FCD34D; border: 1px solid rgba(245, 158, 11, 0.2); }
.feature-card__icon--slate  { background: rgba(100, 116, 139, 0.12); color: #94A3B8; border: 1px solid rgba(100, 116, 139, 0.2); }
.feature-card__icon--teal   { background: rgba(20, 184, 166, 0.12); color: #2DD4BF; border: 1px solid rgba(20, 184, 166, 0.2); }

.feature-card__title {
  font-size: 0.975rem;
  font-weight: 700;
  color: #EEF4FF;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.feature-card__text {
  font-size: 0.86rem;
  color: rgba(238, 244, 255, 0.42);
  line-height: 1.7;
}

.feature-card__tags {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.ftag {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  letter-spacing: 0.03em;
  background: rgba(59, 130, 246, 0.1);
  color: #60A5FA;
  border: 1px solid rgba(59, 130, 246, 0.18);
}

/* ══════════════════════════════════════════
   PRICING
══════════════════════════════════════════ */

.pricing {
  padding: 7rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.plan-card {
  background: #090F1E;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  cursor: default;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

/* Gradient border on featured using background-clip trick */
.plan-card--featured {
  background:
    linear-gradient(#090F1E, #090F1E) padding-box,
    linear-gradient(145deg, #3B82F6 0%, #0EA5E9 45%, #8B5CF6 100%) border-box;
  border: 1px solid transparent;
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.1);
}

.plan-card--featured:hover {
  box-shadow: 0 0 60px rgba(59, 130, 246, 0.18), 0 24px 60px rgba(0, 0, 0, 0.45);
}

.plan-card__badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(130deg, #2563EB, #0EA5E9);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.22rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: static;
  transform: none;
}

.plan-card__name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #EEF4FF;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.plan-card__price {
  font-size: 2.75rem;
  font-weight: 900;
  color: #EEF4FF;
  letter-spacing: -0.045em;
  line-height: 1;
  margin-bottom: 0.35rem;
  font-variant-numeric: tabular-nums;
}

.plan-card__currency {
  font-size: 1.4rem;
  font-weight: 700;
  vertical-align: super;
  letter-spacing: 0;
}

.plan-card__period {
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(238, 244, 255, 0.32);
  letter-spacing: 0;
}

.plan-card__desc {
  font-size: 0.8rem;
  color: rgba(238, 244, 255, 0.38);
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  line-height: 1.55;
}

.plan-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.75rem;
}

.plan-card__feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.86rem;
  color: rgba(238, 244, 255, 0.68);
  font-weight: 500;
}

.plan-card__feature svg { color: #10B981; flex-shrink: 0; }
.plan-card--featured .plan-card__feature svg { color: #60A5FA; }

/* ══════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════ */

.cta-section {
  padding: 6rem 0 7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-section__inner {
  position: relative;
  text-align: center;
  padding: 5rem 2rem;
  background: #080E1C;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 28px;
  overflow: hidden;
}

.cta-section__glow {
  position: absolute;
  width: 700px; height: 320px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.14) 0%, transparent 68%);
  pointer-events: none;
}

.cta-section__title {
  position: relative;
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #EEF4FF;
  line-height: 1.12;
  margin-bottom: 1rem;
}

.cta-section__sub {
  position: relative;
  font-size: 0.975rem;
  color: rgba(238, 244, 255, 0.42);
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.cta-section .btn { position: relative; }

/* ══════════════════════════════════════════
   FOOTER OVERRIDE
══════════════════════════════════════════ */

.footer {
  background: #060C18;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(238, 244, 255, 0.2);
  margin-top: 0;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

@media (max-width: 920px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero { padding: 4.5rem 0 4rem; }
  .hero__content { max-width: 100%; }

  .hero__badge,
  .hero__actions,
  .hero__stats { justify-content: center; }

  .hero__sub { margin-left: auto; margin-right: auto; }

  .hero__mockup {
    max-width: 460px;
    margin: 0 auto;
    animation: none;
  }

  .features__grid { grid-template-columns: 1fr 1fr; }
  .feature-card--wide { grid-column: span 2; }
  .feature-card--full { grid-column: 1 / -1; }

  .pricing__grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
}

@media (max-width: 600px) {
  .hero__title { font-size: 2.1rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__stats { gap: 0.75rem 1.25rem; }
  .hero__stat-sep { display: none; }

  .features__grid { grid-template-columns: 1fr; border-radius: 16px; }
  .feature-card--wide,
  .feature-card--full { grid-column: span 1; }

  .cta-section__inner { padding: 3rem 1.25rem; border-radius: 20px; }
  .section-sub { margin-bottom: 2.5rem; }
}

/* ===== Mobile nav fix ===== */
@media (max-width: 768px) {
  .nav__links a:not(.btn) { display: none; }
  .nav__logo { font-size: 1rem; }
}

/* ===== Trust section ===== */
.trust-section {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.trust-item__value {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .35rem;
}
.trust-item__label {
  font-size: .8rem;
  color: var(--text-muted);
}
@media (max-width: 640px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
