/* ==========================================================================
   SimpleSend – Public Marketing Site Styles
   getsimplesend.com
   Brand Color Guide v1.0 · March 2026
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Primary Palette */
  --ss-blue:        #0067A6;
  --ss-navy:        #1E3461;
  --ss-cyan:        #00B4D8;
  --ss-steel:       #4A5568;

  /* Highlight Palette */
  --ss-electric:    #0DD4F8;
  --ss-mint:        #34D399;
  --ss-amber:       #FBBF24;
  --ss-periwinkle:  #A5B4FC;

  /* Footer Dark Variants */
  --ss-dark-blue:   #004D80;
  --ss-midnight:    #0F1A33;
  --ss-deep-cyan:   #007A9E;
  --ss-slate:       #2D3748;

  /* Neutrals */
  --ss-bg:          #F8FAFC;
  --ss-surface:     #FFFFFF;
  --ss-border:      #E2E8F0;
  --ss-text:        #0F1A33;
  --ss-text-muted:  #4A5568;
  --ss-text-light:  #5A6A7E;

  /* Typography */
  --ss-font:        'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --ss-font-mono:   'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing */
  --ss-max-w:       1200px;
  --ss-nav-h:       68px;

  /* Radii */
  --ss-radius-sm:   0.375rem;
  --ss-radius-md:   0.75rem;
  --ss-radius-lg:   1.25rem;
  --ss-radius-xl:   2rem;

  /* Shadows */
  --ss-shadow-sm:   0 1px 4px rgba(0,0,0,.06);
  --ss-shadow-md:   0 4px 20px rgba(0,103,166,.10);
  --ss-shadow-lg:   0 12px 40px rgba(0,103,166,.14);
}

/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ss-font);
  color: var(--ss-text);
  background: var(--ss-surface);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--ss-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img, svg { display: block; max-width: 100%; }
h1,h2,h3,h4,h5,h6 { margin-top: 0; line-height: 1.2; color: var(--ss-text); }
p { margin-top: 0; }

/* --------------------------------------------------------------------------
   3. Layout Helpers
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--ss-max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section--alt { background: var(--ss-bg); }
.section--dark {
  background: var(--ss-midnight);
  color: #fff;
}
.section--dark h2,
.section--dark h3,
.section--dark p { color: #fff; }

.text-center { text-align: center; }

/* --------------------------------------------------------------------------
   4. Navigation
   -------------------------------------------------------------------------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--ss-border);
  height: var(--ss-nav-h);
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  max-width: var(--ss-max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-logo img { height: 50px; width: auto; }
.nav-logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ss-navy);
  letter-spacing: -0.5px;
}
.nav-logo-text span { color: var(--ss-blue); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ss-text-muted);
  transition: color 150ms;
}
.nav-links a:hover { color: var(--ss-blue); text-decoration: none; }

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

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  background: var(--ss-blue);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--ss-radius-md);
  border: none;
  cursor: pointer;
  transition: background 150ms, transform 100ms, box-shadow 150ms;
  text-decoration: none;
  font-family: var(--ss-font);
}
.btn-primary:hover {
  background: var(--ss-navy);
  text-decoration: none;
  color: #fff;
  box-shadow: var(--ss-shadow-md);
}

.btn-primary--lg {
  padding: 0.85rem 2rem;
  font-size: 1rem;
  border-radius: var(--ss-radius-md);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  background: transparent;
  color: var(--ss-blue);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--ss-radius-md);
  border: 1.5px solid var(--ss-blue);
  cursor: pointer;
  transition: all 150ms;
  text-decoration: none;
  font-family: var(--ss-font);
}
.btn-outline:hover {
  background: var(--ss-blue);
  color: #fff;
  text-decoration: none;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: #fff;
  color: var(--ss-navy);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--ss-radius-md);
  border: none;
  cursor: pointer;
  transition: box-shadow 150ms, transform 100ms;
  text-decoration: none;
  font-family: var(--ss-font);
}
.btn-white:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  text-decoration: none;
  color: var(--ss-navy);
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   6. Hero Section
   -------------------------------------------------------------------------- */
.hero {
  background: linear-gradient(135deg, var(--ss-navy) 0%, var(--ss-dark-blue) 60%, #005a8e 100%);
  color: #fff;
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,180,216,.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,180,216,.2);
  border: 1px solid rgba(0,180,216,.4);
  color: var(--ss-electric);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -1px;
}

.hero h1 span { color: var(--ss-electric); }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,.6);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--ss-radius-lg);
  padding: 2rem;
  backdrop-filter: blur(12px);
  width: 100%;
  max-width: 380px;
}

.hero-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-stat {
  background: rgba(255,255,255,.08);
  border-radius: var(--ss-radius-md);
  padding: 1rem;
  text-align: center;
}

.hero-stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--ss-electric);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,.65);
  margin-top: 0.25rem;
}

.hero-progress {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.progress-item { display: flex; flex-direction: column; gap: 0.3rem; }
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,.7);
}
.progress-bar-bg {
  height: 6px;
  background: rgba(255,255,255,.12);
  border-radius: 999px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ss-blue), var(--ss-electric));
}

/* --------------------------------------------------------------------------
   7. Section Headers
   -------------------------------------------------------------------------- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ss-blue);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--ss-navy);
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--ss-text-muted);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   8. Feature Cards
   -------------------------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--ss-surface);
  border: 1px solid var(--ss-border);
  border-radius: var(--ss-radius-lg);
  padding: 2rem;
  transition: box-shadow 200ms, transform 200ms;
}

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

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--ss-radius-md);
  background: var(--ss-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  color: #fff;
}

.feature-icon--cyan  { background: var(--ss-cyan); }
.feature-icon--mint  { background: #059669; }
.feature-icon--amber { background: #D97706; }
.feature-icon--navy  { background: var(--ss-navy); }

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ss-navy);
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--ss-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* --------------------------------------------------------------------------
   9. Stats Banner
   -------------------------------------------------------------------------- */
.stats-banner {
  background: var(--ss-navy);
  padding: 3.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ss-electric);
  line-height: 1;
}

.stat-item-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,.7);
  margin-top: 0.4rem;
}

/* --------------------------------------------------------------------------
   10. Pricing Cards
   -------------------------------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--ss-surface);
  border: 1.5px solid var(--ss-border);
  border-radius: var(--ss-radius-lg);
  padding: 2rem;
  position: relative;
}

.pricing-card--featured {
  border-color: var(--ss-blue);
  box-shadow: var(--ss-shadow-lg);
  transform: scale(1.03);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ss-amber);
  color: #0F1A33;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ss-blue);
  margin-bottom: 0.5rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.pricing-amount {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--ss-navy);
  line-height: 1;
}

.pricing-period {
  font-size: 0.85rem;
  color: var(--ss-text-muted);
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--ss-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.pricing-divider {
  height: 1px;
  background: var(--ss-border);
  margin: 1.5rem 0;
}

.pricing-features {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--ss-text-muted);
}

.pricing-features li::before {
  content: '✓';
  color: var(--ss-mint);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-features li.dimmed { opacity: 0.4; }
.pricing-features li.dimmed::before { content: '–'; color: var(--ss-text-light); }

/* --------------------------------------------------------------------------
   11. Testimonials
   -------------------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--ss-surface);
  border: 1px solid var(--ss-border);
  border-radius: var(--ss-radius-lg);
  padding: 1.75rem;
  box-shadow: var(--ss-shadow-sm);
}

.testimonial-stars {
  color: var(--ss-amber);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--ss-text);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ss-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testimonial-name { font-weight: 600; font-size: 0.88rem; color: var(--ss-navy); }
.testimonial-role { font-size: 0.78rem; color: var(--ss-text-muted); }

/* --------------------------------------------------------------------------
   12. CTA Banner
   -------------------------------------------------------------------------- */
.cta-section {
  background: linear-gradient(135deg, var(--ss-navy) 0%, var(--ss-dark-blue) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,180,216,.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   13. Contact Form
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ss-navy);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--ss-text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--ss-blue);
  border-radius: var(--ss-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--ss-navy);
  margin-bottom: 0.15rem;
}

.contact-detail-text span {
  font-size: 0.88rem;
  color: var(--ss-text-muted);
}

.contact-form-card {
  background: var(--ss-surface);
  border: 1px solid var(--ss-border);
  border-radius: var(--ss-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--ss-shadow-md);
}

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

.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ss-navy);
  margin-bottom: 0.4rem;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.6rem 0.85rem;
  font-size: 0.9375rem;
  font-family: var(--ss-font);
  color: var(--ss-text);
  background: var(--ss-surface);
  border: 1.5px solid var(--ss-border);
  border-radius: var(--ss-radius-sm);
  transition: border-color 150ms, box-shadow 150ms;
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--ss-blue);
  box-shadow: 0 0 0 3px rgba(0,103,166,.12);
}

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

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--ss-midnight);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img { height: 36px; margin-bottom: 1rem; }
.footer-brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}
.footer-brand-name span { color: var(--ss-electric); }

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  max-width: 260px;
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,.6);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.65);
  transition: color 150ms;
}
.footer-links a:hover { color: var(--ss-electric); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,.6);
}

.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: rgba(255,255,255,.8); text-decoration: none; }

/* --------------------------------------------------------------------------
   15. Utility
   -------------------------------------------------------------------------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 999px;
}
.pill--blue  { background: rgba(0,103,166,.1);  color: var(--ss-blue); }
.pill--cyan  { background: rgba(0,180,216,.1);  color: #007A9E; }
.pill--mint  { background: rgba(52,211,153,.1); color: #059669; }
.pill--amber { background: rgba(251,191,36,.15); color: #B45309; }

/* --------------------------------------------------------------------------
   16. Mobile Menu — Hamburger + Slide-in Drawer
   -------------------------------------------------------------------------- */

/* Hamburger button — hidden on desktop, shown on mobile */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 210;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--ss-navy);
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}

/* Hamburger → X animation when menu is open */
.nav-hamburger.is-active .hamburger-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-hamburger.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 26, 51, .45);
  z-index: 300;
  opacity: 0;
  transition: opacity 250ms ease;
}
.mobile-menu-overlay.is-visible {
  display: block;
  opacity: 1;
}

/* Slide-in drawer */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--ss-surface);
  z-index: 310;
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 30px rgba(0,0,0,.12);
  overflow-y: auto;
}
.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--ss-border);
}

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid var(--ss-border);
  border-radius: var(--ss-radius-sm);
  cursor: pointer;
  color: var(--ss-text-muted);
  font-size: 1rem;
  transition: background 150ms, color 150ms;
}
.mobile-menu-close:hover {
  background: var(--ss-bg);
  color: var(--ss-text);
}

.mobile-menu-links {
  list-style: none;
  margin: 0;
  padding: 0.75rem 0;
}
.mobile-menu-links li a {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ss-text);
  transition: background 150ms, color 150ms;
}
.mobile-menu-links li a:hover {
  background: var(--ss-bg);
  color: var(--ss-blue);
  text-decoration: none;
}

.mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  margin-top: auto;
  border-top: 1px solid var(--ss-border);
}

/* --------------------------------------------------------------------------
   17. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card--featured { transform: none; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 3rem 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
