/* ============ HOME HERO ============ */
#hero {
  margin-top: 68px;
  position: relative;
  min-height: calc(100vh - 68px);
  display: flex;
  flex-direction: column;
}

.hero-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-img-fill {
  position: absolute;
  inset: 0;
  background-image: url('../../assets/images/index-hero.jpg');
  background-size: cover;
  background-position: center;
  filter: saturate(0.6) brightness(0.7);
  transition: transform 0.8s var(--ease);
}

.hero-img:hover .hero-img-fill {
  transform: scale(1.03);
}

.hero-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.2) 40%, rgba(10,10,10,0.7) 100%);
  z-index: 1;
}

.hero-photo-label {
  position: absolute;
  bottom: 40px;
  right: 48px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  z-index: 2;
}

.hero-body {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 160px;
}

.hero-content {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  width: 100%;
}

.hero-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--white);
  max-width: 820px;
  margin-bottom: 32px;
}

.hero-h1 em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 600px;
  margin-bottom: 32px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-hero {
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
}

.btn-hero:hover {
  background: rgba(255, 255, 255, 0.9);
}

.btn-hero-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-hero-ghost:hover {
  color: var(--white);
  border-color: var(--white);
}

.hero-stats-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid var(--rule);
  z-index: 4;
}

.hero-stats-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: stretch;
}

.hero-stat {
  flex: 1;
  padding: 24px 32px 24px 0;
  border-right: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-stat:last-child {
  border-right: none;
  padding-left: 32px;
}

.hero-stat:first-child {
  padding-left: 0;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.hero-stat-text {
  font-size: 12px;
  color: var(--mid);
  line-height: 1.5;
  font-weight: 300;
  max-width: 120px;
}

/* ============ SERVICES STRIP ============ */
#services-strip {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}

.services-strip-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
}

.ss-item {
  flex: 1;
  padding: 32px 28px;
  border-right: 1px solid var(--rule);
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  cursor: default;
  transition: background 0.2s;
  position: relative;
}

.ss-item:last-child {
  border-right: none;
}

.ss-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.ss-item:hover::after {
  transform: scaleX(1);
}

.ss-item:hover {
  background: var(--paper);
}

.ss-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--light);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  margin-top: 2px;
}

.ss-content {
  padding-top: 2px;
}

.ss-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.ss-sub {
  font-size: 11px;
  color: var(--light);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

/* ============ ABOUT SECTION ============ */
#about {
  background: var(--white);
  border-top: 1px solid var(--rule);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.about-img {
  position: relative;
  overflow: hidden;
}

.about-img-fill {
  position: absolute;
  inset: 0;
  background-image: url('../../assets/images/index-about.jpg');
  background-size: cover;
  background-position: center;
  filter: saturate(0.6) brightness(0.85);
  transition: transform 0.6s var(--ease);
}

.about-img:hover .about-img-fill {
  transform: scale(1.05);
}

.about-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.03) 50%, rgba(0,0,0,0.15) 100%);
  z-index: 1;
}

.about-img-caption {
  position: absolute;
  bottom: 24px;
  left: 28px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  z-index: 2;
}

.about-text {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.about-h2 em {
  font-style: italic;
  color: var(--mid);
}

.about-body {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 36px;
}

.about-body + .about-body {
  margin-top: -20px;
}

.about-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  margin-top: var(--space-xs);
}

.am-item {
  padding: 24px 0;
  border-right: 1px solid var(--rule);
  padding-right: 24px;
}

.am-item:nth-child(even) {
  border-right: none;
  padding-left: 24px;
  padding-right: 0;
}

.am-item:nth-child(n+3) {
  border-top: 1px solid var(--rule);
}

.am-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.03em;
}

.am-label {
  font-size: 11px;
  color: var(--light);
  margin-top: 4px;
  font-weight: 400;
}

/* ============ WHY CHOOSE US ============ */
#why {
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.why-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

.why-left {
  position: relative;
}

.why-h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.why-h2 em {
  font-style: italic;
}

.why-body {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 36px;
}

.why-right {
  position: relative;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-point {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
}

.why-point:first-child {
  border-top: 1px solid var(--rule);
}

.wp-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--light);
  letter-spacing: 0.08em;
  padding-top: 3px;
}

.wp-content {
  flex: 1;
}

.wp-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-xs);
}

.wp-body {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.75;
  font-weight: 300;
}

/* ============ COMPLIANCE STRIP ============ */
#compliance {
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.compliance-inner {
  display: flex;
  align-items: center;
  gap: 0;
}

.compliance-label-col {
  flex-shrink: 0;
  padding-right: 48px;
  border-right: 1px solid var(--rule);
}

.compliance-label-text {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

.compliance-badges {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
}

.cb-badge {
  padding: 28px 36px;
  border-right: 1px solid var(--rule);
  flex: 1;
  min-width: 160px;
}

.cb-badge:last-child {
  border-right: none;
}

.cb-badge-code {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.cb-badge-name {
  font-size: 11px;
  color: var(--light);
  font-weight: 300;
}

/* ============ CONTENT BLOCKS ============ */
#content-blocks {
  background: var(--white);
}

.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  border-bottom: 1px solid var(--rule);
}

.content-block.reverse {
  direction: rtl;
}

.content-block.reverse > * {
  direction: ltr;
}

.cb-img {
  position: relative;
  overflow: hidden;
}

.cb-img-fill {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.6) brightness(0.88);
  transition: transform 0.6s var(--ease);
}

.cb-img:hover .cb-img-fill {
  transform: scale(1.05);
}

.cb-img-1 {
  background-image: url('../../assets/images/index-hero.jpg');
}

.cb-img-2 {
  background-image: url('../../assets/images/index-cb-2.jpg');
}

.cb-img-3 {
  background-image: url('../../assets/images/index-cb-3.jpg');
}

.cb-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.06) 0%, rgba(0,0,0,0.01) 50%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}

.cb-img-label {
  position: absolute;
  bottom: 24px;
  left: 28px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.cb-text {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cb-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cb-tag::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--rule);
  display: block;
}

.cb-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.cb-body {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 32px;
}

.cb-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.cb-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
  font-weight: 300;
}

.cb-list-item::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--light);
  margin-top: 10px;
  flex-shrink: 0;
}

/* ============ DARK SECTION ============ */
#dark-section {
  background: var(--black);
  border-top: 1px solid #1a1a1a;
}

.dark-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.dark-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.dark-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.dark-left {
  position: relative;
}

.dark-h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.dark-h2 em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.4);
}

.dark-body {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 36px;
}

.dark-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dark-item {
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 24px;
}

.dark-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.di-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: 0.08em;
  padding-top: 2px;
}

.di-content {
  flex: 1;
}

.di-title {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-xs);
}

.di-body {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.75;
  font-weight: 300;
}

/* ============ RESULTS ============ */
#results {
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  flex-wrap: wrap;
  gap: 24px;
}

.results-h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.results-h2 em {
  font-style: italic;
  color: var(--mid);
}

.result-row {
  display: grid;
  grid-template-columns: 240px 1fr 1fr auto;
  gap: 40px;
  align-items: start;
  padding: 48px 0;
  border-top: 1px solid var(--rule);
}

.result-row:last-child {
  border-bottom: 1px solid var(--rule);
}

.rr-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light);
  padding-top: 4px;
}

.rr-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.4;
  margin-bottom: 12px;
}

.rr-body {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.75;
  font-weight: 300;
}

.rr-metrics {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rr-metric-val {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.03em;
}

.rr-metric-label {
  font-size: 11px;
  color: var(--light);
  font-weight: 300;
  margin-top: 3px;
}

.rr-action {
  align-self: center;
}

.rr-action .btn {
  white-space: nowrap;
}

/* ============ INSIGHTS ============ */
#insights {
  background: var(--white);
  border-top: 1px solid var(--rule);
}

.insights-header {
  max-width: 680px;
  margin-bottom: 72px;
}

.insights-h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.insights-h2 em {
  font-style: italic;
  color: var(--mid);
}

.insights-intro {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.85;
  font-weight: 300;
  max-width: 580px;
}

.insights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}

.insight-card {
  padding: 48px 40px 48px 0;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  position: relative;
  transition: background 0.3s var(--ease);
}

.insight-card:nth-child(even) {
  padding-left: 40px;
  padding-right: 0;
  border-right: none;
}

.insight-card:nth-child(odd) {
  padding-left: 0;
}

.insight-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.insight-card:hover::after {
  transform: scaleX(1);
}

.insight-card:hover {
  background: var(--paper);
}

.insight-meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: 20px;
}

.insight-category {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.insight-date {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--light);
}

.insight-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  transition: color 0.2s var(--ease);
}

.insight-card:hover .insight-title {
  color: var(--ink-2);
}

.insight-excerpt {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insight-link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--ink);
  transition: all 0.2s var(--ease);
}

.insight-link:hover {
  color: var(--mid);
  border-color: var(--mid);
}

.insight-link .arrow-r {
  width: 12px;
  height: 12px;
  transition: transform 0.2s var(--ease);
}

.insight-card:hover .insight-link .arrow-r {
  transform: translateX(3px);
}

.insight-read-time {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--light);
  letter-spacing: 0.04em;
  margin-top: 4px;
}

/* ============ CTA ============ */
#cta {
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.cta-left {
  position: relative;
}

.cta-h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.cta-h2 em {
  font-style: italic;
  color: var(--mid);
}

.cta-body {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 36px;
}

.cta-contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}

.cta-contact-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.cci-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light);
  flex-shrink: 0;
  min-width: 60px;
  padding-top: 2px;
}

.cci-val {
  font-size: 14px;
  color: var(--ink);
  font-weight: 400;
}

.cci-val a {
  color: inherit;
}

.cta-form {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 48px 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.form-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}

/* ============ DISCLAIMER NOTE ============ */
.disclaimer-note {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--light);
  letter-spacing: 0.06em;
  margin-top: var(--space-lg);
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  line-height: 1.7;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-text {
    padding: 56px 40px;
  }

  .why-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .dark-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .result-row {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .rr-tag {
    grid-column: span 2;
  }

  .insights-grid {
    grid-template-columns: 1fr;
  }

  .insight-card {
    border-right: none;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .cb-badge {
    min-width: 140px;
    padding: 24px 24px;
  }
}

@media (max-width: 768px) {
  .hero-stats-inner {
    flex-direction: column;
  }

  .hero-stat {
    border-right: none;
    border-bottom: 1px solid var(--rule);
    padding: 20px 0;
  }

  .hero-stat:last-child {
    border-bottom: none;
  }

  .content-block {
    grid-template-columns: 1fr;
  }

  .content-block.reverse {
    direction: ltr;
  }

  .cb-text {
    padding: 48px 24px;
  }

  .about-text {
    padding: 40px 24px;
  }

  .cta-form {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .results-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .result-row {
    grid-template-columns: 1fr;
  }

  .rr-tag {
    grid-column: span 1;
  }

  .hero-h1 {
    font-size: clamp(36px, 9vw, 64px);
  }

  .insight-card {
    padding: 32px 0;
  }

  .insights-header {
    margin-bottom: 48px;
  }

  .hero-photo-label {
    right: 20px;
    bottom: 24px;
  }

  #hero {
    min-height: auto;
  }
  .hero-body {
    padding-bottom: 0;
  }
  .hero-stats-strip {
    position: relative;
  }
}
