/* ===== Design Variables ===== */
:root {
  --color-primary: #8A4B2D;
  --color-primary-dark: #6E3A22;
  --color-primary-light: #A96B4A;
  --color-accent: #C29A5B;
  --color-bg: #F7F2EA;
  --color-bg-alt: #EFE7DA;
  --color-surface: #FFFFFF;
  --color-text: #2B2622;
  --color-text-secondary: #5F554B;
  --color-text-muted: #8A7D6F;
  --color-border: #D9CDBC;
  --color-divider: #EFE7DA;
  --color-success: #5A6B56;
  --color-success-bg: #E4EBE3;
  --radius-card: 10px;
  --radius-btn: 4px;
  --radius-input: 6px;
  --shadow-card: 0 1px 3px rgba(43, 38, 34, 0.06);
  --shadow-hover: 0 8px 24px rgba(43, 38, 34, 0.10);
  --shadow-btn: 0 4px 12px rgba(138, 75, 45, 0.25);
  --font-display: 'Noto Serif SC', 'Songti SC', 'SimSun', serif;
  --font-body: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --container: 1200px;
  --section-space: clamp(4rem, 8vw, 7rem);
}

/* ===== Reset / Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.75;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-primary-dark);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input {
  font-family: inherit;
  font-size: 1rem;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ===== Typography ===== */
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.3;
  font-weight: 700;
}

.section {
  padding: var(--section-space) 0;
}

.section-head {
  margin-bottom: 3rem;
}

.section-tag {
  font-size: 0.8125rem;
  color: var(--color-primary);
  letter-spacing: 0.15em;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--color-text);
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.section-desc {
  color: var(--color-text-secondary);
  line-height: 1.75;
  max-width: 720px;
  font-size: 0.9375rem;
}

.section-head::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--color-primary);
  margin-top: 0.75rem;
}

/* Section-specific head overrides */
#cases .section-head::after {
  content: none;
}

#cases .section-tag::after {
  content: ' →';
  color: var(--color-primary);
  font-weight: 700;
}

/* ===== Buttons ===== */
.btn-primary {
  display: inline-block;
  background: var(--color-primary);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-btn);
  border: 1.5px solid var(--color-primary);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease, color 0.2s ease;
  line-height: 1.4;
  cursor: pointer;
  text-align: center;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #FFFFFF;
  box-shadow: var(--shadow-btn);
}

.btn-primary:active {
  transform: translateY(1px);
}

.btn-primary:focus-visible {
  outline: 3px solid rgba(138, 75, 45, 0.3);
  outline-offset: 2px;
}

.btn-outline-light {
  display: inline-block;
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid #FFFFFF;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-btn);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.btn-outline-light:hover {
  background: #FFFFFF;
  color: var(--color-primary-dark);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

.btn-outline-light:active {
  transform: translateY(1px);
}

.btn-outline-primary {
  display: inline-block;
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-btn);
  transition: background 0.2s ease, color 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.btn-outline-primary:hover {
  background: var(--color-primary);
  color: #FFFFFF;
}

.btn-white {
  display: inline-block;
  background: #FFFFFF;
  color: var(--color-primary-dark);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-btn);
  transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.btn-white:hover {
  background: var(--color-bg);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  color: var(--color-primary-dark);
}

.btn-white:active {
  transform: translateY(1px);
}

.link-arrow {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.link-arrow .arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.link-arrow:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.link-arrow:hover .arrow {
  transform: translateX(4px);
}

/* ===== Badges ===== */
.badge {
  display: inline-block;
  background: var(--color-bg-alt);
  color: #6E3A22;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  line-height: 1.4;
  white-space: nowrap;
}

.badge-primary {
  background: var(--color-primary);
  color: #FFFFFF;
}

.badge-accent {
  background: var(--color-accent);
  color: #FFFFFF;
}

.badge-success {
  background: var(--color-success-bg);
  color: var(--color-success);
}

/* ===== Site Header (Magazine Masthead) ===== */
.site-header {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  height: auto;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  white-space: nowrap;
}

.brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.brand-name:hover {
  color: var(--color-primary-dark);
}

.brand-dec {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  color: var(--color-text-muted);
  margin-top: 0.125rem;
  text-transform: uppercase;
  font-weight: 500;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  border-left: 1px solid var(--color-border);
  padding-left: 1.5rem;
}

.site-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-btn);
  position: relative;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--color-primary);
}

.site-nav a.active {
  color: var(--color-primary);
}

.site-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.875rem;
  right: 0.875rem;
  height: 2px;
  background: var(--color-primary);
}

.header-cta {
  justify-self: end;
}

.header-cta .btn-primary {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  height: auto;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(rgba(43, 38, 34, 0.78), rgba(43, 38, 34, 0.45)), url('/assets/images/backpic/back-1.jpg');
  background-size: cover;
  background-position: center;
  color: #FFFFFF;
}

.hero-inner {
  padding: 5rem 1.25rem 7rem;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  max-width: 820px;
}

.hero h1 .span-light {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.hero-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 680px;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.hero-info {
  background: rgba(43, 38, 34, 0.85);
  border-radius: 8px;
  margin-top: 2rem;
}

.hero-info-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  padding: 1.125rem 1.5rem;
  align-items: center;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.info-dot {
  width: 4px;
  height: 4px;
  background: var(--color-accent);
  flex-shrink: 0;
  border-radius: 0;
}

/* ===== Service Module Section ===== */
.service-section {
  background: var(--color-bg);
}

.service-list {
  max-width: 1000px;
  margin: 0 auto;
}

.service-row {
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  padding: 1.75rem 1.25rem;
  border-bottom: 1px solid var(--color-divider);
  transition: background 0.2s ease;
}

.service-row:first-child {
  border-top: 1px solid var(--color-divider);
}

.service-row:hover {
  background: rgba(239, 231, 218, 0.55);
}

.service-row:hover .service-num {
  color: var(--color-primary-dark);
}

.service-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  min-width: 3rem;
  transition: color 0.2s ease;
}

.service-content {
  flex: 1;
}

.service-content h3 {
  font-size: 1.25rem;
  color: var(--color-text);
  margin-bottom: 0.375rem;
  font-weight: 700;
}

.service-content p {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.75;
  max-width: 54rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-top: 0.25rem;
}

.service-footer {
  text-align: center;
  margin-top: 2.5rem;
}

/* Stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
  line-height: 1.5;
}

/* ===== Scene Section (Zigzag) ===== */
.scene-section {
  background: var(--color-bg-alt);
}

.scene-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4.5rem;
}

.scene-row:last-child {
  margin-bottom: 0;
}

.scene-row:nth-child(even) .scene-media {
  order: 2;
}

.scene-row:nth-child(odd) .scene-media {
  order: 1;
}

.scene-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.scene-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background-color: var(--color-bg-alt);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.scene-media img.loaded {
  opacity: 1;
}

.scene-media figcaption {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  padding: 0.625rem 0.875rem;
  background: rgba(255, 255, 255, 0.7);
  border-top: none;
}

.scene-content h3 {
  font-size: 1.375rem;
  color: var(--color-text);
  margin-bottom: 0.875rem;
  font-weight: 700;
}

.scene-points {
  list-style: none;
  padding: 0;
}

.scene-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 0.625rem;
}

.scene-points li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--color-primary);
  margin-top: 0.7em;
  flex-shrink: 0;
}

/* ===== Case Section ===== */
.case-section {
  background: var(--color-bg);
}

.case-list {
  max-width: 1000px;
  margin: 0 auto;
}

.case-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-primary);
}

.case-date {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  min-width: 5.5rem;
  white-space: nowrap;
  font-weight: 500;
  line-height: 1.5;
}

.case-main {
  flex: 1;
}

.case-main h3 {
  font-size: 1.125rem;
  color: var(--color-text);
  margin-bottom: 0.375rem;
  font-weight: 700;
}

.case-main p {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 45rem;
}

.case-link {
  font-size: 0.875rem;
  color: var(--color-primary);
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.case-link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

/* ===== Pricing Section ===== */
.pricing-section {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: start;
  max-width: 1050px;
  margin: 0 auto;
}

.price-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.price-card.featured {
  border-top: 3px solid var(--color-accent);
  margin-top: 24px;
  box-shadow: 0 4px 20px rgba(43, 38, 34, 0.08);
}

.price-card.featured:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.price-card h3 {
  font-size: 1.125rem;
  color: var(--color-text);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.price-card .badge-accent {
  font-size: 0.6875rem;
  padding: 0.1875rem 0.5rem;
  white-space: nowrap;
}

.price-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
}

.price-unit {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.price-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.price-list li::before {
  content: '–';
  width: 0.875rem;
  height: 0.875rem;
  color: var(--color-primary);
  font-weight: 700;
  flex-shrink: 0;
  text-align: center;
  line-height: 0.875rem;
  font-size: 0.75rem;
  margin-top: 0.4em;
}

.price-card .btn-primary,
.price-card .btn-outline-primary {
  width: 100%;
  display: block;
}

.price-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: 2.5rem;
  line-height: 1.5;
}

/* ===== FAQ Section ===== */
.faq-section {
  background: var(--color-bg);
}

.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 0.25rem;
  text-align: left;
  transition: background 0.2s ease;
  border-radius: 0;
}

.faq-question:hover {
  background: rgba(239, 231, 218, 0.4);
}

.faq-q-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-text {
  flex: 1;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.6;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 600;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.25s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding-left: 0.25rem;
}

.faq-answer-inner {
  padding: 0 0 1.5rem 3rem;
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.75;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--color-primary);
  color: #FFFFFF;
}

.faq-item.active .faq-answer {
  max-height: 600px;
}

/* ===== CTA Section ===== */
.cta-section {
  background: var(--color-primary-dark);
  padding: 4rem 0;
  color: #FFFFFF;
}

.cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.25rem 0.875rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.cta-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.cta-title {
  font-size: clamp(1.375rem, 2.4vw, 1.75rem);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.875rem;
  color: #FFFFFF;
}

.cta-desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.cta-actions {
  display: flex;
  gap: 0.625rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-form {
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  margin-bottom: 0.875rem;
}

.form-field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  display: block;
  margin-bottom: 0.375rem;
}

.form-field input {
  width: 100%;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-input);
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-text);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(194, 154, 91, 0.25);
}

.form-field input::placeholder {
  color: var(--color-text-muted);
}

.form-submit-row {
  margin-top: 1rem;
}

.form-submit-row .btn-white {
  width: 100%;
}

.form-note {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.5;
}

.form-success {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  padding: 2.25rem 1.5rem;
  text-align: center;
  color: #FFFFFF;
}

.form-success .success-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-success p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.85);
  padding: 3.5rem 0 1.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand .brand-name {
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-brand .brand-name:hover {
  color: var(--color-accent);
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-top: 0.75rem;
  max-width: 300px;
}

.footer-contact {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-contact span {
  display: block;
}

.footer-col h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 1rem;
  font-family: var(--font-body);
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
  color: #FFFFFF;
}

/* ===== Responsive ===== */
@media (max-width: 1023px) {
  .hero {
    min-height: 60vh;
  }

  .scene-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
  }

  .scene-row:nth-child(even) .scene-media {
    order: 1;
  }

  .scene-row:nth-child(odd) .scene-media {
    order: 1;
  }

  .scene-media {
    order: 1 !important;
  }

  .scene-content {
    order: 2;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    gap: 1rem;
  }

  .price-card.featured {
    margin-top: 12px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
    border-left: none;
    padding-left: 0;
    padding-top: 0.625rem;
    gap: 0.125rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    white-space: nowrap;
  }

  .hero-info-inner {
    gap: 0.625rem 1.25rem;
  }

  .stats-strip {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 1rem;
  }

  .header-inner {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .hero {
    min-height: 60vh;
  }

  .hero-inner {
    padding: 3.5rem 1rem 4rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 7vw, 2.5rem);
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline-light {
    width: 100%;
    max-width: 360px;
  }

  .hero-info-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  .service-row {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.5rem 0.75rem;
  }

  .service-num {
    font-size: 1.5rem;
  }

  .service-tags {
    margin-top: 0;
  }

  .scene-row {
    gap: 1rem;
  }

  .case-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.125rem;
  }

  .case-date {
    min-width: 0;
  }

  .case-link {
    align-self: flex-start;
  }

  .pricing-grid {
    gap: 0.875rem;
  }

  .price-card {
    padding: 1.5rem 1.125rem;
  }

  .faq-question {
    padding: 1rem 0.125rem;
  }

  .faq-q-badge {
    width: 32px;
    height: 32px;
    font-size: 0.875rem;
  }

  .faq-text {
    font-size: 0.9375rem;
  }

  .faq-answer-inner {
    padding: 0 0 1.25rem 2.75rem;
  }

  .cta-section {
    padding: 3rem 0;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn-white,
  .cta-actions .btn-outline-light {
    width: 100%;
    max-width: 360px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .stats-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .stats-strip {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .stat-value {
    font-size: 1.375rem;
  }

  .sectile-content h3 {
    font-size: 1.125rem;
  }

  .btn-primary,
  .btn-outline-light {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
}
