/**
 * Immersion Theme — Main CSS
 * Combined from Figma export: reset + global + desktop styles
 * Asset paths updated for WordPress theme structure (assets/images/)
 */

/* ═══════════════════════════════════════════════════════════════
   RESET
   ═══════════════════════════════════════════════════════════════ */

::before,
::after {
  --tw-content: "";
}

html,
:host {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  -webkit-tap-highlight-color: transparent;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  margin: 0;
  line-height: inherit;
  font-family: "Inter", sans-serif;
  background-color: #020202;
  container: body / inline-size;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  /* overflow-x: hidden; */
}

* {
  box-sizing: border-box;
}

hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}

abbr:where([title]) {
  text-decoration: underline dotted;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: inherit;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}

table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
  cursor: pointer;
}

:-moz-focusring {
  outline: auto;
}
:-moz-ui-invalid {
  box-shadow: none;
}

progress {
  vertical-align: baseline;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

p {
  margin: 0;
}
img {
  display: block;
  max-width: 100%;
}

/* ═══════════════════════════════════════════════════════════════
   GLOBAL TOKENS & UTILITIES
   ═══════════════════════════════════════════════════════════════ */

:root {
  --terra-trance-website-white: #fff;
  --terra-trance-website-cod-gray: #0e0e0e;
  --terra-trance-website-white-60: rgba(255, 255, 255, 0.6);
  --terra-trance-website-dusty-gray: #999;

  --font-family-font-1: "Inter";

  --margin-sm: 16px;
  --margin-md: 32px;
  --item-spacing-xs: 8px;
}

* {
  --min-screen-size: 430;
  --max-screen-size: 1920;
  --interpolate-diff: calc(var(--max-font-size) - var(--min-font-size));
  --interpolate: clamp(calc(var(--min-font-size) * 1px), calc((var(--min-font-size) * 1px) + var(--interpolate-diff) * ((100vw - calc(var(--min-screen-size) * 1px)) / (var(--max-screen-size) - var(--min-screen-size)))), calc(var(--max-font-size) * 1px));
}

/* Text utilities */
.text-small {
  color: var(--terra-trance-website-white-60);
  font-size: 13px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.385;
  letter-spacing: 0px;
}

.text-input {
  color: var(--terra-trance-website-dusty-gray);
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0px;
}

.heading-1 {
  color: #fff;
  --min-font-size: 30;
  --max-font-size: 70;
  font-size: var(--interpolate);
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  line-height: 1.086;
  letter-spacing: -2px;
}

.text-dark {
  color: #383631;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.11px;
}

.heading-4 {
  font-size: 20px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.8px;
}

.heading-3 {
  color: #fff;
  font-size: 60px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -2.3px;
}

.heading-2 {
  color: #fff;
  font-size: 40px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -2px;
}

.subtitle-white {
  color: var(--terra-trance-website-white);
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}

.heading-5 {
  color: #fff;
  font-size: 18px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -1px;
}

.text-link {
  color: rgba(255, 255, 255, 0.6);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.32px;
}

.sub-text2 {
  color: #fa6a3c;
}
.bold-white {
  color: #fff;
  font-weight: 600;
}
.sub-text4 {
  color: #fa683b;
}
.sub-text-gray {
  color: #9b9b9b;
}
.sub-text {
  text-transform: uppercase;
}

/* Section utilities */
.section-black {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #020202;
  padding: 100px;
}

/* UI objects utilities */
.card {
  background-color: #fa6a3c;
  border-radius: 3px;
}

.group {
  display: flex;
  flex-direction: column;
  padding: 0 16px;
}

.btn {
  width: 93px;
  display: flex;
  padding: 5px 9px;
  border: 1px solid #ebeef3;
  border-radius: 6px;
}

/* Hover utility */
.hover-bright:hover {
  filter: brightness(1.2);
}

/* ═══════════════════════════════════════════════════════════════
   DESKTOP LAYOUT
   ═══════════════════════════════════════════════════════════════ */

/* ── Shared buttons ─────────────────────────────────────────── */

.btn-link-default {
  width: 153px;
  display: flex;
  justify-content: center;
  font-style: normal;
  letter-spacing: -0.32px;
  text-align: center;
  background: linear-gradient(90deg, #fa6438 0%, #fb995f 100%) top left / auto auto no-repeat;
  padding: 16px 31px;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.375;
  white-space: nowrap;
}

.btn-number {
  margin-left: 40px;
  width: 153px;
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.375;
  letter-spacing: -0.32px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 15px 30px;
  border: 1px solid #fff;
  border-radius: 10px;
}

.text {
  width: 100%;
  max-width: 460px;
  color: var(--terra-trance-website-white);
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  /* background: linear-gradient(180deg, rgba(14, 14, 14, 0) 0%, #020202 100%) top left / auto auto no-repeat; */
  padding: 42px 40px 44px 40px;
}

.outreach__image {
  flex-shrink: 0;
  align-self: stretch;
  border-radius: 16px;
}

/* outreach__link */
.outreach__link {
  width: 56px;
  background-color: #fff;
  padding: 15px 21px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}

.outreach__link:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.outreach__link:hover .outreach__link-icon path {
  stroke: #fff;
}

.outreach__link-icon path {
  transition: stroke 0.2s ease;
}

.outreach__link-icon {
  width: 12px;
  height: 24px;
  flex-shrink: 0;
  display: block;
}

/* ── HEADER ─────────────────────────────────────────────────── */

.header {
  container: header / inline-size;
  position: relative;
  color: #fff;
}

/* ── HERO SECTION ───────────────────────────────────────────── */

.hero {
  container: hero / inline-size;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 86px;
  color: #fff;
  background: url(../images/BG.png) center top / cover no-repeat;
  padding: 160px 24px 220px 24px;
  overflow: hidden;
}

/* Fade the hero image smoothly into the dark section below */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 340px;
  background: linear-gradient(to bottom, transparent 0%, #020202 100%);
  pointer-events: none;
  z-index: 1;
}

.hero > * {
  position: relative;
  z-index: 2;
}

.header-row-top {
  container: header-row-top / inline-size;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1073px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: -2px;
  background-color: rgba(2, 2, 2, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 16px 16px 31px;
  border-radius: 16px;
}

.header-row-left {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.header-rect-left {
  margin-top: 6px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.header-text {
  text-align: left;
}

.header-row {
  display: flex;
  align-items: center;
  gap: 31px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.375;
}

.header-nav-links {
  display: flex;
  align-items: center;
  gap: 31px;
}

/* WordPress nav menu integration */
.header-nav-links .menu {
  display: flex;
  align-items: center;
  gap: 31px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav-links .menu-item > a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.32px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: opacity 0.2s;
}

.header-nav-links .menu-item > a:hover {
  opacity: 0.75;
}

/* Orange dot below active nav item */
.header-nav-links .menu-item > a::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background-color: transparent;
  transition: background-color 0.2s;
  flex-shrink: 0;
}

.header-nav-links .current-menu-item > a::after,
.header-nav-links .menu-item.active > a::after {
  background-color: #fa6a3c;
}

.header-btn-link {
  flex-shrink: 0;
}

/* ── BURGER BUTTON ─────────────────────────────────────────── */

.burger-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
}

.burger-btn:hover {
  background: none;
}

/* ── MOBILE MENU OVERLAY ────────────────────────────────────── */

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1001;
  background-color: #0a0503;
  flex-direction: column;
  padding: 20px 24px 32px;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  color: #fff;
}

.mobile-menu__nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 40px 0;
}

.mobile-menu__nav .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}

.mobile-menu__nav .menu-item > a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.5px;
  padding: 14px 0;
  text-decoration: none;
  transition: opacity 0.2s;
}

.mobile-menu__nav .menu-item > a:hover {
  opacity: 0.75;
}

/* Orange dot before active item text */
.mobile-menu__nav .menu-item > a::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background-color: transparent;
  flex-shrink: 0;
}

.mobile-menu__nav .current-menu-item > a::before,
.mobile-menu__nav .menu-item.active > a::before {
  background-color: #fa6a3c;
}

.mobile-menu__cta {
  display: block;
  width: 100%;
  text-align: center;
}

.header-section-hero {
  container: header-section-hero / inline-size;
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.091;
  letter-spacing: -0.32px;
  padding: 31px 40px 0 40px;
}

.header-title {
  width: 100%;
  min-width: min(813px, 100%);
  text-align: center;
}

.header-numbers-plus {
  container: header-numbers-plus / inline-size;
  display: flex;
  align-items: flex-end;
  gap: 480px;
  align-self: stretch;
}

.header-numbers {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Hero section stats */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.hero-section-subtitle {
  color: #fff;
  font-size: 40px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.8px;
  text-align: left;
}

.hero-section-text {
  color: #fff;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.375;
  letter-spacing: -0.32px;
  text-align: left;
}

.header-text-container5 {
  max-width: 460px;
  flex-grow: 1;
  text-align: left;
}

/* ── SECTION 1: Service Cards ───────────────────────────────── */

.symbol1 {
  position: relative;
  overflow: hidden;
  overflow-y: clip;
  letter-spacing: -1px;
  padding: 0 0 60px;
  margin-top: -120px;
  z-index: 2;
}

/* Sliding track — translated by JS */
.cards-track {
  display: flex;
  align-items: flex-end;
  gap: 0;
  will-change: transform;
  transition: transform 0.45s ease;
}

/* card-a shared background base */
.card-a {
  position: relative;
  text-align: left;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.card2 {
  background-image: url(../images/card/card1.png);
}

.card3 {
  background: url(../images/card1.png) top center / cover no-repeat;
}

.card-text4 {
  max-width: 100%;
}

.card4 {
  background: url(../images/card2.png) center / cover no-repeat;
}

.card5 {
  background-image: url(../images/card/card2.png);
}

/* ── CAROUSEL FEATURE CARDS ──────────────────────────────────── */

.cards-track > div {
  position: relative;
  flex: 0 0 460px;
  width: 460px;
  height: 500px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer;
  filter: brightness(1);
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  transition: filter 0.45s ease;
}

/* Cards overlap 10px with their neighbour */
.cards-track > div + div {
  margin-left: -10px;
}

/* Last card gets positive margin instead */
.cards-track > div:last-child {
  margin-left: 20px;
}

/* Last card when active — pull it back in line with others */
.cards-track > div:last-child.active {
  margin-left: -10px;
}

/* Last card when it becomes .next — restore its positive margin */
.cards-track > div:last-child.next {
  margin-left: -10px;
}

.cards-track > div.active {
  flex: 0 0 530px;
  width: 530px;
  height: 576px;
  z-index: 2;
  filter: grayscale(0) brightness(1);
  margin-bottom: -40px;
}

/* Orange gradient overlay on active card */
.cards-track > div::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 51, 0, 0.65), rgba(255, 51, 0, 0.65)), linear-gradient(180deg, rgba(250, 106, 60, 0) 40%, rgba(180, 30, 0, 0.9) 100%);
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
}

.cards-track > div.active::before {
  opacity: 1;
}

/* Dark bottom gradient — always visible on all cards */
.cards-track > div::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 150px;
  background: url(../images/Black\ Gradient.png) center bottom / cover no-repeat;
  z-index: 1;
  pointer-events: none;
}

/* Keep button + text above both overlays */
.cards-track > div > .btn-number,
.cards-track > div > .text {
  position: relative;
  z-index: 3;
}

/* Button: slightly faded when not active */
.cards-track > div > .btn-number {
  opacity: 0.55;
  margin-left: 0;
  transition: opacity 0.35s ease;
}

.cards-track > div.active > .btn-number {
  opacity: 1;
}

/* Text labels */
.cards-track > div > .text {
  max-width: 100%;
  padding: 0;
  font-size: clamp(18px, 1.8vw, 26px);
  opacity: 0.65;
  transition: opacity 0.4s ease;
}

.cards-track > div.active > .text {
  opacity: 1;
}

/* ── SECTION 2: Process ─────────────────────────────────────── */

.process-section {
  color: #fff;
  font-weight: 600;
  letter-spacing: -2px;
  text-align: right;
}

.process {
  container: process / inline-size;
  width: 100%;
  max-width: 1720px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.process__header {
  display: flex;
  flex-direction: column;
  gap: 2px;
  --min-font-size: 30;
  --max-font-size: 70;
  font-size: var(--interpolate);
  line-height: normal;
}

.process__title {
  text-transform: uppercase;
}

.process__steps {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 84px;
  font-size: 48px;
  line-height: 1.583;
  padding-bottom: 17px;
}

/* Process Step Base Styles */
.process__step {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex-grow: 1;
  text-align: left;
}

.process__step-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.process__step-number {
  align-self: stretch;
}

.process__step-title {
  margin-top: -10px;
  color: #fff;
  font-size: 40px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -2px;
  text-align: left;
}

.process__step-description {
  align-self: stretch;
  color: #b4b4b4;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.375;
  letter-spacing: -0.32px;
  text-align: left;
}

.process__graphic--1 {
  position: absolute;
  top: 0;
  left: 394px;
  width: 30px;
  height: 275px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.process__graphic--1::before {
  content: "";
  width: 1px;
  height: 260px;
  background: rgba(224, 114, 86, 0.45);
  flex-shrink: 0;
}

.process__graphic--1::after {
  content: "";
  position: absolute;
  bottom: 62%;
  left: 50%;
  transform: translateX(-50%);
  width: 27px;
  height: 27px;
  aspect-ratio: 30 / 30;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23' height='26' viewBox='0 0 23 26' fill='none'%3E%3Cpath d='M22.5527 12.9904L0.00028801 -2.47955e-05V25.9807L22.5527 12.9904Z' fill='%23FA6A3C'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.process__graphic--2 {
  position: absolute;
  top: 38px;
  left: 845px;
  width: 30px;
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.process__graphic--2::before {
  content: "";
  width: 1px;
  height: 260px;
  background: rgba(224, 114, 86, 0.45);
  flex-shrink: 0;
}

.process__graphic--2::after {
  content: "";
  position: absolute;
  bottom: 62%;
  left: 50%;
  transform: translateX(-50%);
  width: 27px;
  height: 27px;
  aspect-ratio: 30 / 30;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23' height='26' viewBox='0 0 23 26' fill='none'%3E%3Cpath d='M22.5527 12.9904L0.00028801 -2.47955e-05V25.9807L22.5527 12.9904Z' fill='%23FA6A3C'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.process__graphic--3 {
  position: absolute;
  top: 103px;
  left: 1296px;
  width: 30px;
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.process__graphic--3::before {
  content: "";
  width: 1px;
  height: 260px;
  background: rgba(224, 114, 86, 0.45);
  flex-shrink: 0;
}

.process__graphic--3::after {
  content: "";
  position: absolute;
  bottom: 62%;
  left: 50%;
  transform: translateX(-50%);
  width: 27px;
  height: 27px;
  aspect-ratio: 30 / 30;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23' height='26' viewBox='0 0 23 26' fill='none'%3E%3Cpath d='M22.5527 12.9904L0.00028801 -2.47955e-05V25.9807L22.5527 12.9904Z' fill='%23FA6A3C'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Process Step 1 */
.process__step--1 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex-grow: 1;
  text-align: left;
}

.process__step--1 .process__step-header {
  width: 167px;
  display: flex;
  flex-direction: column;
}

.process__step--1 .process__step-title {
  margin-top: -10px;
  text-align: left;
}

.process__step--1 .process__step-description {
  align-self: stretch;
  color: #b4b4b4;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.32px;
}

/* Process Step 2 */
.process__step--2 {
  margin-top: 51px;
}
.process__step--2 .process__step-header {
  width: 167px;
  align-items: stretch;
}
.process__step--2 .process__step-number {
  align-self: unset;
}

/* Process Step 3 */
.process__step--3 {
  margin-top: 101px;
}
.process__step--3 .process__step-header {
  width: 277px;
}
.process__step--3 .process__step-description {
  margin-right: 23px;
}

/* Process Step 4 */
.process__step--4 {
  margin-top: 158px;
}
.process__step--4 .process__step-header {
  width: 132px;
}

/* ── SECTION 3: Intelligent Outreach ───────────────────────── */

.outreach-section {
  display: flex;
  flex-direction: column;
  letter-spacing: -1px;
  text-align: left;
  background-color: #020202;
  padding: 100px 0;
  overflow: hidden;
}

.outreach {
  container: outreach / inline-size;
  margin: 0 -246px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 67px;
  padding-top: 10px;
}

.outreach__title {
  margin: 0 auto;
  width: 90%;
  max-width: 1310px;
  color: #9b9b9b;
  --min-font-size: 28;
  --max-font-size: 64;
  font-size: var(--interpolate);
  font-weight: 300;
  line-height: 0.5;
}

.outreach__content {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  align-self: stretch;
  position: relative;
}

.outreach__left {
  width: 492px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  padding-bottom: 40px;
  padding-right: 24px;
  position: relative;
  z-index: 10;
}

.outreach__link--1 .outreach__link-icon {
  transform: scaleX(-1);
}

/* ── Outreach Carousel Stage ────────────────────────────────── */

.outreach__stage {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 1380px;
  position: relative;
  /* Responsive height: ~380px on mobile → ~600px on 1920px screen */
  height: clamp(380px, 31.25vw, 600px);
  z-index: 0;
  overflow: visible;
}

.outreach__slide {
  position: absolute;
  left: 50%;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  will-change: transform, opacity, filter;
}

.outreach__slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.outreach__slide-overlay {
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.outreach__slide-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px 40px 40px 40px;
  z-index: 1;
}

.outreach__featured-title {
  align-self: stretch;
}

.outreach__featured-btn {
  margin-left: unset;
  align-self: end;
}

.outreach__right {
  width: 492px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 76px;
  padding-left: 24px;
  position: relative;
  z-index: 10;
}

/* ── SECTION 4: About ───────────────────────────────────────── */

.about {
  container: about / inline-size;
  display: flex;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 100px;
  align-items: flex-end;
  align-content: flex-end;
  gap: 70px 24px;
  flex-wrap: wrap;
  background-color: #020202;
}

.about__header {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(32px, 8cqi, 252px);
  color: #9b9b9b;
  font-weight: 400;
}

.about__label {
  flex: 0 0 auto;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -1px;
  text-align: left;
}

.about__desc {
  width: min(1329px, 100%);
  /* flex-shrink: 0; */
  color: #9b9b9b;
  font-family: "Inter", sans-serif;
  font-size: clamp(22px, 2.8cqi, 40px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -2px;
  text-align: left;
}

.about__desc .bold-white {
  color: #fff;
  font-weight: 600;
}

.about__gallery {
  width: 100%;
  display: flex;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.about__photo {
  flex-shrink: 1;
  border-radius: 16px;
  height: auto;
}

.about__photo--1 {
  flex: 1 1 350px;
  max-width: 592px;
  width: 100%;
}
.about__photo--2 {
  flex: 1 1 280px;
  max-width: 492px;
  width: 100%;
}

.about__cta {
  flex: 0 1 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  text-align: left;
}

.about__cta-title {
  align-self: stretch;
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}

/* ── SECTION 5: News ────────────────────────────────────────── */

.col4 {
  container: col4 / inline-size;
  gap: 100px;
}

.title-plus-subtitle {
  width: 100%;
  max-width: 1720px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: #9b9b9b;
  font-size: 32px;
  font-weight: 600;
  line-height: 0.875;
  letter-spacing: -0.8px;
}

.title-plus-subtitle-small-area {
  margin-top: 8px;
  text-align: left;
}

.title-plus-subtitle-subtitle {
  text-align: left;
}

.row-bottom {
  width: 100%;
  max-width: 1720px;
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding-right: 4px;
}

/* News Card Base Styles */
.news-card {
  width: 100%;
  min-height: 468px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
  text-align: left;
  background-color: #f4f4f4;
  padding: 8px;
  border-radius: 16px;
}

.news-card__image {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.571;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 16px 16px 252px 16px;
  border-radius: 10px;
}

.news-card__category {
  justify-content: center;
  letter-spacing: -0.32px;
  background-color: rgba(2, 2, 2, 0.1);
}

.news-card__content {
  gap: 16px;
}

.news-card__title {
  color: var(--terra-trance-website-cod-gray);
}

/* Individual Card Styles */
.news-card--1 .news-card__image {
  background-image: url(../images/card-group/card-group1.png);
  background-position: top left;
}
.news-card--1 .news-card__category {
  background-color: rgba(0, 0, 0, 0.1);
}

.news-card--2 .news-card__image {
  background-image: url(../images/card-group/card-group2.png);
}

.news-card--3 .news-card__image {
  background-image: url(../images/card-group/card-group3.png);
  background-position: top left;
}

.news-card--4 .news-card__image {
  background-image: url(../images/card-group/card-group4.png);
}

/* ── FOOTER ─────────────────────────────────────────────────── */

.footer {
  container: footer / inline-size;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #020202;
  padding: 100px 100px 40px 100px;
}

.footer-row {
  width: 100%;
  max-width: 1720px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo-plus1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  padding-top: 8px;
}

.footer-text-small {
  color: var(--terra-trance-website-white);
  text-align: left;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.footer-email {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-text-container1 {
  color: var(--terra-trance-website-white-60);
  text-align: left;
}

.footer-text-container2 {
  color: var(--terra-trance-website-white);
  text-align: left;
}

.footer-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-text-container3 {
  color: var(--terra-trance-website-white-60);
  text-align: left;
}

.footer-text-container4 {
  width: 100%;
  max-width: 433px;
  text-align: left;
}

.footer-text-container5 {
  width: 100%;
  max-width: 433px;
  color: var(--terra-trance-website-white);
  text-align: left;
}

.footer-nav-to-s {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 4px;
}

/* container */
.footer-nav-to-s .container {
  display: flex;
  gap: var(--item-spacing-xs);
}

.container-text-bracket1 {
  color: var(--terra-trance-website-white-60);
  text-align: left;
}

.container-text {
  color: var(--terra-trance-website-white-60);
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.375;
  letter-spacing: -0.32px;
  text-align: left;
}

.container-text-bracket2 {
  color: var(--terra-trance-website-white-60);
  text-align: left;
}

.container1 {
  align-items: flex-start;
}
.container2 {
  align-items: center;
}

.footer-logo-plus2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 4px;
}

.footer-rect {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
}

.footer-text-container6 {
  color: rgba(255, 255, 255, 0.6);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
}

.footer-container1 {
  margin-top: -20px;
  width: 758px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  flex-shrink: 0;
  text-align: center;
}

.footer-container2 {
  width: 100%;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -2.3px;
  padding: 0 8px;
}

.footer-subtitle {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-transform: uppercase;
}

.footer-subtitle1 {
  color: var(--terra-trance-website-white-60);
}
.footer-subtitle-let-s-engineer {
  color: var(--terra-trance-website-white);
}

.footer-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 31px;
  align-self: stretch;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.375;
  letter-spacing: -0.32px;
  padding: 12px 20px 0 20px;
}

.footer-text-label {
  width: 100%;
  max-width: 612px;
  align-self: center;
  text-align: left;
}

.footer-form-input {
  align-self: stretch;
  background: transparent;
  border: none;
  border-bottom: var(--stroke-weight-1, 1px) solid var(--color-grey-22, #383838);
  border-radius: 0;
  padding: 14px 20px;
  color: #fff;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  outline: none;
  /* max-width: 612px; */
  align-self: center;
  width: 100%;
}

.footer-form-input::placeholder {
  color: #666;
}

.footer-link-default {
  align-self: stretch;
  background: linear-gradient(90deg, #fa693b 0%, #fb975e 100%) top left / auto auto no-repeat;
  padding: 16px 24px;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  border: none;
  cursor: pointer;
  /* max-width: 612px; */
  align-self: center;
  width: 100%;
}

.footer-link-default:hover {
  filter: brightness(1.1);
}

.footer-form-input[aria-invalid="true"] {
  border-bottom-color: #e05a3a;
}

.footer-email-error {
  color: #e05a3a;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  min-height: 0;
  margin-top: -20px;
}

.footer-success {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.2px;
  padding: 12px 0;
}

.footer-success[hidden] {
  display: none;
}

/* ═══════════════════════════════════════════════════════════════
   BREAKPOINTS (media queries)
   ═══════════════════════════════════════════════════════════════ */

@media screen and (max-width: 1450px) and (min-width: 697px) {
  .outreach__right {
    padding-left: 17px;
  }
}

@media screen and (max-width: 1280px) {
  .process-section {
    padding: 64px var(--margin-md);
  }
  .col4.section-black {
    padding: 64px var(--margin-md);
  }
  .text {
    padding-inline: var(--margin-md);
  }
  .hero {
    padding: 120px 24px 180px;
  }
  .header-section-hero {
    padding-inline: 0;
    align-items: flex-start;
  }
  .header-graphic1 {
    margin-inline: 0;
  }
  .header-graphic2 {
    margin-inline: 0;
  }
  .header-rect2 {
    margin-inline: 0;
  }
  .header-graphic3 {
    margin-inline: 0;
  }
  .symbol1 {
    padding-inline: var(--margin-sm);
  }
  .card2,
  .card3,
  .card4,
  .card5 {
    margin-inline: 0;
  }
  .process__step--3 .process__step-description {
    margin-inline: 0;
  }
  .outreach {
    margin-inline: 0;
  }
  .outreach__left,
  .outreach__right {
    width: 80px;
  }
  .outreach__slide-body {
    padding-inline: var(--margin-md);
  }
  .about {
    padding-inline: var(--margin-sm);
  }
  .footer-container2 {
    padding-inline: 0;
  }
  .footer-form {
    padding-inline: 0;
  }
  .footer-link-default {
    padding-inline: var(--margin-sm);
  }
  .footer {
    padding-inline: var(--margin-sm);
  }
}

@media screen and (max-width: 576px) {
  .process-section {
    padding: 48px var(--margin-sm);
  }
  .col4.section-black {
    padding: 48px var(--margin-sm);
  }
  .hero {
    padding: 100px 16px 160px;
  }
  .hero-section-subtitle {
    font-size: 32px;
  }
  .process__step-title {
    font-size: 28px;
  }
  .process__steps {
    font-size: 36px;
  }
  .text {
    padding-inline: var(--margin-sm);
  }
  .outreach__slide-body {
    padding-inline: var(--margin-sm);
  }
}

/* ═══════════════════════════════════════════════════════════════
   CONTAINER QUERIES
   ═══════════════════════════════════════════════════════════════ */

@container header (width < 967px) {
  /* Full-width sticky bar on tablet/mobile */
  .header-row-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    transform: none;
    border-radius: 0;
    padding: 14px 20px;
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
  .header-row {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
  .header-rect-left {
    margin-top: 0;
  }
  .header-text {
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -1px;
    text-transform: uppercase;
  }
}

@container header-row-top (width < 558px) {
  /* header-row is already hidden at this width, no changes needed */
}

@container header-section-hero (width < 1439px) {
  .header-numbers-plus {
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
  }
  .header-numbers-plus > * {
    text-align: left;
  }
  .header-numbers-plus > .header-text-container5 {
    width: 100%;
    max-width: 100%;
  }
  .header-title {
    text-align: left;
  }
  /* Tablet: keep stats in a row */
  .header-numbers {
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px 48px;
  }
}

@container header-section-hero (width < 560px) {
  /* Mobile: stack stats vertically */
  .header-numbers {
    flex-direction: column;
    gap: 32px;
  }
}

@container body (width < 680px) {
  .outreach-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .symbol1 {
    margin-top: -60px;
    padding-bottom: 40px;
  }

  .cards-track > div {
    flex: 0 0 315px;
    width: 315px;
    height: 343px;
    padding: 40px;
  }

  .cards-track > div.active {
    flex: 0 0 366px;
    width: 366px;
    height: 398px;
  }

  .cards-track > div + div {
    margin-left: -30px;
  }

  .cards-track > div:last-child {
    margin-left: -15px;
  }

  .cards-track > div:last-child.active {
    margin-left: -30px;
  }

  .cards-track > div:last-child.next {
    margin-left: -15px;
  }
}

@container process (width < 1719px) {
  /* Hide desktop-only absolutely-positioned SVG dividers */
  .process__graphic--1,
  .process__graphic--2,
  .process__graphic--3 {
    display: none;
  }

  .process__steps {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  /* Reset desktop staircase offsets */
  .process__steps > * {
    margin-left: unset !important;
    margin-top: unset !important;
    text-align: left;
  }

  /* All steps: full-width, left-aligned */
  .process__steps > .process__step--1,
  .process__steps > .process__step--2,
  .process__steps > .process__step--3,
  .process__steps > .process__step--4 {
    width: 100%;
    align-items: flex-start;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  /* Step header widths: auto on small screens */
  .process__step--1 .process__step-header,
  .process__step--2 .process__step-header,
  .process__step--3 .process__step-header,
  .process__step--4 .process__step-header {
    width: auto;
  }

  /* Separator line + orange triangle at bottom of each step except last */
  .process__step:not(:last-child) {
    position: relative;
  }

  .process__step:not(:last-child)::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(224, 114, 86, 0.45);
  }

  .process__step:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 31.853px;
    bottom: -15px;
    width: 30px;
    height: 30px;
    aspect-ratio: 1 / 1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='23' viewBox='0 0 26 23' fill='none'%3E%3Cpath d='M12.9902 22.5L25.9806 0H-0.000146866L12.9902 22.5Z' fill='%23FA6A3C'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
  }
}

@container outreach (width < 680px) {
  .outreach {
    gap: 32px;
    padding-top: 0;
  }

  .outreach__title {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 16px;
    line-height: 1;
  }

  .outreach__left {
    width: 56px;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
  }

  .outreach__right {
    width: 56px;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
  }

  .outreach__left .outreach__link,
  .outreach__right .outreach__link {
    display: flex;
    width: 32px;
    height: 30%;
    padding: 9.364px 18.143px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: #fff;
    transition: background-color 0.2s ease;
  }

  .outreach__left .outreach__link:hover,
  .outreach__right .outreach__link:hover {
    background-color: rgba(255, 255, 255, 0.3);
  }

  .outreach__left .outreach__link:hover .outreach__link-icon path,
  .outreach__right .outreach__link:hover .outreach__link-icon path {
    stroke: #fff;
  }

  .outreach__stage {
    height: 380px;
  }

  .outreach__slide-body {
    padding: 32px 20px 24px 20px;
  }

  .outreach__featured-title {
    font-size: clamp(20px, 5vw, 28px);
  }
}

/* Tablet: stack gallery, keep header side-by-side */
@container about (width < 900px) {
  .about {
    padding: 60px var(--margin-md);
  }
  .about__gallery {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .about__photo--1,
  .about__photo--2 {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    height: 340px;
    object-fit: cover;
  }
  .about__cta {
    flex: 0 0 auto;
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .about__cta .btn-link-default {
    width: 100%;
    max-width: 320px;
  }
}

/* Mobile: stack everything, tighten padding */
@container about (width < 600px) {
  .about {
    padding: 48px var(--margin-sm);
  }
  .about__header {
    flex-direction: column;
    gap: 20px;
  }
  .about__label {
    color: #9b9b9b;
    font-size: 32px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -1px;
  }
  .about__desc {
    width: 100%;
    font-size: 32px;
    line-height: 39px;
    letter-spacing: -2px;
  }
  .about__desc .bold-white {
    color: #fff;
    font-weight: 600;
    line-height: 39px;
  }
  .about__photo--1 {
    display: flex;
    height: 366px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
    border-radius: 16px;
  }
  .about__photo--2 {
    height: 366px;
  }
  .about__cta-title {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: -1px;
    text-align: left;
  }
  .about__cta .btn-link-default {
    display: flex;
    padding: 16px 31px;
    justify-content: center;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    border-radius: 10px;
    background: linear-gradient(90deg, #fa6438 0%, #fb995f 100%);
    width: 100%;
    max-width: 100%;
  }
}

@container col4 (width < 897px) {
  .title-plus-subtitle {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .title-plus-subtitle > * {
    margin-top: unset !important;
    text-align: left;
  }
  .title-plus-subtitle-subtitle {
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 39px;
    letter-spacing: -2.3px;
  }
  .title-plus-subtitle-subtitle .sub-text-gray {
    color: #9b9b9b;
    font-size: 32px;
    font-weight: 600;
    line-height: 39px;
    letter-spacing: -2.3px;
  }
  .title-plus-subtitle-small-area {
    margin-bottom: 56px;
  }
}

@container col4 (width < 1719px) {
  .row-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .row-bottom > * {
    text-align: left;
  }
  .row-bottom > .news-card {
    width: 100%;
  }
}

@container col4 (width < 500px) {
  .row-bottom {
    grid-template-columns: 1fr;
  }
}

@container footer (width < 1190px) {
  .footer-row {
    flex-direction: column;
    align-items: stretch;
    gap: 60px;
  }
  .footer-row > * {
    margin-top: unset !important;
  }
  /* Form section: comes first visually, stays centered */
  .footer-row > .footer-container1 {
    order: -1;
    width: 100%;
    max-width: 758px;
    min-width: 0;
    flex-shrink: 1;
    align-self: center;
    text-align: center;
  }
  /* Contact section: comes second, left-aligned */
  .footer-row > .footer-logo-plus1 {
    align-items: flex-start;
    align-self: flex-start;
  }
}

.mobile-break {
  display: none;
}

@media screen and (max-width: 767px) {
  .mobile-break {
    display: block;
  }
  .header-text-container5 {
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.32px;
  }
}

@container footer (width < 600px) {
  .footer-container2 {
    font-size: clamp(26px, 7cqi, 48px);
  }
  .footer-subtitle1 {
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 39px;
    letter-spacing: -2.3px;
    text-transform: uppercase;
  }
  .footer-subtitle-let-s-engineer {
    color: #fff;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 39px;
    letter-spacing: -2.3px;
    text-transform: uppercase;
  }
  .footer-text-container6 {
    color: rgba(255, 255, 255, 0.6);
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SIMPLE PAGE TEMPLATE (Privacy Policy, Terms, etc.)
   ═══════════════════════════════════════════════════════════════ */

.simple-page {
  display: flex;
  flex-direction: column;
  flex: 1;
  background-color: #020202;
  color: #fff;
}

/* ── Banner ─────────────────────────────────────────────────── */

.simple-page__banner {
  position: relative;
  padding: 160px 24px 220px;
  background: url(../images/BG.png) center top / cover no-repeat;
  overflow: hidden;
}

/* Bottom fade — same as hero section */
.simple-page__banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 340px;
  background: linear-gradient(to bottom, transparent 0%, #020202 100%);
  pointer-events: none;
  z-index: 1;
}

.simple-page__banner-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.simple-page__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.1px;
}

.simple-page__breadcrumb-home {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.simple-page__breadcrumb-home:hover {
  color: rgba(255, 255, 255, 0.75);
}

.simple-page__title {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -2px;
}

/* ── Content area ───────────────────────────────────────────── */

.simple-page__content {
  flex: 1;
  position: relative;
  z-index: 2;
  margin-top: -120px;
  padding: 0 24px 120px;
}

.simple-page__content-inner {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

/* ── Prose typography ───────────────────────────────────────── */

.simple-page__article {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: -0.15px;
  color: #fff;
}

.simple-page__article h1,
.simple-page__article h2,
.simple-page__article h3,
.simple-page__article h4,
.simple-page__article h5,
.simple-page__article h6 {
  color: #fff;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-top: 48px;
  margin-bottom: 16px;
}

.simple-page__article h2 {
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -1.5px;
}

.simple-page__article h3 {
  font-size: 20px;
  letter-spacing: -0.8px;
}

.simple-page__article h4 {
  font-size: 17px;
  letter-spacing: -0.4px;
}

.simple-page__article p {
  margin-bottom: 20px;
}

.simple-page__article a {
  color: #fa6a3c;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}

.simple-page__article a:hover {
  opacity: 0.8;
}

.simple-page__article ul,
.simple-page__article ol {
  padding-left: 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.simple-page__article ul li::marker {
  color: #fa6a3c;
}

.simple-page__article ol li::marker {
  color: rgba(255, 255, 255, 0.4);
}

.simple-page__article strong,
.simple-page__article b {
  color: #fff;
  font-weight: 600;
}

.simple-page__article em {
  color: rgba(255, 255, 255, 0.85);
}

.simple-page__article blockquote {
  margin: 32px 0;
  padding: 20px 24px;
  border-left: 3px solid #fa6a3c;
  background: rgba(250, 106, 60, 0.06);
  border-radius: 0 8px 8px 0;
  color: #fff;
  font-style: italic;
}

.simple-page__article hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 48px 0;
}

.simple-page__article table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 14px;
}

.simple-page__article th {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.simple-page__article td {
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
}

/* ── Responsive ─────────────────────────────────────────────── */

@media screen and (max-width: 767px) {
  .simple-page__banner {
    padding: 110px 16px 80px;
  }
  .simple-page__content {
    padding: 48px 16px 80px;
  }
  .simple-page__article h2 {
    margin-top: 36px;
  }
}
