/* ===== Pharma B2B — Landing Page Stylesheet ===== */

:root {
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-500: #2563eb;
  --blue-600: #1d4ed8;
  --blue-700: #1e40af;
  --blue-900: #0c1d5a;

  --red-50: #fef2f2;
  --red-100: #fee2e2;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --red-700: #b91c1c;

  --ink-900: #0b1437;
  --ink-700: #1f2a44;
  --ink-500: #475569;
  --ink-400: #64748b;
  --ink-300: #94a3b8;
  --ink-200: #cbd5e1;
  --ink-100: #e2e8f0;

  --bg: #ffffff;
  --bg-alt: #f8fafc;

  --gradient-primary: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #dc2626 100%);
  --gradient-soft: linear-gradient(135deg, #dbeafe 0%, #fee2e2 100%);
  --gradient-hero: linear-gradient(160deg, #eff6ff 0%, #ffffff 40%, #fef2f2 100%);

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(30, 64, 175, 0.08);
  --shadow-lg: 0 24px 48px rgba(30, 64, 175, 0.12);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--ink-100);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--ink-900);
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-50);
}

.brand__name {
  font-size: 18px;
  line-height: 1.2;
}

.brand__name span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-400);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  transition: color .2s;
}

.nav a:hover {
  color: var(--blue-600);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-primary);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.25);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(220, 38, 38, 0.35);
  color: #ffffff;
}

.site-header .btn--primary {
  color: #ffffff !important;
  font-weight: 700;
}

.btn--ghost {
  background: transparent;
  color: var(--blue-700);
  border: 1px solid var(--blue-200, var(--blue-100));
}

.btn--ghost:hover {
  background: var(--blue-50);
}

.btn--lg {
  padding: 16px 30px;
  font-size: 16px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 80px 0 96px;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -160px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 70%);
  filter: blur(20px);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -180px;
  left: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.16), transparent 70%);
  filter: blur(20px);
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.hero__eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red-600);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.15);
}

.hero h1 {
  margin-top: 24px;
  font-size: 52px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.02em;
}

.hero h1 .accent-blue {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h1 .accent-red {
  background: linear-gradient(135deg, var(--red-500), var(--red-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lede {
  margin-top: 20px;
  font-size: 18px;
  color: var(--ink-500);
  max-width: 540px;
}

.hero__cta {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__meta {
  margin-top: 28px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--ink-400);
  font-size: 14px;
}

.hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero__meta strong {
  color: var(--ink-700);
  font-weight: 600;
}

/* Hero visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 460px;
}

.hero__phone {
  position: relative;
  width: 280px;
  height: 560px;
  background: var(--ink-900);
  border-radius: 44px;
  box-shadow: var(--shadow-lg), 0 0 0 8px rgba(30, 64, 175, 0.06);
  padding: 14px;
  z-index: 2;
}

.hero__phone::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: var(--ink-900);
  border-radius: 0 0 14px 14px;
  z-index: 3;
}

.hero__screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #1e40af 0%, #2563eb 60%, #dc2626 130%);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  padding: 50px 18px 18px;
  color: #fff;
}

.hero__screen .app-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.95;
}

.hero__screen .greet {
  margin-top: 18px;
  font-size: 12px;
  opacity: 0.85;
}

.hero__screen h3 {
  margin-top: 2px;
  font-size: 20px;
  font-weight: 700;
}

.hero__screen .metric {
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  padding: 16px;
  backdrop-filter: blur(8px);
}

.hero__screen .metric .label {
  font-size: 11px;
  letter-spacing: 0.5px;
  opacity: 0.85;
  text-transform: uppercase;
}

.hero__screen .metric .value {
  margin-top: 4px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero__screen .metric .delta {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #bbf7d0;
}

.hero__screen .metric .delta.neg {
  color: #fecaca;
}

.hero__screen .list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero__screen .item {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.hero__screen .item .left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__screen .avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.hero__screen .item .pill {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
}

.hero__screen .item .pill.green {
  background: rgba(34, 197, 94, 0.9);
}

/* Floating info cards */
.float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.float-card .icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.float-card .text {
  font-size: 12px;
  color: var(--ink-400);
}

.float-card .text strong {
  display: block;
  font-size: 15px;
  color: var(--ink-900);
  font-weight: 700;
}

.float-card--top {
  top: 30px;
  left: 10px;
  animation: float 6s ease-in-out infinite;
}

.float-card--top .icon {
  background: var(--blue-50);
  color: var(--blue-600);
}

.float-card--bottom {
  bottom: 60px;
  right: 10px;
  animation: float 7s ease-in-out infinite reverse;
}

.float-card--bottom .icon {
  background: var(--red-50);
  color: var(--red-600);
}

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

/* ===== Section base ===== */
.section {
  padding: 96px 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section__eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--gradient-soft);
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.section__head h2 {
  margin-top: 16px;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.02em;
}

.section__head p {
  margin-top: 14px;
  color: var(--ink-500);
  font-size: 17px;
}

/* ===== Features grid ===== */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.feature__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}

.feature--blue .feature__icon {
  background: var(--blue-50);
  color: var(--blue-600);
}

.feature--red .feature__icon {
  background: var(--red-50);
  color: var(--red-600);
}

.feature h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 8px;
}

.feature p {
  font-size: 14.5px;
  color: var(--ink-500);
  line-height: 1.55;
}

/* ===== Why ===== */
.why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.why__list li {
  display: flex;
  gap: 16px;
  list-style: none;
}

.why__list .check {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--gradient-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

.why__list strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 4px;
}

.why__list span {
  font-size: 14.5px;
  color: var(--ink-500);
}

.why__visual {
  position: relative;
  background: var(--gradient-soft);
  border-radius: var(--radius-xl);
  padding: 36px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.why__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.25), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(239, 68, 68, 0.22), transparent 50%);
}

.dashboard-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 360px;
  z-index: 1;
}

.dashboard-card .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--ink-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.dashboard-card h4 {
  margin-top: 6px;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink-900);
}

.dashboard-card .bars {
  margin-top: 18px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 110px;
}

.dashboard-card .bar {
  flex: 1;
  background: var(--blue-500);
  border-radius: 6px 6px 0 0;
  position: relative;
}

.dashboard-card .bar.red {
  background: var(--red-500);
}

.dashboard-card .bar.blue {
  background: var(--blue-500);
}

.dashboard-card .legend {
  margin-top: 14px;
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--ink-500);
}

.dashboard-card .legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dashboard-card .legend i {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 3px;
}

/* ===== Stats ===== */
.stats {
  background: var(--ink-900);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.4), transparent 70%);
  filter: blur(40px);
}

.stats::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.35), transparent 70%);
  filter: blur(40px);
}

.stat {
  position: relative;
  z-index: 1;
}

.stat .num {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #93c5fd, #fca5a5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat .label {
  margin-top: 4px;
  color: var(--ink-300);
  font-size: 14.5px;
}

/* ===== CTA ===== */
.cta-final {
  text-align: center;
  background: var(--gradient-hero);
  border-radius: var(--radius-xl);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ink-100);
}

.cta-final h2 {
  font-size: 40px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  max-width: 720px;
  margin: 0 auto;
}

.cta-final p {
  margin-top: 16px;
  color: var(--ink-500);
  font-size: 17px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-final__buttons {
  margin-top: 32px;
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== FAQ ===== */
.faq {
  max-width: 760px;
  margin: 0 auto;
}

.faq details {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 12px;
  transition: border-color .2s, box-shadow .2s;
}

.faq details[open] {
  border-color: var(--blue-500);
  box-shadow: var(--shadow-md);
}

.faq summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink-900);
  font-size: 16px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: '+';
  font-size: 22px;
  color: var(--blue-600);
  transition: transform .2s;
  font-weight: 300;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq p {
  margin-top: 12px;
  color: var(--ink-500);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ===== Footer ===== */
.site-footer {
  background: #0b1437;
  color: var(--ink-300);
  padding: 56px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer__brand p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-300);
}

.footer__brand .brand {
  color: #fff;
}

.footer__brand img {
  background: rgba(255, 255, 255, 0.05);
}

.footer__col h5 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col a {
  font-size: 14px;
  color: var(--ink-300);
  transition: color .2s;
}

.footer__col a:hover {
  color: #fff;
}

.footer__bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--ink-300);
}

/* ===== Policy page ===== */
.policy-page {
  padding: 64px 0;
}

.policy-page__inner {
  max-width: 800px;
  margin: 0 auto;
}

.policy-page h1 {
  font-size: 40px;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.02em;
}

.policy-page .meta {
  margin-top: 8px;
  color: var(--ink-400);
  font-size: 14px;
}

.policy-page h2 {
  margin-top: 40px;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink-900);
  padding-bottom: 8px;
  border-bottom: 2px solid;
  border-image: var(--gradient-primary) 1;
}

.policy-page h3 {
  margin-top: 24px;
  font-size: 17px;
  font-weight: 700;
  color: var(--blue-700);
}

.policy-page p {
  margin-top: 12px;
  color: var(--ink-700);
  font-size: 15.5px;
  line-height: 1.75;
}

.policy-page ul {
  margin-top: 12px;
  padding-left: 22px;
  color: var(--ink-700);
  font-size: 15.5px;
  line-height: 1.75;
}

.policy-page ul li {
  margin-bottom: 6px;
}

.policy-page .back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--blue-700);
  font-weight: 600;
  font-size: 14px;
  transition: gap .2s;
}

.policy-page .back:hover {
  gap: 12px;
}

/* ===== Guide layout (sidebar TOC + content) ===== */
.guide-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: flex-start;
}

.guide-toc {
  position: sticky;
  top: 96px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.guide-toc h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: 14px;
}

.guide-toc ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  counter-reset: toc;
}

.guide-toc li {
  counter-increment: toc;
}

.guide-toc a {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--ink-500);
  font-weight: 500;
  transition: background .2s, color .2s;
  position: relative;
}

.guide-toc a::before {
  content: counter(toc, decimal-leading-zero) ".";
  font-size: 11px;
  color: var(--ink-300);
  margin-right: 8px;
  font-weight: 700;
}

.guide-toc a:hover {
  background: var(--blue-50);
  color: var(--blue-700);
}

.guide-content h2 {
  scroll-margin-top: 96px;
}

.guide-section {
  margin-top: 56px;
  padding-top: 8px;
}

.guide-section:first-of-type {
  margin-top: 0;
}

.guide-step {
  display: flex;
  gap: 20px;
  margin-top: 28px;
  counter-reset: step;
}

.guide-step__num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--gradient-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 17px;
  box-shadow: 0 6px 16px rgba(30, 64, 175, 0.2);
}

.guide-step__body {
  flex: 1;
}

.guide-step__body strong {
  display: block;
  font-size: 17px;
  color: var(--ink-900);
  margin-bottom: 6px;
  font-weight: 700;
}

.guide-step__body p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-500);
  line-height: 1.7;
}

.guide-card {
  margin-top: 20px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--bg-alt);
  border-left: 4px solid var(--blue-500);
}

.guide-card.tip {
  border-left-color: var(--blue-500);
}

.guide-card.warn {
  border-left-color: var(--red-500);
  background: var(--red-50);
}

.guide-card .label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-700);
  margin-bottom: 10px;
}

.guide-card.warn .label {
  background: var(--red-100);
  color: var(--red-700);
}

.guide-card p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-700);
  line-height: 1.65;
}

.kbd {
  display: inline-block;
  padding: 2px 8px;
  background: #fff;
  border: 1px solid var(--ink-200);
  border-bottom-width: 2px;
  border-radius: 6px;
  font-family: 'SF Mono', Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  color: var(--ink-700);
  font-weight: 600;
}

.guide-feature-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.guide-feature {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  padding: 18px;
}

.guide-feature .badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--blue-50);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 10px;
}

.guide-feature.red .badge {
  background: var(--red-50);
  color: var(--red-600);
}

.guide-feature strong {
  display: block;
  font-size: 15px;
  color: var(--ink-900);
  margin-bottom: 4px;
}

.guide-feature span {
  font-size: 13.5px;
  color: var(--ink-500);
  line-height: 1.5;
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero { padding: 56px 0 72px; }
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__lede { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
  .hero__meta { justify-content: center; }
  .hero h1 { font-size: 38px; }
  .section { padding: 72px 0; }
  .section__head h2 { font-size: 30px; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .why { grid-template-columns: 1fr; gap: 40px; }
  .stats { grid-template-columns: repeat(2, 1fr); padding: 40px 28px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .guide-feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .nav { display: none; }
  .hero { padding: 40px 0 60px; }
  .hero h1 {
    font-size: 30px;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .hero__visual { min-height: 380px; margin-top: 24px; }
  .hero__phone { width: 220px; height: 440px; }
  .float-card { display: none; }
  .hero__cta { flex-direction: column; align-items: stretch; width: 100%; }
  .hero__cta .btn { width: 100%; }
  .hero__lede { font-size: 16px; }
  .hero__meta { gap: 14px 20px; font-size: 13px; }
  .section { padding: 56px 0; }
  .section__head h2 { font-size: 26px; word-break: break-word; }
  .features { grid-template-columns: 1fr; gap: 14px; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .stats { grid-template-columns: 1fr 1fr; gap: 24px; padding: 36px 24px; }
  .stat .num { font-size: 34px; }
  .cta-final { padding: 56px 24px; }
  .cta-final h2 { font-size: 26px; word-break: break-word; }
  .cta-final__buttons { flex-direction: column; width: 100%; }
  .cta-final__buttons .btn { width: 100%; }
  .policy-page h1 { font-size: 28px; word-break: break-word; }
  .policy-page { padding: 40px 0; }
  .why { gap: 32px; }
  .why__visual { padding: 24px; min-height: auto; }
  .dashboard-card { padding: 18px; }
  .guide-layout { grid-template-columns: 1fr; gap: 24px; }
  .guide-toc { position: static; max-height: none; }
  .guide-feature-grid { grid-template-columns: 1fr; }
}
