@charset "UTF-8";

/* =========================================================
   PC / Smartphone support consultation guide LP
   Colors: white / light blue / navy + orange CTA
   Policy: mobile-first, responsive
   ========================================================= */

:root {
  --navy:        #0d2f5e;
  --navy-deep:   #0a2548;
  --blue:        #1f6fb6;
  --blue-light:  #eaf3fb;
  --blue-lighter:#f4f9fd;
  --blue-border: #cfe2f3;
  --orange:      #ff7a00;
  --orange-dark: #ec6a00;
  --orange-deep: #d65f00;
  --text:        #1d2b3a;
  --text-soft:   #4a5a6a;
  --white:       #ffffff;
  --shadow-sm:   0 2px 8px rgba(13, 47, 94, 0.08);
  --shadow-md:   0 6px 20px rgba(13, 47, 94, 0.12);
  --shadow-cta:  0 8px 20px rgba(255, 122, 0, 0.30);
  --radius:      14px;
  --radius-sm:   10px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic",
    "YuGothic", "Meiryo", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  word-break: break-word;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--blue);
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* =========================================================
   Third-party notice bar (top)
   ========================================================= */
.disclaimer-bar {
  background: var(--navy-deep);
  color: #d7e6f7;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
  padding: 8px 16px;
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--blue-border);
  /* Mobile: not sticky (switches to sticky at PC width) */
  position: static;
  z-index: 50;
}

.header-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand-title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.brand-sub {
  margin: 2px 0 0;
  font-size: 11px;
  color: var(--text-soft);
}

.header-contact {
  /* Mobile: hidden. Phone line consolidated into bottom fixed CTA (shown at PC width) */
  display: none;
  align-items: center;
  gap: 12px;
}

.header-tel-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.header-contact-label {
  font-size: 11px;
  color: var(--text-soft);
  font-weight: 600;
}

.header-tel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.header-tel-icon {
  color: var(--orange);
  font-size: 20px;
}

.header-tel-note {
  font-size: 11px;
  color: var(--text-soft);
}

/* Reception number standalone box (header; 096 enlarged) */
.reception-box {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  background: #fff5ec;
  border: 2px solid var(--orange);
  border-radius: 10px;
  line-height: 1.05;
  text-align: center;
}

.reception-box-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange-deep);
}

.reception-box-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--orange-deep);
  letter-spacing: 0.04em;
}

/* =========================================================
   Common: section / heading
   ========================================================= */
.section {
  padding: 44px 0;
}

.section-title {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  position: relative;
  padding-bottom: 14px;
}

.section-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  margin: 12px auto 0;
}

.section-lead {
  margin: 0 auto 26px;
  max-width: 720px;
  text-align: center;
  color: var(--text-soft);
  font-size: 14.5px;
}

/* =========================================================
   Common: phone CTA button (orange)
   ========================================================= */
.btn-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 16px 18px;
  background: linear-gradient(180deg, var(--orange), var(--orange-dark));
  color: var(--white);
  text-decoration: none;
  border-radius: 999px;
  box-shadow: var(--shadow-cta);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.btn-tel:hover {
  background: linear-gradient(180deg, var(--orange-dark), var(--orange-deep));
  box-shadow: 0 10px 24px rgba(255, 122, 0, 0.4);
}

.btn-tel:active {
  transform: translateY(1px);
}

.btn-tel-icon {
  font-size: 30px;
  line-height: 1;
}

.btn-tel-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.btn-tel-label {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.95;
}

.btn-tel-num {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.btn-tel-lg {
  max-width: 520px;
  padding: 18px 22px;
}

.btn-tel-lg .btn-tel-num {
  font-size: 34px;
}

/* CTA card (used in hero etc.) */
.cta-card {
  background: var(--white);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 18px 16px 16px;
  text-align: center;
}

.cta-card-lead {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.cta-card-note {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--text-soft);
}

/* Reception number note (emphasized near phone CTA) */
.reception-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px 6px;
  margin: 14px auto 0;
  max-width: 480px;
  padding: 10px 14px;
  background: #fff5ec;
  border: 2px dashed var(--orange);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange-deep);
  line-height: 1.4;
}

.reception-notice-strong {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  white-space: nowrap;
}

.reception-notice-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--orange-deep);
  letter-spacing: 0.04em;
}

/* Variant for dark background (final CTA) */
.reception-notice--dark {
  background: rgba(255, 255, 255, 0.10);
  border-color: var(--orange);
  color: #ffe9d2;
}

.reception-notice--dark .reception-notice-num {
  color: #ffd9a8;
}

/* =========================================================
   First view (hero)
   ========================================================= */
.hero {
  background:
    radial-gradient(circle at 85% 0%, rgba(31, 111, 182, 0.12), transparent 45%),
    linear-gradient(180deg, var(--blue-light), var(--white));
  padding: 32px 0 40px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.hero-eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  padding: 5px 14px;
  background: var(--navy);
  color: #dcebfa;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
}

.hero-title {
  margin: 0 0 16px;
  font-size: 26px;
  line-height: 1.45;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.hero-title-accent {
  color: var(--blue);
}

.hero-lead {
  margin: 0 0 22px;
  font-size: 15px;
  color: var(--text-soft);
}

.hero-points {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hero-point {
  background: var(--white);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius-sm);
  padding: 14px 8px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.hero-point-icon {
  font-size: 26px;
  line-height: 1;
}

.hero-point-text {
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-soft);
}

.hero-point-text strong {
  display: block;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 2px;
}

/* Trust badges (listed-company operation / full-time staff / pre-estimate / on-site support) */
.trust-badges {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  background: var(--white);
  border: 1px solid var(--blue-border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.trust-badge-icon {
  font-size: 15px;
  line-height: 1;
}

/* Hero right-side visual frame (real image; frame holds even if image missing) */
.hero-visual {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(31, 111, 182, 0.16), rgba(13, 47, 94, 0.35)),
    var(--navy);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.hero-visual-img {
  display: block;
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  /* Style for alt text shown when image is missing */
  color: #dbe9f8;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

.hero-visual-caption {
  margin: 0;
  padding: 8px 12px;
  background: rgba(10, 37, 72, 0.82);
  color: #dbe9f8;
  font-size: 11px;
  text-align: center;
}

/* =========================================================
   Price links CTA
   ========================================================= */
.price-links-section {
  background: var(--white);
}

.price-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}

.price-link-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 16px;
  background: var(--blue-lighter);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}

.price-link-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}

.price-link-icon {
  font-size: 30px;
  line-height: 1;
  flex-shrink: 0;
}

.price-link-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.price-link-title {
  font-size: 16px;
  font-weight: 700;
}

.price-link-sub {
  font-size: 12px;
  color: var(--text-soft);
}

.price-link-arrow {
  font-size: 20px;
  color: var(--blue);
  flex-shrink: 0;
}

/* =========================================================
   Recommended-for section (reuses trouble card style)
   ========================================================= */
.audience-section {
  background: var(--blue-lighter);
}

/* =========================================================
   Common troubles
   ========================================================= */
.troubles-section {
  background: var(--blue-lighter);
}

.trouble-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.trouble-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--blue-border);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius-sm);
  padding: 14px 14px;
  box-shadow: var(--shadow-sm);
}

.trouble-icon {
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}

.trouble-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

/* =========================================================
   Supported services
   ========================================================= */
.support-section {
  background: var(--white);
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.support-col {
  background: var(--blue-lighter);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius);
  padding: 20px 18px;
  box-shadow: var(--shadow-sm);
}

.support-col-title {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(180deg, var(--blue), var(--navy));
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.support-col-icon {
  font-size: 22px;
  line-height: 1;
}

.support-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.support-list li {
  position: relative;
  padding: 9px 0 9px 28px;
  font-size: 14.5px;
  color: var(--text);
  border-bottom: 1px dashed var(--blue-border);
}

.support-list li:last-child {
  border-bottom: none;
}

.support-list li::before {
  content: "\2713";
  position: absolute;
  left: 4px;
  top: 9px;
  color: var(--blue);
  font-weight: 800;
}

/* =========================================================
   Pricing approach
   ========================================================= */
.fee-section {
  background: var(--blue-lighter);
}

.fee-table-wrap {
  max-width: 720px;
  margin: 0 auto 22px;
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  table-layout: fixed;
}

.fee-table caption {
  text-align: left;
}

.fee-table th,
.fee-table td {
  padding: 14px 14px;
  text-align: left;
  font-size: 14.5px;
  border-bottom: 1px solid var(--blue-border);
  vertical-align: middle;
}

.fee-table thead th {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
}

.fee-table tbody th {
  width: 52%;
  background: var(--blue-light);
  color: var(--navy);
  font-weight: 700;
}

.fee-table tbody td {
  color: var(--text);
  font-weight: 600;
}

.fee-table tbody tr:last-child th,
.fee-table tbody tr:last-child td {
  border-bottom: none;
}

.fee-notes {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: var(--shadow-sm);
}

.fee-note-title {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
}

.fee-note-list {
  margin: 0 0 14px;
  padding-left: 1.2em;
}

.fee-note-list li {
  font-size: 13.5px;
  color: var(--text-soft);
  margin-bottom: 6px;
}

.fee-note-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding-top: 12px;
  border-top: 1px dashed var(--blue-border);
}

.fee-note-links a {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
}

.fee-note-links a:hover {
  text-decoration: underline;
}

/* =========================================================
   Reassurance points
   ========================================================= */
.reassure-section {
  background: var(--white);
}

.reassure-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.reassure-card {
  background: var(--blue-lighter);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.reassure-icon {
  font-size: 32px;
  line-height: 1;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--blue-border);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.reassure-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
}

.reassure-text {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* =========================================================
   Consultation flow
   ========================================================= */
.flow-section {
  background: var(--blue-lighter);
}

.flow-steps {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 760px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius);
  padding: 16px 16px;
  box-shadow: var(--shadow-sm);
}

.flow-step-num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--blue), var(--navy));
  color: var(--white);
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
}

.flow-step-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.flow-step-title {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--navy);
}

.flow-step-text {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* =========================================================
   Final CTA
   ========================================================= */
.final-cta-section {
  padding: 48px 0;
  background:
    radial-gradient(circle at 15% 100%, rgba(31, 111, 182, 0.35), transparent 50%),
    linear-gradient(160deg, var(--navy), var(--navy-deep));
}

.final-cta {
  text-align: center;
  color: var(--white);
}

.final-cta-eyebrow {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  color: #bcd6f0;
}

.final-cta-title {
  margin: 0 0 24px;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 800;
}

.final-cta-info {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  font-size: 14px;
  color: #dcebfa;
}

.final-cta-info strong {
  color: var(--white);
  font-size: 16px;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--navy-deep);
  color: #c4d6ea;
  padding: 34px 0 90px; /* Bottom padding reserves space for the fixed CTA */
  font-size: 13px;
  line-height: 1.8;
}

.footer-disclaimer p {
  margin: 0 0 10px;
}

.footer-disclaimer a {
  color: #ffd9a8;
  font-weight: 700;
}

/* Small supplementary area about pricing */
.footer-fee-note {
  margin: 14px 0 0;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  font-size: 12.5px;
  line-height: 1.7;
  color: #d4e3f3;
}

.footer-links {
  margin: 18px 0;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-links-title {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  color: #9fbcdb;
}

.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #dcebfa;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copy {
  margin: 0;
  font-size: 11.5px;
  color: #8ba9c8;
}

/* =========================================================
   Mobile fixed phone CTA (mobile only)
   ========================================================= */
.sticky-tel {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--blue-border);
  box-shadow: 0 -4px 14px rgba(13, 47, 94, 0.14);
}

.sticky-tel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 12px;
  background: linear-gradient(180deg, var(--orange), var(--orange-dark));
  color: var(--white);
  text-decoration: none;
  border-radius: 999px;
  box-shadow: var(--shadow-cta);
}

.sticky-tel-icon {
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}

.sticky-tel-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

.sticky-tel-label {
  font-size: 11px;
  font-weight: 600;
  opacity: 0.95;
}

.sticky-tel-num {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* Reception chip inside fixed CTA (096 enlarged, high contrast) */
.sticky-tel-reception {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.05;
  padding: 3px 9px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
  text-align: center;
}

.sticky-tel-reception-label {
  font-size: 9px;
  font-weight: 700;
  color: var(--orange-deep);
}

.sticky-tel-reception-num {
  font-size: 19px;
  font-weight: 800;
  color: var(--orange-deep);
  letter-spacing: 0.03em;
}

/* =========================================================
   Responsive: tablet and up
   ========================================================= */
@media (min-width: 600px) {
  .trouble-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reassure-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-links {
    grid-template-columns: 1fr 1fr;
  }

  .hero-title {
    font-size: 30px;
  }
}

/* =========================================================
   Responsive: PC (desktop)
   ========================================================= */
@media (min-width: 880px) {
  body {
    font-size: 17px;
  }

  /* Restore header sticky on PC */
  .site-header {
    position: sticky;
    top: 0;
  }

  /* Header horizontal layout */
  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  /* Show phone number / reception number on PC */
  .header-contact {
    display: flex;
    align-items: center;
  }

  .header-tel-block {
    align-items: flex-end;
    text-align: right;
  }

  .header-tel {
    font-size: 28px;
  }

  .reception-box-num {
    font-size: 30px;
  }

  /* Wider section padding */
  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
  }

  /* Hero: two columns */
  .hero {
    padding: 52px 0 60px;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .hero-copy {
    flex: 1 1 58%;
    min-width: 0;
  }

  .hero-visual {
    flex: 1 1 42%;
    align-self: stretch;
    min-height: 420px;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-cta {
    text-align: left;
  }

  /* Troubles: 3 columns */
  .trouble-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Supported services: 2 columns */
  .support-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Reassurance points: 3 columns */
  .reassure-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Flow: 2 columns (2x2) */
  .flow-steps {
    grid-template-columns: 1fr 1fr;
  }

  /* Restore footer bottom padding (fixed CTA hidden) */
  .site-footer {
    padding-bottom: 40px;
  }

  /* Hide fixed phone CTA on PC */
  .sticky-tel {
    display: none;
  }
}
