/* ============================================================
   Rocket CMS Sales Theme — by Wasim Akram
   Matches digitalwasim.com aesthetic: emerald/teal glassmorphism
   ============================================================ */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

:root {
  --primary: #059669;
  --primary-dark: #047857;
  --teal: #0D9488;
  --teal-light: rgba(13, 148, 136, 0.1);
  --primary-light: rgba(5, 150, 105, 0.1);
  --text: #1F2937;
  --text-muted: #6B7280;
  --bg: #FFFFFF;
  --bg-tint: #F0FDF4;
  --border: rgba(0, 0, 0, 0.1);
  --border-hover: rgba(5, 150, 105, 0.3);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 24px rgba(5, 150, 105, 0.06);
  --shadow-lg: 0 12px 40px rgba(5, 150, 105, 0.12);
  --radius: 1rem;
  --radius-pill: 999px;
  --gradient: linear-gradient(135deg, #059669 0%, #0D9488 100%);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }
.section-padding { padding-top: 5rem; padding-bottom: 5rem; }
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.text-white { color: #fff; }

.badge {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  border-radius: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 500;
  background: var(--primary-light);
  color: var(--primary);
}
.badge-teal {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  border-radius: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 500;
  background: var(--teal-light);
  color: var(--teal);
}

.card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  transition: all 0.2s ease;
}
.card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  padding: 0 2rem;
  border-radius: 0.75rem;
  background: var(--primary);
  color: #fff;
  font-weight: 500;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.25);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  padding: 0 2rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  font-weight: 500;
  font-size: 0.875rem;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-outline:hover {
  background: #f9fafb;
  border-color: rgba(0, 0, 0, 0.2);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  padding: 0 2rem;
  border-radius: 0.75rem;
  background: #fff;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); }

.btn-white-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  padding: 0 2rem;
  border-radius: 0.75rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-weight: 500;
  font-size: 0.875rem;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-white-outline:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 42rem;
  margin: 0 auto 3rem;
}

.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
}

/* ---------- Announcement bar ---------- */
.announcement {
  background: var(--gradient);
  color: #fff;
  text-align: center;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.nav-logo {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-logo .rocket-icon { font-size: 1.25rem; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--primary); }
.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
}
.nav-cta:hover { background: var(--primary-dark); color: #fff; }

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

/* ---------- Hero ---------- */
.hero {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(5, 150, 105, 0.08), transparent),
    var(--bg);
}
.hero-inner { text-align: center; max-width: 50rem; margin: 0 auto; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-pill);
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.1875rem;
  color: var(--text-muted);
  max-width: 38rem;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}
.hero-cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-trust {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 0.375rem; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 42rem;
  margin: 4rem auto 0;
}
.hero-stat {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
}
.hero-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.375rem;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 640px) {
  .hero-stats { grid-template-columns: 1fr; gap: 0.75rem; }
}

/* ---------- Tech grid ---------- */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.tech-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  transition: all 0.2s ease;
}
.tech-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.tech-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.tech-name {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.375rem;
}
.tech-role {
  font-size: 0.8125rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tech-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.55; }

.callout {
  margin-top: 3rem;
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--bg-tint);
  border-left: 4px solid var(--primary);
}
.callout h3 { font-size: 1.125rem; color: var(--text); margin-bottom: 1rem; font-weight: 600; }
.callout ul { list-style: none; padding: 0; }
.callout li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  color: var(--text);
  font-size: 0.9375rem;
}
.callout li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

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

/* ---------- Features grid ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.feature-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  transition: all 0.2s ease;
}
.feature-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.feature-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.feature-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.feature-desc { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.55; }

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

/* ---------- Pricing ---------- */
.pricing-section { background: var(--bg-tint); }
.pricing-card {
  max-width: 32rem;
  margin: 0 auto;
  padding: 2.5rem;
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.pricing-card .badge { margin-bottom: 1rem; }
.pricing-title { font-size: 1.5rem; font-weight: 600; color: var(--text); margin-bottom: 0.5rem; }
.pricing-price {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0.5rem 0;
}
.pricing-price .currency { font-size: 1.75rem; vertical-align: top; color: var(--text-muted); }
.pricing-price .amount { color: var(--primary); }
.pricing-original {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-top: 0.5rem;
}
.pricing-meta { font-size: 0.8125rem; color: var(--text-muted); margin-top: 0.25rem; }
.pricing-usd {
  font-size: 1rem;
  color: var(--teal);
  font-weight: 600;
  margin-top: 0.25rem;
  letter-spacing: 0.01em;
}
.badge-urgent {
  background: linear-gradient(135deg, #DC2626 0%, #EA580C 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
  animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25); }
  50% { box-shadow: 0 4px 20px rgba(220, 38, 38, 0.5); }
}

/* ---------- Hero FOMO mini-bar ---------- */
.hero-fomo {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 2rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.08), rgba(234, 88, 12, 0.08));
  border: 1px solid rgba(220, 38, 38, 0.2);
  color: #991B1B;
  font-size: 0.875rem;
  font-weight: 500;
  animation: fomo-shake 4s ease-in-out infinite;
}
.hero-fomo strong { color: #7F1D1D; font-weight: 700; }
.hero-fomo .cd-hours,
.hero-fomo .cd-minutes,
.hero-fomo .cd-seconds {
  display: inline-block;
  min-width: 1.5rem;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: #DC2626;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #DC2626;
  position: relative;
  flex-shrink: 0;
}
.pulse-dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #DC2626;
  opacity: 0.4;
  animation: pulse-ring 1.5s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}
@keyframes fomo-shake {
  0%, 92%, 100% { transform: translateX(0); }
  94% { transform: translateX(-2px); }
  96% { transform: translateX(2px); }
  98% { transform: translateX(-1px); }
}

/* ---------- Pricing FOMO Countdown Block ---------- */
.countdown-block {
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  padding: 2rem 1.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, #FEF2F2 0%, #FFF7ED 100%);
  border: 2px solid rgba(220, 38, 38, 0.25);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.countdown-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #DC2626 0%, #EA580C 50%, #DC2626 100%);
  background-size: 200% 100%;
  animation: urgency-flow 3s linear infinite;
}
@keyframes urgency-flow {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}
.countdown-icon {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  animation: flame-flicker 1.2s ease-in-out infinite alternate;
}
@keyframes flame-flicker {
  0% { transform: scale(1) rotate(-3deg); }
  100% { transform: scale(1.1) rotate(3deg); }
}
.countdown-headline {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #991B1B;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.countdown-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 4.5rem;
  padding: 0.625rem 0.5rem;
  border-radius: 0.75rem;
  background: #fff;
  border: 1px solid rgba(220, 38, 38, 0.2);
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.1);
}
.countdown-digit {
  font-size: 2rem;
  font-weight: 800;
  color: #DC2626;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: -0.02em;
}
.countdown-cell small {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #B91C1C;
  margin-top: 0.375rem;
}
.countdown-sep {
  font-size: 2rem;
  font-weight: 800;
  color: #DC2626;
  opacity: 0.5;
  line-height: 1;
  animation: blink-sep 1s ease-in-out infinite;
}
@keyframes blink-sep {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.15; }
}
.spots-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(220, 38, 38, 0.08);
  color: #991B1B;
  font-size: 0.8125rem;
  font-weight: 500;
}
.spots-badge strong { color: #7F1D1D; font-weight: 700; }
.spots-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #DC2626;
  flex-shrink: 0;
  animation: pulse-dot-simple 1.2s ease-in-out infinite;
}
@keyframes pulse-dot-simple {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

@media (max-width: 480px) {
  .countdown-cell { min-width: 3.5rem; padding: 0.5rem 0.375rem; }
  .countdown-digit { font-size: 1.5rem; }
  .countdown-sep { font-size: 1.5rem; }
  .hero-fomo { font-size: 0.75rem; padding: 0.5rem 1rem; }
  .hero-fomo .cd-hours,
  .hero-fomo .cd-minutes,
  .hero-fomo .cd-seconds { min-width: 1.25rem; }
}

.pricing-features {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
  text-align: left;
  border-top: 1px solid var(--border);
}
.pricing-features li {
  padding: 0.75rem 0 0.75rem 1.75rem;
  position: relative;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--text);
}
.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* Payment tiles */
.payment-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 48rem;
  margin: 3rem auto 0;
}
.payment-tile {
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  text-align: center;
}
.payment-tile-header {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
}
.payment-qr {
  width: 280px;
  height: auto;
  margin: 0 auto 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: #fff;
  padding: 8px;
}
.payment-pill {
  display: inline-block;
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  background: #f3f4f6;
  border: 1px solid var(--border);
  font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
  font-size: 0.9375rem;
  color: var(--text);
  margin: 0.5rem 0 1rem;
  word-break: break-all;
}
.payment-instructions {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.payment-notice {
  margin: 2rem auto 0;
  max-width: 48rem;
  padding: 1.25rem 1.5rem;
  border-radius: 0.75rem;
  background: #FEF3C7;
  border: 1px solid #FCD34D;
  color: #92400E;
  font-size: 0.9375rem;
  text-align: center;
  line-height: 1.55;
}
.payment-notice strong { color: #78350F; }

@media (max-width: 700px) {
  .payment-tiles { grid-template-columns: 1fr; }
  .payment-qr { width: 240px; }
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  transition: all 0.2s ease;
}
.testimonial-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-md); }
.testimonial-quote-mark {
  font-size: 3rem;
  color: var(--primary);
  line-height: 1;
  font-family: Georgia, serif;
  margin-bottom: 0.5rem;
}
.testimonial-stars {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}
.testimonial-text {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}
.testimonial-role {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

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

/* ---------- About section ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}
.about-bio p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.about-chip {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 500;
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.about-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  text-align: center;
}
.about-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-pill);
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.about-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--text); }
.about-card p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.55; }
.about-card .btn-primary { width: 100%; }
.about-card-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

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

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--gradient);
  color: #fff;
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255,255,255,0.15), transparent);
  pointer-events: none;
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta .section-label { color: rgba(255, 255, 255, 0.85); }
.final-cta h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #fff;
}
.final-cta p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 38rem;
  margin: 0 auto 2.5rem;
}
.final-cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.final-cta-trust {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.final-cta-trust span { display: inline-flex; align-items: center; gap: 0.375rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: #111827;
  color: #D1D5DB;
  padding: 2.5rem 0;
  text-align: center;
}
.site-footer p { font-size: 0.875rem; margin-bottom: 0.5rem; }
.site-footer a { color: var(--primary); }
.site-footer a:hover { text-decoration: underline; }
.site-footer .footer-meta { font-size: 0.75rem; color: #6B7280; margin-top: 0.5rem; }

/* ---------- Generic post/page styling ---------- */
.post-header, .page-header {
  text-align: center;
  padding: 4rem 0 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
}
.post-title, .page-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  color: var(--text);
}
.post-excerpt { font-size: 1.125rem; color: var(--text-muted); max-width: 42rem; margin: 0 auto; }
.post-meta { font-size: 0.875rem; color: var(--text-muted); margin-top: 1rem; }

.post-content, .page-content {
  max-width: 44rem;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text);
}
.post-content h2, .page-content h2 {
  font-size: 1.75rem;
  margin: 2.5rem 0 1rem;
  font-weight: 700;
  color: var(--text);
}
.post-content h3, .page-content h3 {
  font-size: 1.375rem;
  margin: 2rem 0 1rem;
  font-weight: 600;
}
.post-content p, .page-content p { margin-bottom: 1.25rem; }
.post-content a, .page-content a { color: var(--primary); text-decoration: underline; }
.post-content ul, .post-content ol, .page-content ul, .page-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}
.post-content li, .page-content li { margin-bottom: 0.5rem; }
.post-content code, .page-content code {
  background: #f3f4f6;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-size: 0.875em;
  font-family: 'SF Mono', Monaco, Consolas, monospace;
}
.post-content pre, .page-content pre {
  background: #1f2937;
  color: #f9fafb;
  padding: 1.25rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}
.post-content blockquote, .page-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 0.5rem 0 0.5rem 1.25rem;
  margin: 1.5rem 0;
  color: var(--text-muted);
  font-style: italic;
}
.post-content img, .page-content img {
  border-radius: 0.5rem;
  margin: 1.5rem 0;
  width: 100%;
}

/* ---------- Mobile menu ---------- */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
@media (max-width: 768px) {
  .menu-toggle { display: flex; flex-direction: column; gap: 4px; }
  .menu-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 1px; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 4rem;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
