/* Inner pages — distinct from landing (home.css) */

.fw-page {
  --fw-dark: #141414;
  --fw-dark-soft: #1f1f1f;
  --fw-border: #e8e8e8;
  background: #fff;
}

.fw-hero {
  background: linear-gradient(135deg, var(--fw-dark) 0%, #2a1516 55%, var(--color-red-dark) 100%);
  color: #fff;
  padding: 3.5rem 0 3rem;
}

.fw-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: end;
}

.fw-hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.75rem;
}

.fw-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.fw-hero-lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

.fw-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.fw-hero-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
}

.fw-hero-panel h2 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.fw-checklist {
  list-style: none;
}

.fw-checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.55rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.92);
}

.fw-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #fff;
  font-weight: 700;
}

.fw-section {
  padding: 4rem 0;
}

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

.fw-section-dark {
  background: var(--fw-dark);
  color: #fff;
}

.fw-section-head {
  max-width: 640px;
  margin-bottom: 2rem;
}

.fw-section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}

.fw-section-head p {
  color: var(--color-muted);
}

.fw-section-dark .fw-section-head p {
  color: rgba(255, 255, 255, 0.75);
}

.fw-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.fw-sidebar {
  position: sticky;
  top: 7rem;
  background: #fff;
  border: 1px solid var(--fw-border);
  border-radius: 12px;
  padding: 1rem;
}

.fw-sidebar-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  padding: 0.5rem 0.75rem;
}

.fw-sidebar a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 500;
}

.fw-sidebar a:hover,
.fw-sidebar a.is-active {
  background: var(--color-red-light);
  color: var(--color-red);
}

.fw-issue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.fw-issue-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--fw-border);
  border-radius: 12px;
  padding: 1.25rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  height: 100%;
}

.fw-issue-card:hover {
  border-color: var(--color-red);
  box-shadow: 0 8px 24px rgba(215, 25, 32, 0.08);
}

.fw-issue-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.fw-issue-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.fw-issue-symptoms {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
  flex: 1;
}

.fw-issue-link {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-red);
}

.fw-category-block {
  scroll-margin-top: 6rem;
  margin-bottom: 2.5rem;
}

.fw-category-block h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-red);
  display: inline-block;
}

.fw-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.fw-overview-card {
  background: #fff;
  border: 1px solid var(--fw-border);
  border-radius: 12px;
  padding: 1.5rem;
}

.fw-section-dark .fw-overview-card {
  background: var(--fw-dark-soft);
  border-color: #333;
}

.fw-overview-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.fw-overview-card ul {
  list-style: none;
}

.fw-overview-card li {
  padding: 0.35rem 0;
  font-size: 0.92rem;
  color: var(--color-muted);
  border-bottom: 1px solid var(--fw-border);
}

.fw-section-dark .fw-overview-card li {
  color: rgba(255, 255, 255, 0.8);
  border-color: #333;
}

.fw-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.fw-process-step {
  background: #fff;
  border: 1px solid var(--fw-border);
  border-radius: 12px;
  padding: 1.25rem;
}

.fw-process-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-red);
  opacity: 0.35;
  line-height: 1;
}

.fw-process-step h3 {
  font-size: 0.95rem;
  margin: 0.5rem 0;
}

.fw-process-step p {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.fw-pricing-box {
  max-width: 720px;
  background: #fff;
  border: 1px solid var(--fw-border);
  border-radius: 12px;
  padding: 2rem;
}

.fw-pricing-box p {
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.fw-price-rows {
  list-style: none;
  margin-bottom: 1.5rem;
}

.fw-price-rows li {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--fw-border);
  font-weight: 500;
}

.fw-price-rows span:last-child {
  color: var(--color-red);
  font-weight: 700;
}

.fw-faq-list {
  max-width: 800px;
}

.fw-faq-item {
  border: 1px solid var(--fw-border);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.fw-faq-item summary {
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.fw-faq-item summary::after {
  content: '+';
  color: var(--color-red);
  font-size: 1.25rem;
  font-weight: 700;
}

.fw-faq-item[open] summary::after {
  content: '−';
}

.fw-faq-item p {
  padding: 0 1.25rem 1.25rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.fw-detail-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}

.fw-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.fw-tag {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: var(--color-red-light);
  color: var(--color-red);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.fw-standards {
  list-style: none;
}

.fw-standards li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--fw-border);
  color: var(--color-muted);
}

.fw-standards li::before {
  content: '→ ';
  color: var(--color-red);
  font-weight: 700;
}

.fw-cta-strip {
  background: var(--color-red);
  color: #fff;
  padding: 2.5rem 0;
  text-align: center;
}

.fw-cta-strip h2 {
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
}

.fw-cta-strip p {
  opacity: 0.95;
  margin-bottom: 1.25rem;
}

.fw-cta-strip .hero-actions {
  justify-content: center;
}

/* About page: premium dark storytelling layout */
.about-page {
  color: #f5f5f5;
  background:
    radial-gradient(circle at 15% 0%, rgba(215, 25, 32, 0.16), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.06), transparent 26%),
    linear-gradient(180deg, #0e0e0f 0%, #141414 38%, #101010 100%);
}

.about-page .container {
  position: relative;
  z-index: 1;
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 2.5rem;
}

.about-hero::before,
.about-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
}

.about-hero::before {
  width: 18rem;
  height: 18rem;
  top: -8rem;
  right: -4rem;
  background: radial-gradient(circle, rgba(215, 25, 32, 0.2), transparent 68%);
}

.about-hero::after {
  width: 24rem;
  height: 24rem;
  bottom: 8rem;
  left: -8rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 70%);
}

.about-hero-copy {
  max-width: 860px;
}

.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.about-hero-lead {
  max-width: 50rem;
  font-size: 1.08rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.78);
}

.about-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.about-hero-badge {
  display: inline-flex;
  flex-direction: column;
  gap: 0.08rem;
  padding: 0.75rem 1rem;
  min-width: 146px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.about-hero-badge strong {
  color: #fff;
  font-size: 0.92rem;
}

.about-hero-badge span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
}

.about-hero-actions {
  margin-top: 1.5rem;
}

.about-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.about-showcase-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
}

.about-showcase-card:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 25, 32, 0.35);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.about-showcase-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.about-showcase-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-showcase-card:hover .about-showcase-media img {
  transform: scale(1.06);
}

.about-showcase-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 13, 13, 0.08) 0%, rgba(13, 13, 13, 0.18) 45%, rgba(13, 13, 13, 0.78) 100%),
    radial-gradient(circle at 20% 20%, rgba(215, 25, 32, 0.18), transparent 35%);
}

.about-showcase-copy {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 1.15rem 1.15rem 1.2rem;
}

.about-showcase-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-showcase-copy h2,
.about-showcase-copy h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.about-showcase-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.about-proof {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1rem;
  margin-top: 1.25rem;
}

.about-proof-panel,
.about-story-card,
.about-standard-card,
.about-standard-card-accent,
.about-testimonial,
.about-faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.16);
}

.about-proof-panel {
  padding: 1.6rem;
}

.about-proof-panel h2 {
  margin: 0.45rem 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  line-height: 1.12;
}

.about-proof-panel p {
  color: rgba(255, 255, 255, 0.74);
}

.about-section {
  padding: 4.5rem 0;
}

.about-booking {
  padding: 0 0 4.5rem;
}

.about-booking-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.6rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.18), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.18);
}

.about-booking-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  line-height: 1.08;
  margin: 0.45rem 0 0.65rem;
}

.about-booking-card p {
  width: 100%;
  max-width: 42rem;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.about-booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.about-section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.about-section-head {
  max-width: 720px;
  margin-bottom: 1.8rem;
}

.about-section-head h2,
.about-story-copy h2,
.about-standard-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1.08;
  margin: 0.55rem 0 0.8rem;
}

.about-section-head p,
.about-story-copy p,
.about-standard-card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
}

.about-section-eyebrow,
.about-trust-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.64);
}

.about-story-grid,
.about-standard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.about-story-copy {
  padding: 0.25rem 0;
}

.about-story-card,
.about-standard-card,
.about-standard-card-accent {
  padding: 1.5rem;
}

.about-quote {
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--color-red);
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.6;
  color: #fff;
}

.about-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.about-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(215, 25, 32, 0.24);
  background: rgba(215, 25, 32, 0.12);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
}

.about-standard-list {
  list-style: none;
  margin-top: 1rem;
}

.about-standard-list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 1.45rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
}

.about-standard-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0.72rem;
  color: var(--color-red);
  font-weight: 700;
}

.about-standard-list-compact li {
  padding-right: 0;
}

.about-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.about-trust-card {
  padding: 1.35rem;
  min-height: 100%;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.about-trust-card:hover,
.about-process-step:hover,
.about-testimonial:hover,
.about-faq-item:hover {
  transform: translateY(-5px);
  border-color: rgba(215, 25, 32, 0.32);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
}

.about-trust-card h3,
.about-process-step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0.6rem 0 0.45rem;
}

.about-trust-card p,
.about-process-step p,
.about-testimonial p,
.about-faq-item p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.68;
}

.about-process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.about-process-step {
  padding: 1.35rem;
  min-height: 100%;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.about-process-num,
.about-metric strong {
  font-family: var(--font-display);
}

.about-process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(215, 25, 32, 0.14);
  color: var(--color-red);
  font-size: 1rem;
  font-weight: 800;
}

.about-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-testimonial {
  padding: 1.4rem;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.about-stars {
  color: #fbbf24;
  letter-spacing: 0.2em;
  margin-bottom: 0.95rem;
}

.about-testimonial footer {
  margin-top: 1rem;
  color: #fff;
}

.about-faq-list {
  display: grid;
  gap: 0.85rem;
}

.about-faq-item {
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.about-faq-item summary {
  list-style: none;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
}

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

.about-faq-item summary::after {
  content: '+';
  color: var(--color-red);
  font-size: 1.25rem;
  font-weight: 700;
}

.about-faq-item[open] summary::after {
  content: '−';
}

.about-faq-item p {
  padding: 0 1.25rem 1.2rem;
}

.about-proof-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.about-metric {
  padding: 1.1rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  text-align: left;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.about-metric:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(215, 25, 32, 0.28);
  background: rgba(255, 255, 255, 0.07);
}

.about-metric-icon {
  display: inline-flex;
  margin-bottom: 0.55rem;
  font-size: 1.15rem;
}

.about-metric strong {
  display: block;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1;
  color: #fff;
}

.about-metric span:last-child {
  display: block;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.85rem;
}

.about-card-hover {
  will-change: transform;
}

.fw-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.fw-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fw-hero-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.fw-hero-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fw-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.58s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--stagger-index, 0) * 0.07s);
}

.fw-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fw-reveal,
  .fw-hero-in,
  .fw-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .about-showcase-media img {
    transition: none;
  }
}

.fw-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.fw-contact-card {
  background: var(--color-bg-alt);
  border-radius: 12px;
  padding: 1.75rem;
}

.fw-contact-card h3 {
  color: var(--color-red);
  margin-bottom: 1rem;
}

.fw-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

@media (max-width: 992px) {
  .about-showcase,
  .about-proof,
  .about-story-grid,
  .about-standard-grid,
  .about-trust-grid,
  .about-process-grid,
  .about-testimonials-grid,
  .fw-hero-inner,
  .fw-layout,
  .fw-detail-grid,
  .fw-contact-grid {
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    line-height: 1.02;
  }

  .about-proof-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-booking-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-booking-actions {
    justify-content: flex-start;
  }

  .fw-sidebar {
    position: static;
  }

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

@media (max-width: 600px) {
  .about-hero {
    padding-top: 3.25rem;
  }

  .about-hero-badge {
    min-width: 0;
    width: 100%;
  }

  .about-proof-stats {
    grid-template-columns: 1fr;
  }

  .fw-process {
    grid-template-columns: 1fr;
  }

  .about-section {
    padding: 3.5rem 0;
  }

  .about-booking {
    padding-bottom: 3.5rem;
  }
}

/* Buy / Sell pages (Gadget Box style) */
.text-center-wide {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
}

.gb-stats {
  background: var(--color-red);
  color: #fff;
  padding: 2rem 0;
}

.gb-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.gb-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
}

.gb-stat span {
  font-size: 0.85rem;
  opacity: 0.9;
}

.gb-device-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.gb-device-chips span {
  padding: 0.5rem 1rem;
  background: #fff;
  border: 1px solid var(--fw-border);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
}

.gb-cross-link {
  text-align: center;
  padding: 2rem;
  background: var(--color-bg-alt);
  border-radius: 12px;
}

.gb-cross-link p {
  margin-bottom: 1rem;
  color: var(--color-muted);
}

@media (max-width: 768px) {
  .gb-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Service landing pages (SEO) */
.svc-prose {
  max-width: 760px;
}

.svc-prose-block {
  margin-bottom: 2.5rem;
}

.svc-prose-block h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.svc-prose-block p {
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.svc-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 720px;
}

.svc-related-card {
  display: block;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--fw-border);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.svc-related-card:hover {
  border-color: var(--color-red);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.svc-related-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.svc-related-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-red);
}

.svc-cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.svc-cta-inner h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.svc-cta-inner p {
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .svc-related-grid {
    grid-template-columns: 1fr;
  }
}

/* Policy Pages Typography Styling */
.fw-policy-content h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--color-text);
  margin-top: 2.25rem;
  margin-bottom: 0.85rem;
  border-left: 3px solid var(--color-red);
  padding-left: 0.85rem;
  line-height: 1.25;
}

.fw-policy-content h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--color-text);
  margin-top: 1.75rem;
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.fw-policy-content p {
  color: var(--color-muted);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.fw-policy-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.35rem;
}

.fw-policy-content li {
  color: var(--color-muted);
  margin-bottom: 0.55rem;
  list-style-type: square;
  line-height: 1.6;
}

.fw-policy-content a {
  color: var(--color-red);
  text-decoration: underline;
  font-weight: 500;
}

.fw-policy-content a:hover {
  color: var(--color-red-dark);
}

.fw-policy-updated {
  font-size: 0.9rem;
  color: var(--color-muted);
  font-style: italic;
  margin-bottom: 2rem;
  display: block;
}

