*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --black: #0a0a0a;
  --black-2: #111111;
  --black-3: #181818;
  --black-4: #202020;
  --black-5: #282828;
  --orange: #e85d04;
  --orange-bright: #ff6b1a;
  --orange-pale: #ff8c42;
  --orange-border: rgba(232, 93, 4, 0.35);
  --orange-dim: rgba(232, 93, 4, 0.08);
  --white: #f5f3ef;
  --white-soft: #d9d6d0;
  --gray: #777;
  --gray-light: #999;
  --radius: 3px;
  --radius-lg: 8px;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--black);
  color: var(--white);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 38px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 6%;
  background: rgba(10, 10, 10, 0.93);
  backdrop-filter: blur(14px);
  border-bottom: 0.5px solid rgba(232, 93, 4, 0.2);
}
.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.nav-logo span {
  color: var(--orange);
}
.nav-logo-img {
  height: 42px;
  max-height: 42px;
  width: auto;
  max-width: 44px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--orange);
}
.nav-cta {
  font-size: 0.76rem !important;
  color: var(--black) !important;
  background: var(--orange);
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius);
  transition: background 0.2s !important;
}
.nav-cta:hover {
  background: var(--orange-bright) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.2s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 38px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(10, 10, 10, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding-top: 72px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  text-decoration: none;
  font-size: 1.6rem;
  font-family: "Cormorant Garamond", serif;
  color: var(--white);
  transition: color 0.2s;
}
.mobile-menu a:hover {
  color: var(--orange);
}
.mob-cta {
  font-family: "DM Sans", sans-serif !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--black) !important;
  padding: 1rem 2.5rem;
  border-radius: var(--radius);
}

/* ── NAV DROPDOWN ── */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a::after {
  content: " ▾";
  font-size: 0.6rem;
  vertical-align: middle;
  opacity: 0.6;
}
.nav-dropdown .dropdown-menu {
  list-style: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(14, 14, 14, 0.97);
  border: 0.5px solid rgba(232, 93, 4, 0.25);
  border-radius: var(--radius);
  min-width: 210px;
  padding: 0.4rem 0;
  backdrop-filter: blur(16px);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu li {
  list-style: none;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.05);
}
.dropdown-menu li:last-child {
  border-bottom: none;
}
.dropdown-menu li a {
  display: block;
  padding: 0.65rem 1.2rem;
  font-size: 0.72rem !important;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gray-light) !important;
  white-space: nowrap;
  transition: color 0.18s, background 0.18s;
}
.dropdown-menu li a:hover {
  color: var(--orange) !important;
  background: rgba(232, 93, 4, 0.06);
}

/* ── SHARED ── */
section {
  padding: 5.5rem 6%;
}
.section-tag {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 3.5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--gray-light);
  line-height: 1.72;
}
.divider {
  width: 40px;
  height: 1px;
  background: var(--orange);
  margin: 1.2rem 0 2rem;
}
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--black);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.05rem 2.4rem;
  border-radius: var(--radius);
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-primary:hover {
  background: var(--orange-bright);
  transform: translateY(-1px);
}
.btn-ghost {
  display: inline-block;
  border: 0.5px solid rgba(232, 93, 4, 0.45);
  color: var(--orange-pale);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.05rem 2.4rem;
  border-radius: var(--radius);
  transition:
    border-color 0.2s,
    color 0.2s;
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 260px;
  background: var(--black-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--gray);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-lg);
}
.img-placeholder svg {
  opacity: 0.22;
  width: 44px;
  height: 44px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 6%;
  padding-top: 120px;
  position: relative;
  overflow: hidden;
  gap: 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 100% 50%,
    rgba(232, 93, 4, 0.07) 0%,
    transparent 65%
  );
}
.hero-left {
  position: relative;
  padding: 5rem 0;
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--orange);
}
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 4.5vw, 5.2rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--orange-pale);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--gray-light);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 0.5px solid rgba(255, 255, 255, 0.07);
}
.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--orange-pale);
  line-height: 1;
}
.stat-label {
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  color: var(--gray);
  margin-top: 0.25rem;
}
.hero-right {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-img-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 0.5px solid rgba(232, 93, 4, 0.12);
}
.hero-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(8px);
  border: 0.5px solid var(--orange-border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.4rem;
}
.hero-badge-logo {
  width: 110px;
  height: auto;
  display: block;
  margin-bottom: 0.5rem;
}
.badge-big-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  color: var(--orange-pale);
  line-height: 1;
}
.badge-big-label {
  font-size: 0.75rem;
  color: var(--gray-light);
  margin-top: 0.2rem;
}

/* ── TICKER ── */
.ticker-wrap {
  background: var(--orange);
  padding: 0.9rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 0;
  animation: ticker 28s linear infinite;
}
.ticker-track:hover {
  animation-play-state: paused;
}
.ticker-item {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 500;
  padding: 0 3rem;
}
.ticker-item::after {
  content: "◆";
  margin-left: 3rem;
  opacity: 0.5;
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── SOLUTION ── */
.solution {
  background: var(--black-2);
}
.solution-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3rem;
}
.solution-img-wrap {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 0.5px solid rgba(232, 93, 4, 0.12);
}
.solution-points {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.point {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.point-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 0.5px solid var(--orange-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 0.85rem;
  margin-top: 2px;
}
.point-text h4 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.point-text p {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.6;
}

/* ── PROCESS ── */
.process {
  background: var(--black);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  border: 0.5px solid rgba(232, 93, 4, 0.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.process-step {
  background: var(--black-2);
  padding: 2.4rem 2rem;
  position: relative;
  border-right: 0.5px solid rgba(232, 93, 4, 0.12);
}
.process-step:last-child {
  border-right: none;
}
.step-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(232, 93, 4, 0.12);
  line-height: 1;
  margin-bottom: 1rem;
}
.step-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--orange);
}
.process-step h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.process-step p {
  font-size: 0.87rem;
  color: var(--gray-light);
  line-height: 1.6;
}
.step-arrow {
  position: absolute;
  top: 50%;
  right: -14px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--black);
  z-index: 1;
}
.process-step:last-child .step-arrow {
  display: none;
}

/* ── SERVICES OVERVIEW ── */
.services-overview {
  background: var(--black);
}
.svc-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.svc-overview-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  background: var(--black-2);
  border: 0.5px solid rgba(232, 93, 4, 0.18);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, background 0.2s;
}
.svc-overview-card:hover {
  background: var(--black-3);
  border-color: rgba(232, 93, 4, 0.38);
}
.svc-overview-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(232, 93, 4, 0.12);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.svc-overview-icon {
  font-size: 1.3rem;
  color: var(--orange);
  margin-bottom: 1rem;
}
.svc-overview-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.8rem;
  line-height: 1.1;
}
.svc-overview-card p {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.8rem;
}
.svc-overview-link {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-pale);
  text-decoration: none;
  transition: color 0.2s;
  margin-top: auto;
}
.svc-overview-link:hover {
  color: var(--orange);
}

/* ── SERVICES ── */
.services {
  background: var(--black-2);
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 0.5px solid rgba(232, 93, 4, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(232, 93, 4, 0.1);
}
.service-card {
  background: var(--black-2);
  padding: 2.4rem 2rem;
  position: relative;
  transition: background 0.2s;
}
.service-card:hover {
  background: var(--black-3);
}
.service-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(232, 93, 4, 0.13);
  line-height: 1;
  margin-bottom: 0.8rem;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.6;
}
.service-arrow {
  position: absolute;
  top: 1.8rem;
  right: 1.8rem;
  color: rgba(232, 93, 4, 0.22);
  font-size: 1.1rem;
  transition:
    color 0.2s,
    transform 0.2s;
}
.service-card:hover .service-arrow {
  color: var(--orange);
  transform: translate(2px, -2px);
}

/* ── PLATFORMS BLOCK ── */
.platforms-block {
  margin-top: 3.5rem;
  padding: 2.5rem;
  border: 0.5px solid rgba(232, 93, 4, 0.2);
  border-radius: var(--radius-lg);
  background: var(--black-3);
}
.platforms-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.8rem;
}
.platforms-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.platform-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  flex: 1;
  min-width: 180px;
}
.platform-icon {
  color: var(--orange);
  font-size: 1.1rem;
  line-height: 1.3;
  flex-shrink: 0;
}
.platform-name {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.platform-desc {
  font-size: 0.82rem;
  color: var(--gray-light);
  line-height: 1.5;
}
.platforms-note {
  font-size: 0.85rem;
  color: var(--gray-light);
  line-height: 1.6;
  border-top: 0.5px solid rgba(255,255,255,0.07);
  padding-top: 1.2rem;
  margin-bottom: 0;
}

/* ── BACK OFFICE ── */
.backoffice {
  background: var(--black);
}
.backoffice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.backoffice-card {
  background: var(--black-2);
  border: 0.5px solid rgba(232, 93, 4, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  transition: border-color 0.2s, background 0.2s;
}
.backoffice-card:hover {
  background: var(--black-3);
  border-color: rgba(232, 93, 4, 0.35);
}
.backoffice-icon {
  font-size: 1.3rem;
  color: var(--orange);
  margin-bottom: 1rem;
}
.backoffice-card h3 {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.backoffice-card p {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.6;
}

/* ── CREATIVE SERVICES ── */
.creative {
  background: var(--black-2);
}
.creative-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.creative-card {
  background: var(--black-3);
  border: 0.5px solid rgba(232, 93, 4, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  transition: border-color 0.2s;
}
.creative-card:hover {
  border-color: rgba(232, 93, 4, 0.35);
}
.creative-card-header {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1.2rem;
  border-bottom: 0.5px solid rgba(232, 93, 4, 0.15);
}
.creative-icon {
  font-size: 1.2rem;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}
.creative-card h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
}
.creative-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.creative-list li {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}
.creative-list li::before {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 0.65em;
}

/* ── WHO WE SERVE ── */
.who {
  background: var(--black);
}
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.who-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.who-card-img {
  position: absolute;
  inset: 0;
}
.who-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.who-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.92) 0%,
    rgba(10, 10, 10, 0.3) 60%,
    transparent 100%
  );
}
.who-card-body {
  position: relative;
  padding: 2.2rem;
}
.who-tag {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}
.who-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.7rem;
  line-height: 1.1;
}
.who-card p {
  font-size: 0.88rem;
  color: var(--white-soft);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.who-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.who-list li {
  font-size: 0.84rem;
  color: var(--gray-light);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.who-list li::before {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}

/* ── NUMBERS ── */
.numbers {
  background: var(--orange);
  padding: 4rem 6%;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.number-item {
}
.number-big {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 400;
  color: var(--black);
  line-height: 1;
}
.number-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.65);
  margin-top: 0.4rem;
}

/* ── TRUST ── */
.trust {
  background: var(--black-2);
}
.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}
.trust-img-wrap {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 0.5px solid rgba(232, 93, 4, 0.12);
  position: sticky;
  top: 120px;
}
.trust-right {
}
.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.trust-badge {
  background: var(--black-3);
  border: 0.5px solid rgba(232, 93, 4, 0.13);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.6rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.badge-icon {
  font-size: 1.1rem;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}
.badge-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.badge-desc {
  font-size: 0.85rem;
  color: var(--gray-light);
  line-height: 1.55;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: var(--black);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial {
  background: var(--black-2);
  border: 0.5px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.testimonial-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.12rem;
  font-style: italic;
  color: var(--white-soft);
  line-height: 1.55;
  margin-bottom: 1.2rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--black-4);
  border: 0.5px solid var(--orange-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--orange-pale);
  letter-spacing: 0.05em;
}
.author-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
}
.author-role {
  font-size: 0.74rem;
  color: var(--gray);
}
.stars {
  color: var(--orange);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
}
.testimonial.featured {
  background: var(--black-3);
  border-color: rgba(232, 93, 4, 0.25);
  grid-column: span 1;
}

/* ── FAQ ── */
.faq {
  background: var(--black-2);
}
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  padding: 1.4rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-q:hover {
  color: var(--orange-pale);
}
.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 0.5px solid var(--orange-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 0.8rem;
  transition:
    transform 0.25s,
    background 0.2s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--orange);
  color: var(--black);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.25s;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 1.4rem;
}
.faq-a p {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.7;
}
.faq-img-wrap {
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 0.5px solid rgba(232, 93, 4, 0.12);
  position: sticky;
  top: 120px;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--black-3);
  border-top: 0.5px solid rgba(232, 93, 4, 0.2);
  border-bottom: 0.5px solid rgba(232, 93, 4, 0.2);
  padding: 5rem 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.cta-banner-text h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.6rem;
}
.cta-banner-text p {
  font-size: 0.95rem;
  color: var(--gray-light);
}
.cta-banner-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── CONTACT ── */
.contact {
  background: var(--black);
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}
.contact-info-block {
  position: sticky;
  top: 120px;
}
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.6rem;
}
.contact-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border: 0.5px solid var(--orange-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 0.85rem;
}
.contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.2rem;
}
.contact-val {
  font-size: 0.95rem;
  color: var(--white);
}
.contact-val a {
  color: var(--orange-pale);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-val a:hover {
  color: var(--orange);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group.full {
  grid-column: span 2;
}
.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--black-3);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 0.92rem;
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
  appearance: none;
}
.form-group select option {
  background: var(--black-3);
  color: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(232, 93, 4, 0.5);
}
.form-submit {
  grid-column: span 2;
  margin-top: 0.4rem;
}
.form-submit button {
  width: 100%;
  background: var(--orange);
  color: var(--black);
  border: none;
  font-family: "DM Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.1rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit button:hover {
  background: var(--orange-bright);
}

/* ── FOOTER ── */
footer {
  background: var(--black-2);
  border-top: 0.5px solid rgba(232, 93, 4, 0.15);
  padding: 3rem 6%;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand {
}
.footer-logo-img {
  width: 140px;
  height: auto;
  display: block;
  margin-bottom: 1rem;
  opacity: 0.9;
}
.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.footer-logo span {
  color: var(--orange);
}
.footer-tagline {
  font-size: 0.87rem;
  color: var(--gray);
  line-height: 1.65;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col ul a {
  text-decoration: none;
  font-size: 0.88rem;
  color: var(--gray-light);
  transition: color 0.2s;
}
.footer-col ul a:hover {
  color: var(--white);
}
.footer-bottom {
  border-top: 0.5px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--gray);
}

/* ── RESPONSIVE ── */

/* 1280 */
@media (max-width: 1280px) {
  .svc-overview-grid {
    grid-template-columns: 1fr 1fr;
  }
  .creative-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* 1024 */
@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
  .process-step {
    border-right: none;
    border-bottom: 0.5px solid rgba(232, 93, 4, 0.12);
  }
  .process-step:nth-child(odd) {
    border-right: 0.5px solid rgba(232, 93, 4, 0.12);
  }
  .process-step:nth-last-child(-n + 2) {
    border-bottom: none;
  }
  .step-arrow {
    display: none;
  }
  .numbers-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .backoffice-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* 900 */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 110px;
  }
  .hero-right {
    display: none;
  }
  .hero-left {
    padding: 3rem 0;
  }
  .solution-inner {
    grid-template-columns: 1fr;
  }
  .solution-img-wrap {
    aspect-ratio: 16/7;
  }
  .svc-overview-grid {
    grid-template-columns: 1fr 1fr;
  }
  .creative-grid {
    grid-template-columns: 1fr 1fr;
  }
  .who-grid {
    grid-template-columns: 1fr;
  }
  .trust-inner {
    grid-template-columns: 1fr;
  }
  .trust-img-wrap {
    position: static;
    aspect-ratio: 16/7;
  }
  .faq-inner {
    grid-template-columns: 1fr;
  }
  .faq-img-wrap {
    display: none;
  }
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .contact-info-block {
    position: static;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .services-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .services-header > p {
    max-width: 100% !important;
  }
}

/* 768 */
@media (max-width: 768px) {
  .svc-overview-grid {
    grid-template-columns: 1fr;
  }
  .creative-grid {
    grid-template-columns: 1fr;
  }
  section {
    padding: 4rem 5%;
  }
}

/* 640 */
@media (max-width: 640px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  nav {
    padding: 0.85rem 5%;
  }
  .nav-logo {
    font-size: 1rem;
  }
  .nav-logo-img {
    height: 30px;
    max-height: 30px;
    max-width: 32px;
  }
  .hero {
    padding-top: 100px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .process-step {
    border-right: none !important;
    border-bottom: 0.5px solid rgba(232, 93, 4, 0.12);
  }
  .process-step:last-child {
    border-bottom: none;
  }
  .numbers-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full,
  .form-submit {
    grid-column: span 1;
  }
  .hero-stats {
    flex-direction: column;
    gap: 1.2rem;
  }
  .btn-group {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  section {
    padding: 3.5rem 5%;
  }
  .cta-banner {
    flex-direction: column;
    text-align: center;
  }
  .cta-banner-btns {
    justify-content: center;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* 480 */
@media (max-width: 480px) {
  #topbar a:last-child {
    display: none !important;
  }
  .hero {
    padding-top: 96px;
  }
  .hero h1 {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }
  .section-title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }
  section {
    padding: 3rem 4.5%;
  }
  .backoffice-grid {
    grid-template-columns: 1fr;
  }
  .who-card {
    min-height: 320px;
  }
  .platform-item {
    min-width: 100%;
    flex: none;
  }
  .numbers-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* 380 */
@media (max-width: 380px) {
  nav {
    padding: 0.7rem 4%;
  }
  .nav-logo {
    font-size: 0.88rem;
  }
  .nav-logo-img {
    height: 26px;
    max-height: 26px;
    max-width: 28px;
  }
  section {
    padding: 2.5rem 4%;
  }
  .numbers-grid {
    grid-template-columns: 1fr;
  }
  .btn-primary,
  .btn-ghost {
    padding: 0.9rem 1.5rem;
    font-size: 0.78rem;
  }
}
