/* RUTTENS+ v2 — Mobile-First Stylesheet
   Brand: #37B5FF (sky-blue) / #000 (black) / #FFF (white)
   Responsive: Android + iOS + Desktop
   ========================================================= */

/* ─── Reset & Root ─── */
:root {
  --sky:     #37B5FF;
  --sky-dim: rgba(55,181,255,0.12);
  --black:   #000000;
  --white:   #FFFFFF;
  --grey-dark: #111111;
  --grey-mid:  #444444;
  --grey-light:#6B7280;
  --bg:      #FFFFFF;
  --card:    #F8F9FA;
  --border:  #E5E7EB;
  --radius:  8px;
  --radius-lg:14px;
  --shadow:  0 2px 16px rgba(0,0,0,0.08);
  --nav-h:   64px;
  --max-w:   1100px;
  --font:    'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sky); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* ─── Typography ─── */
h1 { font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.1rem, 3vw, 1.5rem); font-weight: 700; line-height: 1.25; }
h4 { font-size: 1rem; font-weight: 700; }
p  { font-size: 1rem; line-height: 1.7; color: var(--grey-mid); }

/* ─── Logo ─── */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img {
  height: 36px;
  width: auto;
  display: block;
}
/* Fallback text logo */
.logo-text {
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--black);
  display: inline-flex;
  align-items: baseline;
  gap: 0;
}
.logo-text .plus {
  color: var(--sky);
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1;
  margin-left: 1px;
  vertical-align: top;
  margin-top: -3px;
}
.footer .logo img { height: 32px; }

/* ─── Navigation ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-links {
  display: none;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  color: var(--grey-mid);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--black); }

/* ─── Dropdown nav ─── */
.nav-dropdown { position: relative; list-style: none; }
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  color: var(--grey-mid);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.dropdown-toggle:hover { color: var(--black); text-decoration: none; }
.dropdown-toggle .caret { font-size: 0.65rem; transition: transform 0.2s; }
.nav-dropdown:hover .caret { transform: rotate(180deg); }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  min-width: 200px;
  padding: 8px 0;
  z-index: 200;
  list-style: none;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  color: var(--grey-mid);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.dropdown-menu li a:hover { background: var(--sky-dim); color: var(--black); }
/* Mobile: show dropdown items inline */
.mob-section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-light);
  padding: 14px 0 4px;
  border-bottom: none !important;
  display: block;
}
.mobile-menu a.mob-sub {
  padding-left: 16px;
  font-size: 1rem !important;
  font-weight: 500 !important;
  color: var(--grey-mid) !important;
}

.nav-cta {
  display: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: all 0.3s;
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 99;
  padding: 24px 20px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--black);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  display: block;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mob-cta {
  margin-top: 16px;
  background: var(--sky);
  color: var(--white) !important;
  text-align: center;
  border-radius: var(--radius);
  padding: 16px !important;
  border-bottom: none !important;
  font-size: 1rem !important;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .hamburger { display: none; }
  .mobile-menu { display: none !important; }
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--sky);
  color: var(--white);
}
.btn-primary:hover { background: #1fa3f0; text-decoration: none; color: var(--white); }

.btn-secondary {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.btn-secondary:hover { background: var(--black); color: var(--white); text-decoration: none; }

.btn-ghost {
  background: transparent;
  color: var(--sky);
  border: 2px solid var(--sky);
}
.btn-ghost:hover { background: var(--sky); color: var(--white); text-decoration: none; }

.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }

/* ─── Layout helpers ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.section    { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.75); }
.section-sky  { background: var(--sky); color: var(--white); }
.section-grey { background: var(--card); }

.text-center { text-align: center; }
.text-sky    { color: var(--sky); }
.text-muted  { color: var(--grey-light); }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 12px;
}
.eyebrow-dark { color: rgba(255,255,255,0.6); }

/* ─── Grid helpers ─── */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-5 { display: grid; grid-template-columns: 1fr; gap: 20px; }

@media (min-width: 600px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-5 { grid-template-columns: repeat(5, 1fr); }
}

/* ─── Cards ─── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover { box-shadow: var(--shadow); border-color: var(--sky); }

.card-dark {
  background: #111;
  border: 1px solid #222;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  color: var(--white);
}
.card-dark p { color: rgba(255,255,255,0.7); }
.card-dark:hover { border-color: var(--sky); }

/* ─── Hero Section ─── */
.hero {
  padding: 80px 0 64px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(55,181,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { max-width: 700px; }
.hero h1 { margin-bottom: 20px; }
.hero-sub {
  font-size: 1.15rem;
  color: var(--grey-mid);
  margin-bottom: 32px;
  max-width: 560px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.proof-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grey-mid);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.chip .dot {
  width: 6px;
  height: 6px;
  background: var(--sky);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── Tier / Service Cards ─── */
.tier-card {
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 2px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
}
.tier-card:hover { border-color: var(--sky); box-shadow: 0 4px 24px rgba(55,181,255,0.12); }
.tier-card.featured { border-color: var(--sky); background: linear-gradient(135deg, #f0f9ff 0%, var(--white) 100%); }
.tier-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 4px;
}
.tier-badge.free { background: var(--sky); }
.tier-badge.popular { background: var(--sky); }
.tier-name { font-size: 1.4rem; font-weight: 900; letter-spacing: -0.01em; }
.tier-name .plus { color: var(--sky); }
.tier-price { font-size: 0.9rem; color: var(--grey-mid); }
.tier-price strong { font-size: 1.5rem; color: var(--black); font-weight: 900; }
.tier-desc { font-size: 0.9rem; color: var(--grey-mid); line-height: 1.6; }
.tier-features { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--grey-mid);
  line-height: 1.4;
}
.tier-features li::before {
  content: '✓';
  color: var(--sky);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── ICP Section ─── */
.icp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  border-top: 3px solid var(--sky);
}
.icp-role { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sky); margin-bottom: 6px; }
.icp-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.icp-pain { font-size: 0.87rem; color: var(--grey-mid); font-style: italic; margin-bottom: 12px; border-left: 3px solid var(--sky); padding-left: 10px; }
.icp-meta { font-size: 0.8rem; color: var(--grey-light); }

/* ─── Pillar Grid ─── */
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.pillar-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--sky);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
}
.pillar-body h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.pillar-body p  { font-size: 0.82rem; color: var(--grey-mid); line-height: 1.5; margin: 0; }

/* ─── Testimonial ─── */
.tcard {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.tcard blockquote { font-size: 0.95rem; line-height: 1.7; color: var(--grey-mid); margin-bottom: 16px; font-style: italic; }
.tcard cite { font-size: 0.82rem; font-weight: 700; color: var(--black); font-style: normal; }
.tcard cite span { color: var(--grey-light); font-weight: 400; }

/* ─── Stats Bar ─── */
.stats-bar { display: flex; flex-wrap: wrap; gap: 32px; align-items: center; justify-content: center; }
.stat { text-align: center; }
.stat .num { font-size: 2.2rem; font-weight: 900; color: var(--sky); line-height: 1; }
.stat .lbl { font-size: 0.8rem; color: var(--grey-mid); margin-top: 4px; }
/* Dark section overrides */
.section-dark .stat .num { color: var(--sky); }
.section-dark .stat .lbl { color: rgba(255,255,255,0.75); }

/* ─── Contact / Form ─── */
.form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 700; margin-bottom: 6px; color: var(--black); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 1rem;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(55,181,255,0.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer; }

.cal-embed {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 600px;
}
.cal-embed iframe { width: 100%; min-height: 600px; border: none; display: block; }

/* ─── Footer ─── */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
.footer .logo { color: var(--white); }
.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.5); margin-top: 8px; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.6); font-size: 0.88rem; text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--sky); }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-bottom a:hover { color: var(--sky); }

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* ─── Sticky mobile CTA bar ─── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  display: flex;
  gap: 10px;
  z-index: 90;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.sticky-cta .btn { flex: 1; text-align: center; }
@media (min-width: 768px) { .sticky-cta { display: none; } }

/* ─── Page hero (inner pages) ─── */
.page-hero {
  background: var(--black);
  color: var(--white);
  padding: 64px 0 56px;
}
.page-hero h1 { color: var(--white); }
.page-hero p  { color: rgba(255,255,255,0.7); max-width: 600px; margin-top: 16px; }
.page-hero .eyebrow { color: var(--sky); }

/* ─── Comparison table ─── */
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 600px; font-size: 0.87rem; }
.compare-table th { background: var(--black); color: var(--white); padding: 12px 14px; text-align: left; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em; }
.compare-table th:first-child { border-radius: var(--radius) 0 0 0; }
.compare-table th:last-child  { border-radius: 0 var(--radius) 0 0; }
.compare-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); vertical-align: top; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--sky-dim); }
.compare-table .check { color: var(--sky); font-weight: 700; }
.compare-table .dash  { color: var(--grey-light); }
.compare-table .hl { background: rgba(55,181,255,0.05); }

/* ─── Pain bar ─── */
.pain-bar { background: var(--black); padding: 20px 0; }
.pain-inner { display: flex; flex-wrap: wrap; gap: 0; justify-content: center; }
.pain-item { padding: 16px 24px; border-right: 1px solid rgba(255,255,255,0.1); text-align: center; flex: 1; min-width: 200px; }
.pain-item:last-child { border-right: none; }
.pain-item p { font-size: 0.88rem; color: rgba(255,255,255,0.75); font-style: italic; margin: 0; }
.pain-item strong { color: var(--sky); font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; display: block; margin-bottom: 4px; }

/* ─── CTA section ─── */
.cta-section { background: var(--sky); padding: 72px 0; text-align: center; }
.cta-section h2 { color: var(--white); }
.cta-section p  { color: rgba(255,255,255,0.85); max-width: 500px; margin: 12px auto 28px; }
.cta-section .btn-secondary { border-color: var(--white); color: var(--white); }
.cta-section .btn-secondary:hover { background: var(--white); color: var(--sky); }

/* ─── Badges ─── */
.badge { display: inline-block; padding: 4px 10px; border-radius: 100px; font-size: 0.75rem; font-weight: 700; }
.badge-sky   { background: var(--sky-dim); color: var(--sky); }
.badge-black { background: var(--black); color: var(--white); }

/* ─── Divider ─── */
.divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }

/* ─── Utility ─── */
.mt-4  { margin-top: 16px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4  { margin-bottom: 16px; }
.mb-8  { margin-bottom: 32px; }
.gap-8 { gap: 32px; }
.fw-bold { font-weight: 700; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }

/* ─── Safe area for iOS notch ─── */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .sticky-cta {
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
  }
}

/* ─── Current page active state ─── */
.nav-links a[aria-current="page"] {
  color: var(--sky);
  font-weight: 700;
}

/* ─── About page: single column ─── */
.about-layout {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.about-photo {
  width: 100%;
  max-width: 360px;
  border-radius: 14px;
  border: 1px solid var(--border);
}

/* ─── Proof chips: single row ─── */
.proof-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.proof-chips .chip {
  font-size: 0.78rem;
  padding: 5px 12px;
}

/* ─── Pain bar: with icons ─── */
.pain-item .pain-icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 6px;
}

/* ─── Solution cards (simplified home grid) ─── */
.solution-card {
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 2px solid var(--border);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.solution-card:hover { border-color: var(--sky); box-shadow: 0 4px 24px rgba(55,181,255,0.12); }
.solution-card.featured { border-color: var(--sky); background: linear-gradient(135deg,#f0f9ff 0%,#fff 100%); }
.solution-for { font-size: 0.75rem; font-weight: 700; color: var(--sky); text-transform: uppercase; letter-spacing: 0.08em; }
.solution-name { font-size: 1.2rem; font-weight: 900; letter-spacing: -0.01em; }
.solution-price { font-size: 0.85rem; color: var(--grey-mid); font-weight: 600; }
.solution-desc { font-size: 0.88rem; color: var(--grey-mid); line-height: 1.6; flex: 1; }

/* ─── Pain points page ─── */
.pain-card {
  padding: 24px;
  border-left: 4px solid var(--sky);
  background: var(--card);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 16px;
}
.pain-card h4 { font-size: 1rem; margin-bottom: 6px; }
.pain-card p { font-size: 0.88rem; margin: 0; }
