/* =========================================================
   とっとりITおたすけ係 - Mobile-First Site
   Base: 360px+ / Tablet: 640px+ / Desktop: 1000px+
   ========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 68px;
}
body {
  margin: 0;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', Meiryo, sans-serif;
  font-size: 17px;
  line-height: 1.85;
  color: #1A2332;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: 72px; /* reserve space for bottom sticky CTA */
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }
ul { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5, p { margin: 0; }

:root {
  --navy: #0B2447;
  --navy-2: #19376D;
  --navy-deep: #061A36;
  --orange: #F28B2A;
  --orange-2: #FFA94D;
  --orange-soft: #FFF4E6;
  --text: #1A2332;
  --text-soft: #56617A;
  --bg-soft: #F5F7FA;
  --bg-blue: #EAF1FB;
  --border: #E4E9F2;
  --shadow-sm: 0 4px 14px rgba(11, 36, 71, 0.08);
  --shadow-md: 0 10px 30px rgba(11, 36, 71, 0.12);
  --shadow-lg: 0 20px 60px rgba(11, 36, 71, 0.18);
  --radius: 14px;
  --radius-lg: 20px;
  --nav-h: 64px;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

/* ---------- Section ---------- */
section {
  padding: 60px 0;
  position: relative;
}
section.alt { background: var(--bg-soft); }

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section-head {
  text-align: center;
  margin-bottom: 36px;
}
h2.section-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.section-lead {
  font-size: 16px;
  color: var(--text-soft);
  margin-top: 12px;
  line-height: 1.9;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  border-radius: 999px;
  padding: 16px 28px;
  font-size: 17px;
  min-height: 52px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 20px rgba(242,139,42,0.35);
}
.btn-primary:active { transform: translateY(1px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-outline {
  background: #fff;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-block { width: 100%; }
.btn-lg { padding: 18px 32px; font-size: 18px; min-height: 58px; }
.btn svg { width: 20px; height: 20px; }

/* ---------- Top Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 38px; }
.nav-menu { display: none; }
.nav-cta-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 999px;
  min-height: 40px;
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  margin-right: -10px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Drawer menu */
.drawer {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: #fff;
  z-index: 39;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: transform .25s ease, opacity .25s ease;
  overflow-y: auto;
  padding: 20px 20px 140px;
}
.drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.drawer a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6px;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
}
.drawer a::after {
  content: '→';
  color: var(--orange);
  font-weight: 900;
  font-size: 20px;
}
.drawer .drawer-cta {
  margin-top: 22px;
  background: var(--orange);
  color: #fff;
  justify-content: center;
  padding: 18px;
  border-radius: 14px;
  border-bottom: 0;
  min-height: 60px;
  font-size: 18px;
}
.drawer .drawer-cta::after { display: none; }
.drawer .drawer-info {
  margin-top: 28px;
  padding: 18px;
  background: var(--bg-soft);
  border-radius: 14px;
  font-size: 14px;
  color: var(--text-soft);
}
.drawer .drawer-info a {
  padding: 6px 0;
  font-size: 15px;
  border-bottom: 0;
  display: inline-flex;
  justify-content: flex-start;
}
.drawer .drawer-info a::after { display: none; }

/* ---------- Sticky Bottom CTA (mobile only) ---------- */
.bottom-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 45;
  background: #fff;
  padding: 10px 14px;
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 20px rgba(11,36,71,0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.bottom-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  font-size: 15px;
  padding: 12px 10px;
  border-radius: 999px;
  min-height: 50px;
}
.bottom-cta .bc-call {
  background: #fff;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.bottom-cta .bc-form {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 6px 14px rgba(242,139,42,0.35);
}
.bottom-cta svg { width: 18px; height: 18px; }

/* ---------- Hero ---------- */
.hero {
  padding: 28px 0 60px;
  background: linear-gradient(180deg, #F5F7FA 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(242,139,42,0.18), transparent 70%);
  border-radius: 50%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 2px solid var(--navy);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
  font-size: 13px;
  position: relative;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: .5; }
}
.hero h1 {
  font-size: 34px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 18px;
  position: relative;
}
.hero h1 .accent {
  background: linear-gradient(transparent 65%, rgba(242,139,42,0.35) 65%);
  color: var(--orange);
}
.hero-sub {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 26px;
  position: relative;
}
.hero-sub strong { color: var(--navy); font-weight: 900; }
.hero-visual {
  margin: 0 -20px 26px;
  position: relative;
}
.hero-visual img { width: 100%; }
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.hero-checks {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.hero-checks div { display: flex; align-items: center; gap: 6px; }
.hero-checks .c {
  width: 20px; height: 20px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px;
  font-weight: 900;
}

/* Hero stats */
.hero-stats {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 10px;
  box-shadow: var(--shadow-sm);
}
.hero-stat {
  text-align: center;
  padding: 10px 4px;
  border-right: 1px solid var(--border);
}
.hero-stat:nth-child(2n) { border-right: 0; }
.hero-stat:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
.hero-stat .k {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1.1;
}
.hero-stat .k small { font-size: 12px; color: var(--text-soft); font-weight: 700; margin-left: 2px; }
.hero-stat .l {
  font-size: 12px;
  color: var(--navy);
  font-weight: 800;
  margin-top: 4px;
  line-height: 1.4;
}

/* ---------- Horizontal scroll rail (mobile) ---------- */
.hscroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 82%;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 20px 20px;
  margin: 0 -20px;
  scrollbar-width: none;
}
.hscroll::-webkit-scrollbar { display: none; }
.hscroll > * { scroll-snap-align: start; }
.hscroll-hint {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 700;
}
.hscroll-hint::before { content: '👉'; }

/* ---------- Problems ---------- */
.problem-card {
  background: #fff;
  border-top: 5px solid var(--orange);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
}
.problem-tag {
  display: inline-block;
  background: var(--bg-blue);
  color: var(--navy);
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 13px;
  margin-bottom: 12px;
}
.problem-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 10px;
}
.problem-card p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.85;
}
.problem-list {
  display: grid;
  gap: 14px;
}
.problem-conclusion {
  margin-top: 28px;
  background: var(--orange);
  color: #fff;
  text-align: center;
  padding: 22px 18px;
  border-radius: var(--radius);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.6;
  box-shadow: 0 12px 24px rgba(242,139,42,0.25);
}
.problem-conclusion .arrow {
  display: inline-block;
  background: #fff;
  color: var(--orange);
  padding: 2px 10px;
  border-radius: 6px;
  margin-right: 6px;
  font-size: 16px;
}

/* ---------- Why Us ---------- */
.why-list { display: grid; gap: 14px; }
.why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--orange);
}
.why-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  color: var(--orange);
  font-size: 34px;
  line-height: 1;
  margin-bottom: 10px;
}
.why-card h3 {
  font-size: 20px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 10px;
}
.why-card p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.9;
}
.why-card .kicker {
  display: inline-block;
  background: var(--bg-blue);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  margin-top: 10px;
}

/* ---------- About ---------- */
.about-box {
  background: var(--navy);
  color: #fff;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.about-box::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: rgba(242,139,42,0.18);
  border-radius: 50%;
}
.about-box h3 {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 16px;
  position: relative;
}
.about-box p {
  font-size: 15px;
  line-height: 1.9;
  color: #D8E3F3;
  margin-bottom: 22px;
  position: relative;
}
.about-meta {
  display: grid;
  gap: 12px;
  position: relative;
}
.about-meta li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.7;
}
.about-meta li strong { color: var(--orange-2); font-weight: 800; }
.about-meta li::before {
  content: '';
  width: 4px;
  min-width: 4px;
  height: 18px;
  background: var(--orange);
  border-radius: 2px;
  margin-top: 4px;
}

.features { display: grid; gap: 12px; margin-top: 22px; }
.feature {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.feature .num {
  font-family: 'Outfit', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  text-align: center;
}
.feature h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 2px;
}
.feature p {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.6;
}

/* ---------- Pillars (4 services) ---------- */
.pillar {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.pillar-head {
  background: var(--navy);
  color: #fff;
  padding: 24px 18px 20px;
  text-align: center;
  position: relative;
}
.pillar-head::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 4px;
  background: var(--orange);
}
.pillar-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  color: var(--orange);
  font-size: 28px;
  line-height: 1;
  margin-bottom: 8px;
}
.pillar img.pillar-icon {
  width: 64px; height: 64px;
  margin: 0 auto 10px;
}
.pillar-head h3 {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.4;
}
.pillar-body {
  padding: 20px 18px 24px;
  flex: 1;
}
.pillar-body ul li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 8px;
}
.pillar-body ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

/* ---------- Use Cases ---------- */
.case-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  overflow: hidden;
  min-height: 100%;
}
.case-head {
  padding: 18px 20px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}
.case-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: var(--orange);
  border-radius: 10px;
  display: grid; place-items: center;
  font-weight: 900;
  font-size: 18px;
  color: #fff;
}
.case-head h3 { font-size: 16px; font-weight: 900; line-height: 1.4; }
.case-body { padding: 20px; }
.case-body .label {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.case-body p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 12px;
}
.case-body ul li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 6px;
}
.case-body ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 2px;
  background: var(--orange);
}

/* ---------- Coverage ---------- */
.coverage { display: grid; gap: 14px; }
.scope {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.scope-head {
  padding: 18px;
  text-align: center;
  color: #fff;
}
.scope-head h3 { font-size: 20px; font-weight: 900; margin-bottom: 2px; }
.scope-head p { font-size: 13px; opacity: 0.9; }
.scope.yes .scope-head { background: #1E7D50; }
.scope.est .scope-head { background: var(--orange); }
.scope.no .scope-head { background: #B83333; }
.scope-body { padding: 18px 20px; background: #FAFBFE; }
.scope.yes .scope-body { background: #ECF8F1; }
.scope.est .scope-body { background: #FFF4E6; }
.scope.no .scope-body { background: #FCEDED; }
.scope-body ul li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  border-bottom: 1px dashed rgba(11,36,71,0.1);
}
.scope-body ul li:last-child { border-bottom: 0; }
.scope-body ul li::before {
  position: absolute;
  left: 0; top: 10px;
  font-weight: 900;
  font-size: 14px;
}
.scope.yes ul li::before { content: '✓'; color: #1E7D50; }
.scope.est ul li::before { content: '¥'; color: var(--orange); }
.scope.no ul li::before { content: '×'; color: #B83333; }
.coverage-note {
  margin-top: 22px;
  background: var(--orange-soft);
  border-left: 5px solid var(--orange);
  padding: 16px 18px;
  border-radius: 8px;
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.85;
}

/* ---------- Pricing ---------- */
.pricing-block { margin-bottom: 36px; }
.pricing-block:last-child { margin-bottom: 0; }
.pricing-block h3 {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.pricing-block h3 .tag {
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 6px;
}
.pricing-block h3 .tag.orange { background: var(--orange); }
.pricing-block .block-lead {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 20px;
}

/* Plan cards */
.plans { display: grid; gap: 14px; }
.plan {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "name price"
    "meta meta"
    "reco reco";
  gap: 4px 14px;
  align-items: baseline;
}
.plan.featured {
  border-color: var(--orange);
  background: linear-gradient(180deg, #FFF9F1, #fff);
}
.plan.featured::before {
  content: 'おすすめ';
  position: absolute;
  top: -12px; left: 16px;
  background: var(--orange);
  color: #fff;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.plan-name { grid-area: name; font-size: 18px; font-weight: 900; color: var(--navy); }
.plan-price {
  grid-area: price;
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1.1;
  text-align: right;
}
.plan-price small { font-size: 13px; color: var(--text-soft); font-weight: 700; margin-left: 2px; }
.plan-meta {
  grid-area: meta;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
  padding-top: 12px;
  margin-top: 6px;
  border-top: 1px dashed var(--border);
}
.plan-meta strong { color: var(--navy); font-size: 15px; display: block; margin-bottom: 2px; }
.plan-reco {
  grid-area: reco;
  margin-top: 8px;
  font-size: 13px;
  color: var(--navy);
  font-weight: 700;
  background: var(--bg-blue);
  border-radius: 6px;
  padding: 8px 12px;
  line-height: 1.5;
}
.plan.featured .plan-reco { background: #FFE7CF; color: #8A4A0E; }

/* Ticket pack rows */
.ticket-card {
  background: #fff;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  padding: 20px;
  margin-bottom: 14px;
}
.ticket-card h4 {
  background: var(--orange);
  color: #fff;
  padding: 12px 16px;
  margin: -20px -20px 16px;
  border-radius: var(--radius) var(--radius) 0 0;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
}
.ticket-card.navy-head h4 { background: var(--navy); }
.conv-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 15px;
}
.conv-row:last-child { border-bottom: 0; }
.conv-row .amount {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  color: var(--navy);
  font-size: 20px;
}
.conv-row .yen { color: var(--text-soft); font-size: 13px; }
.ticket-list li {
  padding: 9px 0 9px 24px;
  position: relative;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px dashed var(--border);
}
.ticket-list li::before {
  content: '';
  position: absolute;
  left: 4px; top: 15px;
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 2px;
}
.ticket-list li:last-child { border-bottom: 0; }
.pack-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 14px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border);
}
.pack-row:last-child { border-bottom: 0; }
.pack-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
}
.pack-name small {
  color: var(--text-soft);
  font-size: 12px;
  display: block;
  font-weight: 600;
  margin-top: 2px;
}
.pack-tickets {
  grid-column: 1 / 2;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--text-soft);
  font-size: 14px;
}
.pack-price {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  color: var(--orange);
  font-size: 22px;
  text-align: right;
  align-self: center;
}
.pack-price del { color: #B6BECB; font-weight: 600; display: block; font-size: 13px; }
.badge-off {
  display: inline-block;
  background: #FFE4C4;
  color: #B0540E;
  font-weight: 800;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 4px;
  vertical-align: middle;
}
.note {
  font-size: 13px;
  color: var(--text-soft);
  margin-top: 12px;
  line-height: 1.75;
}

/* initial setup */
.init-grid { display: grid; gap: 10px; margin-bottom: 20px; }
.init-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
}
.init-num {
  background: var(--navy);
  color: #fff;
  width: 36px; height: 36px;
  border-radius: 8px;
  display: grid; place-items: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 15px;
}
.init-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 2px;
}
.init-card p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.6;
}
.init-table {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
  width: 100%;
  border-collapse: collapse;
}
.init-table th, .init-table td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  vertical-align: middle;
}
.init-table th {
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
}
.init-table td.price {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 17px;
  color: var(--orange);
  white-space: nowrap;
}
.init-table td.old {
  color: #B6BECB;
  text-decoration: line-through;
  font-size: 13px;
  white-space: nowrap;
}

/* ---------- Compare (card style for mobile-first) ---------- */
.compare-cards { display: grid; gap: 16px; }
.cmp-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border);
}
.cmp-card-head {
  padding: 22px 20px 18px;
  color: #fff;
  text-align: center;
}
.cmp-fixed .cmp-card-head { background: linear-gradient(135deg, var(--navy), var(--navy-2)); }
.cmp-ticket .cmp-card-head { background: linear-gradient(135deg, var(--orange), #E87B1A); }
.cmp-label {
  display: inline-block;
  background: rgba(255,255,255,0.22);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.cmp-card-head h3 {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 4px;
}
.cmp-card-head p { font-size: 14px; opacity: 0.9; font-weight: 700; }
.cmp-dl { padding: 4px 18px 18px; }
.cmp-row { padding: 14px 0; border-bottom: 1px dashed var(--border); }
.cmp-row:last-child { border-bottom: 0; }
.cmp-row dt {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cmp-row dt::before {
  content: '';
  width: 4px; height: 14px;
  border-radius: 2px;
}
.cmp-fixed .cmp-row dt::before { background: var(--navy); }
.cmp-ticket .cmp-row dt::before { background: var(--orange); }
.cmp-row dd {
  margin: 0;
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  padding-left: 12px;
}
.cmp-row.highlight {
  background: var(--bg-soft);
  margin: 4px -18px 0;
  padding: 14px 18px;
  border-bottom: 0;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.cmp-fixed .cmp-row.highlight { background: var(--bg-blue); }
.cmp-ticket .cmp-row.highlight { background: #FFF1DF; }

/* ---------- Flow / Steps ---------- */
.steps {
  display: grid;
  gap: 16px;
  position: relative;
}
.step {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 14px;
  align-items: start;
  position: relative;
}
.step::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 14px solid var(--orange);
  z-index: 2;
}
.step:last-child::after { display: none; }
.step-side { text-align: center; }
.step-label {
  background: var(--navy);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  display: inline-block;
  font-size: 10px;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}
.step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.step h4 {
  font-size: 19px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 4px;
}
.step .duration {
  font-size: 12px;
  color: var(--text-soft);
  font-weight: 700;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--border);
  display: inline-block;
  padding-right: 8px;
}
.step .tasks {
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 8px;
}
.step .sub {
  margin-top: 6px;
  text-align: left;
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.7;
  padding-top: 8px;
  border-top: 1px dashed var(--border);
}
.step .sub li { position: relative; padding-left: 14px; }
.step .sub li::before {
  content: '●';
  color: var(--orange);
  position: absolute;
  left: 0; top: 0;
  font-size: 8px;
  line-height: 2;
}

/* ---------- Effects ---------- */
.effects { display: grid; gap: 14px; }
.effect {
  display: grid;
  grid-template-columns: 88px 1fr;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.effect-tag {
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 900;
  font-size: 15px;
  padding: 18px 4px;
  line-height: 1.3;
}
.effect-body { padding: 18px 20px; }
.effect-body h4 {
  font-size: 16px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.5;
}
.effect-body p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.8;
}

/* ---------- Deliverables ---------- */
.deliver-list { display: grid; gap: 10px; }
.deliver-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.deliver-item .ic {
  width: 48px; height: 48px;
  background: var(--bg-blue);
  color: var(--navy);
  border-radius: 10px;
  display: grid; place-items: center;
  font-weight: 900;
  font-size: 18px;
}
.deliver-item h4 {
  font-size: 16px;
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 2px;
}
.deliver-item p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.65;
}

.deliver-sample {
  margin-top: 20px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.deliver-sample-head {
  background: var(--navy);
  color: #fff;
  padding: 14px 18px;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.deliver-sample-head .month {
  background: var(--orange);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
}
.deliver-sample-body { padding: 18px; }
.deliver-sample-body dl {
  display: grid;
  gap: 4px;
  margin: 0 0 14px;
}
.deliver-sample-body dt {
  color: var(--navy);
  font-weight: 800;
  font-size: 13px;
  border-left: 3px solid var(--orange);
  padding-left: 8px;
  margin-top: 10px;
}
.deliver-sample-body dd { margin: 0; font-size: 14px; color: var(--text); line-height: 1.7; }
.deliver-sample-bar {
  height: 10px;
  background: var(--bg-soft);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 8px;
}
.deliver-sample-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  border-radius: 999px;
  width: 62%;
}
.deliver-sample-note { font-size: 12px; color: var(--text-soft); margin-top: 8px; line-height: 1.6; }

/* ---------- Area ---------- */
.area-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 22px;
}
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.area-chips span {
  background: #fff;
  border: 2px solid var(--border);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 999px;
}
.area-chips span.strong {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 10px; }
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] { border-color: var(--orange); }
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 18px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.55;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .q {
  background: var(--navy);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  width: 30px; height: 30px;
  min-width: 30px;
  border-radius: 6px;
  display: grid; place-items: center;
  font-size: 15px;
}
.faq-item summary .chev {
  margin-left: auto;
  width: 22px; height: 22px;
  color: var(--orange);
  transition: transform .2s;
  flex-shrink: 0;
}
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-answer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0 18px 20px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.85;
}
.faq-answer .a {
  background: var(--orange);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  width: 30px; height: 30px;
  min-width: 30px;
  border-radius: 6px;
  display: grid; place-items: center;
  font-size: 15px;
}

/* ---------- Policy (card list style for mobile) ---------- */
.policy-list { display: grid; gap: 10px; }
.policy-item {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.policy-item dt {
  background: var(--bg-blue);
  color: var(--navy);
  font-weight: 800;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 8px;
}
.policy-item dd {
  margin: 0;
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
}

/* ---------- Company card ---------- */
.company-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 24px 22px;
  margin-top: 20px;
}
.company-card dt {
  color: var(--navy);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.company-card dd {
  margin: 0 0 14px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
}
.company-card dd:last-child { margin-bottom: 0; }
.company-card a { color: var(--navy); font-weight: 800; }

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--navy);
  color: #fff;
  padding: 60px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(242,139,42,0.3), transparent 70%);
  border-radius: 50%;
}
.final-cta::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(242,139,42,0.2), transparent 70%);
  border-radius: 50%;
}
.final-cta .inner { position: relative; z-index: 1; }
.final-cta .eyebrow { background: var(--orange); }
.final-cta h2 {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 16px;
}
.final-cta p {
  font-size: 15px;
  color: #D8E3F3;
  margin-bottom: 28px;
  line-height: 1.95;
}
.final-cta .actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.final-cta .actions .btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.final-cta .contact-info {
  margin-top: 36px;
  display: grid;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.final-cta .contact-info a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  padding: 10px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
}
.final-cta .contact-info .icon {
  width: 36px; height: 36px;
  background: var(--orange);
  border-radius: 8px;
  display: grid; place-items: center;
  font-size: 12px;
  font-weight: 900;
  color: #fff;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-deep);
  color: #D8E3F3;
  padding: 40px 0 24px;
  font-size: 14px;
}
.footer-grid { display: grid; gap: 24px; margin-bottom: 26px; }
.footer-grid h5 {
  font-size: 15px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 10px;
}
.footer-grid p { line-height: 1.8; color: #A4B4CD; }
.footer-grid a { color: #D8E3F3; font-weight: 600; }
.footer-grid a:hover { color: var(--orange); }
.footer-grid ul li { padding: 3px 0; }
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #A4B4CD;
  font-size: 12px;
  line-height: 1.7;
}

/* ---------- TL;DR Summary Block (Mobile-first) ---------- */
.tldr {
  padding: 40px 0 10px;
  background: #fff;
}
.tldr-card {
  background: linear-gradient(135deg, #F5F7FA, #fff);
  border: 2px solid var(--border);
  border-left: 6px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.tldr-card::before {
  content: 'SUMMARY';
  position: absolute;
  top: -12px;
  left: 18px;
  background: var(--orange);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.12em;
  padding: 5px 12px;
  border-radius: 999px;
}
.tldr-card h2 {
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tldr-card h2::before {
  content: 'Q.';
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  color: var(--orange);
  font-size: 22px;
}
.tldr-card p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.95;
  margin: 0;
}
.tldr-card p strong { color: var(--navy); font-weight: 900; }
.tldr-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 2px dashed var(--border);
}
.tldr-fact {
  text-align: center;
  padding: 6px;
}
.tldr-fact .label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: var(--text-soft);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.tldr-fact .value {
  display: block;
  font-size: 13px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.4;
}

@media (min-width: 640px) {
  .tldr { padding: 50px 0 10px; }
  .tldr-card { padding: 30px 28px; }
  .tldr-card h2 { font-size: 20px; }
  .tldr-card p { font-size: 16px; }
  .tldr-facts { grid-template-columns: repeat(4, 1fr); }
  .tldr-fact .value { font-size: 15px; }
}

@media (min-width: 1000px) {
  .tldr { padding: 60px 0 20px; }
  .tldr-card {
    max-width: 960px;
    margin: 0 auto;
    padding: 36px 40px;
    border-left-width: 8px;
  }
  .tldr-card h2 { font-size: 22px; }
  .tldr-card p { font-size: 18px; line-height: 2; }
  .tldr-fact .value { font-size: 17px; }
}

/* ---------- Animations ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   === TABLET (640px+) ====================================
   ========================================================= */
@media (min-width: 640px) {
  body { font-size: 18px; }
  .container { padding-left: 32px; padding-right: 32px; }
  section { padding: 80px 0; }

  h2.section-title { font-size: 34px; }
  .section-lead { font-size: 17px; }

  .hero { padding: 40px 0 80px; }
  .hero h1 { font-size: 44px; }
  .hero-sub { font-size: 17px; }
  .hero-actions { flex-direction: row; }
  .hero-actions .btn { width: auto; }
  .hero-checks { grid-template-columns: repeat(4, auto); gap: 20px; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); padding: 18px 8px; }
  .hero-stat { border-right: 1px solid var(--border); border-bottom: 0 !important; }
  .hero-stat:last-child { border-right: 0; }
  .hero-stat .k { font-size: 24px; }
  .hero-stat .l { font-size: 13px; }

  .problem-list { grid-template-columns: 1fr 1fr; }
  .why-list { grid-template-columns: 1fr 1fr; }
  .features { grid-template-columns: 1fr 1fr; }
  .effects { grid-template-columns: 1fr 1fr; }
  .init-grid { grid-template-columns: 1fr 1fr; }
  .plans { grid-template-columns: 1fr 1fr; }

  /* Steps - 2 cols on tablet */
  .steps { grid-template-columns: 1fr 1fr; }
  .step::after {
    right: -16px;
    bottom: auto;
    top: 50%;
    left: auto;
    transform: translateY(-50%);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 14px solid var(--orange);
    border-right: 0;
  }
  .step:nth-child(2)::after, .step:nth-child(4)::after { display: none; }

  /* Pillars & Cases: 2 col grid (no horizontal scroll) */
  .pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    grid-auto-flow: row;
    grid-auto-columns: auto;
    overflow: visible;
    margin: 0;
    padding: 0;
    scroll-snap-type: none;
  }
  .cases-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    grid-auto-flow: row;
    grid-auto-columns: auto;
    overflow: visible;
    margin: 0;
    padding: 0;
    scroll-snap-type: none;
  }
  .hscroll-hint { display: none; }

  .final-cta .actions { flex-direction: row; justify-content: center; }
  .final-cta .contact-info { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
}

/* =========================================================
   === DESKTOP (1000px+) ==================================
   ========================================================= */
@media (min-width: 1000px) {
  body {
    font-size: 19px;
    line-height: 1.9;
    padding-bottom: 0; /* hide bottom sticky reserve */
  }
  html { scroll-padding-top: 80px; }
  :root { --nav-h: 72px; }

  .container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
  }
  section { padding: 100px 0; }

  /* Hide mobile nav items, show desktop nav */
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .nav-menu a {
    font-weight: 700;
    color: var(--navy);
    font-size: 16px;
  }
  .nav-menu a:hover { color: var(--orange); }
  .nav-cta-top { font-size: 15px; padding: 12px 20px; min-height: 44px; }
  .hamburger { display: none; }
  .drawer { display: none !important; }
  .bottom-cta { display: none; }

  h2.section-title { font-size: 44px; }
  .section-lead { font-size: 19px; }
  .section-head { margin-bottom: 54px; }
  .eyebrow { font-size: 15px; }

  /* Hero */
  .hero {
    padding: 80px 0 100px;
  }
  .hero .container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .hero-visual {
    order: 2;
    margin: 0;
  }
  .hero h1 { font-size: 64px; line-height: 1.2; }
  .hero-sub { font-size: 19px; }
  .hero-badge { font-size: 15px; padding: 10px 20px; }
  .hero-stats {
    margin-top: 40px;
  }
  .hero-stat .k { font-size: 28px; }
  .hero-stat .l { font-size: 14px; }
  .hero-checks { gap: 26px; font-size: 15px; }

  /* Grids */
  .problem-list { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .why-list { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
  }
  .about-box { padding: 48px 40px; }
  .about-box h3 { font-size: 30px; }
  .about-box p { font-size: 17px; }
  .about-meta li { font-size: 16px; }

  .features { grid-template-columns: 1fr; gap: 16px; }
  .feature { grid-template-columns: 80px 1fr; padding: 22px; }
  .feature .num { font-size: 52px; }
  .feature h4 { font-size: 20px; }
  .feature p { font-size: 15px; }

  .pillars { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .pillar-head { padding: 32px 22px 26px; }
  .pillar-num { font-size: 36px; }
  .pillar img.pillar-icon { width: 76px; height: 76px; }
  .pillar-head h3 { font-size: 21px; }
  .pillar-body ul li { font-size: 16px; }

  .cases-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .case-head { padding: 22px 24px; }
  .case-head h3 { font-size: 19px; }
  .case-body { padding: 22px 24px; }
  .case-body p { font-size: 15px; }
  .case-body ul li { font-size: 14px; }

  .coverage { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .scope-head { padding: 26px 22px 20px; }
  .scope-head h3 { font-size: 24px; }
  .scope-body ul li { font-size: 16px; }

  .pricing-block h3 { font-size: 28px; }
  .pricing-block .block-lead { font-size: 18px; }
  .plans { grid-template-columns: repeat(5, 1fr); gap: 16px; }
  .plan {
    grid-template-columns: 1fr;
    grid-template-areas: "name" "price" "meta" "reco";
    text-align: center;
    padding: 26px 20px;
  }
  .plan-price { text-align: center; font-size: 28px; }
  .plan-name { font-size: 20px; margin-bottom: 4px; }

  .ticket-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
  .ticket-card h4 { font-size: 18px; }
  .conv-row { font-size: 17px; }
  .conv-row .amount { font-size: 22px; }
  .ticket-list li { font-size: 16px; }
  .pack-name { font-size: 19px; }
  .pack-price { font-size: 22px; }

  .init-grid { grid-template-columns: repeat(3, 1fr); }
  .init-card { padding: 22px; }
  .init-card h4 { font-size: 18px; }
  .init-card p { font-size: 14px; }
  .init-table th, .init-table td { padding: 18px; font-size: 16px; }
  .init-table th { font-size: 15px; }
  .init-table td.price { font-size: 20px; }

  /* Compare: show table on desktop, hide cards */
  .compare-cards { display: none; }
  .compare-table {
    display: table;
    width: 100%;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--border);
    border-collapse: collapse;
  }
  .compare-table th, .compare-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 17px;
    line-height: 1.75;
    vertical-align: top;
  }
  .compare-table thead th {
    background: var(--navy);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
  }
  .compare-table thead th.col-ticket { background: var(--orange); }
  .compare-table tbody th {
    background: var(--bg-blue);
    color: var(--navy);
    font-weight: 800;
    width: 200px;
  }
  .compare-table tr:last-child td, .compare-table tr:last-child th { border-bottom: 0; }

  /* Steps */
  .steps { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .step {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px 22px;
  }
  .step::after {
    right: -16px;
    top: 50%;
    left: auto;
    bottom: auto;
    transform: translateY(-50%);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 16px solid var(--orange);
    border-right: 0;
  }
  .step:last-child::after { display: none; }
  .step:nth-child(2)::after, .step:nth-child(4)::after { display: block; }
  .step:nth-child(4)::after { display: none; }
  .step-num { font-size: 60px; }
  .step h4 { font-size: 21px; }
  .step .duration { display: inline-block; margin-bottom: 12px; }
  .step .tasks { font-size: 15px; }
  .step .sub { font-size: 13px; }

  .effects { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .effect-body h4 { font-size: 18px; }
  .effect-body p { font-size: 15px; }

  /* Policy: show table on desktop */
  .policy-list { display: none; }
  .policy-table {
    display: table;
    width: 100%;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--border);
    border-collapse: collapse;
  }
  .policy-table th, .policy-table td {
    padding: 20px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    font-size: 17px;
    line-height: 1.75;
    vertical-align: top;
  }
  .policy-table thead th {
    background: var(--navy);
    color: #fff;
    font-weight: 800;
    font-size: 18px;
  }
  .policy-table tbody th {
    background: var(--bg-blue);
    color: var(--navy);
    font-weight: 800;
    width: 200px;
  }
  .policy-table tr:last-child td, .policy-table tr:last-child th { border-bottom: 0; }

  .deliver-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }
  .deliver-item { padding: 22px; }
  .deliver-item h4 { font-size: 19px; }
  .deliver-item p { font-size: 15px; }
  .deliver-sample { margin-top: 0; }
  .deliver-sample-head { padding: 18px 24px; font-size: 18px; }
  .deliver-sample-body { padding: 22px 24px; }
  .deliver-sample-body dl {
    grid-template-columns: 130px 1fr;
    column-gap: 16px;
    row-gap: 12px;
  }
  .deliver-sample-body dt { margin-top: 0; }

  .territory-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }
  .area-chips span { font-size: 15px; padding: 8px 16px; }

  .faq-list { max-width: 900px; margin: 0 auto; }
  .faq-item summary { font-size: 18px; padding: 22px 26px; }
  .faq-item summary .q, .faq-answer .a { width: 36px; height: 36px; font-size: 17px; }
  .faq-answer { font-size: 16px; padding: 0 26px 24px; }

  .company-card {
    padding: 36px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 40px;
  }
  .company-card dd { font-size: 16px; }

  .final-cta { padding: 96px 0; }
  .final-cta h2 { font-size: 48px; }
  .final-cta p { font-size: 19px; }
  .final-cta .contact-info { margin-top: 50px; }
  .final-cta .contact-info a { font-size: 18px; }
}
