/* ── TOKENS ── */
:root {
  --red: #E8001C;
  --red-dark: #B8001A;
  --red-soft: rgba(232, 0, 28, 0.07);
  --black: #0D0D0D;
  --ink: #1A1A1A;
  --muted: #2a2a2b;
  --border: #E5E7EB;
  --bg: #FFFFFF;
  --bg-alt: #F7F7F8;
  --bg-dark: #0D0D0D;
  --ff-disp: 'Manrope', sans-serif;
  --ff-body: 'Inter', sans-serif;
  --nav-h: 68px;
  --section-v: 50px;
  --section-v-m: 72px;
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.d-none {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

::selection {
  background: var(--red);
  color: #fff;
}

::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: #f0f0f0;
}

::-webkit-scrollbar-thumb {
  background: var(--red);
}

/* ── UTILITIES ── */
.container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 15px;
}

.lbl {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-disp);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
}

.lbl::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--red);
}

.lbl-white::before {
  background: #fff;
}

.h-display {
  font-family: var(--ff-disp);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.025em;
  font-size: clamp(32px, 4.5vw, 40px);
  color: var(--ink);
}

.h-display span {
  color: var(--red);
}

.h-display-white {
  color: #fff;
}

.h-display-white span {
  color: var(--red);
}

.body-lg {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
}

.body-md {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

.body-sm {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-disp);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all .22s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  padding: 13px 26px;
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 12px 26px;
  border: 1.5px solid var(--border);
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
}

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

.btn-ghost-white {
  background: transparent;
  color: #fff;
  padding: 12px 26px;
  border: 1.5px solid rgba(255, 255, 255, .25);
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
}

.btn-ghost-white:hover {
  border-color: rgba(255, 255, 255, .7);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 11px;
}

/* section divider */
.sec-divider {
  height: 1px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.sec-divider::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  animation: sweep 3s ease-in-out infinite;
}

@keyframes sweep {
  0% {
    left: -60%;
  }
  100% {
    left: 150%;
  }
}

/* ── REVEAL ANIMATIONS ── */
.rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s cubic-bezier(.25, .46, .45, .94), transform .65s cubic-bezier(.25, .46, .45, .94);
}

.rv.in {
  opacity: 1;
  transform: translateY(0);
}

.rv-l {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity .65s cubic-bezier(.25, .46, .45, .94), transform .65s cubic-bezier(.25, .46, .45, .94);
}

.rv-l.in {
  opacity: 1;
  transform: translateX(0);
}

.rv-r {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity .65s cubic-bezier(.25, .46, .45, .94), transform .65s cubic-bezier(.25, .46, .45, .94);
}

.rv-r.in {
  opacity: 1;
  transform: translateX(0);
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background-color: white;
  transition: background .3s, box-shadow .3s, border-color .3s;
}

#navbar .nb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

#navbar.scrolled {
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .06);
}

/* Logo */
.nb-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9100;
}

.nb-logo-mark {
  width: 34px;
  height: 34px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.nb-logo-mark i {
  color: #fff;
  font-size: 14px;
}

.nb-logo-text {
  font-family: var(--ff-disp);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -.02em;
  /* color: #fff; */
}

.nb-logo-text span {
  color: var(--red);
}

#navbar.scrolled .nb-logo-text {
  color: var(--ink);
}

/* Links */
.nb-links {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  margin-left: auto;
  padding-right: 28px;
}

.nb-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nb-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 16px;
  height: 100%;
  font-family: var(--ff-disp);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(12, 12, 12, 0.7);
  transition: color .2s;
  text-transform: uppercase;
  white-space: nowrap;
}

#navbar.scrolled .nb-link {
  color: var(--muted);
}

.nb-link i.arr {
  font-size: 8px;
  transition: transform .2s;
}

.nb-item:hover>.nb-link {
  color:var(--red);
}

#navbar.scrolled .nb-item:hover>.nb-link {
  color: var(--ink);
}

.nb-item:hover>.nb-link i.arr {
  transform: rotate(180deg);
}

.nb-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .2s;
}

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

/* Mega */
.nb-mega {
  position: absolute;
  top: calc(var(--nav-h) - 1px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border: 1px solid var(--border);
  min-width: 540px;
  padding: 24px;
  display: none;
  opacity: 0;
  transition: opacity .2s;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .1);
}

.nb-item:hover .nb-mega {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.nb-mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.nb-mega-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  transition: background .2s;
}

.nb-mega-item:hover {
  background: var(--bg-alt);
}

.nb-mega-icon {
  width: 34px;
  height: 34px;
  background: var(--red-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
  transition: background .2s;
}

.nb-mega-item:hover .nb-mega-icon {
  background: var(--red);
}

.nb-mega-icon i {
  color: var(--red);
  font-size: 13px;
  transition: color .2s;
}

.nb-mega-item:hover .nb-mega-icon i {
  color: #fff;
}

.nb-mega-label {
  font-family: var(--ff-disp);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1px;
}

.nb-mega-desc {
  font-size: 11.5px;
  color: var(--muted);
}

/* Dropdown */
.nb-drop {
  position: absolute;
  top: calc(var(--nav-h) - 1px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border: 1px solid var(--border);
  min-width: 190px;
  padding: 6px;
  display: none;
  opacity: 0;
  transition: opacity .2s;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .1);
}

.nb-item:hover .nb-drop {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.nb-drop a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  font-family: var(--ff-disp);
  font-size: 12.5px;
  color: var(--muted);
  transition: all .18s;
}

.nb-drop a:hover {
  color: var(--red);
  background: var(--bg-alt);
}

.nb-drop a i {
  font-size: 10px;
  color: var(--red);
  width: 12px;
}

/* CTA zone */
.nb-cta-zone {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.nb-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-disp);
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
  transition: color .2s;
}

#navbar.scrolled .nb-phone {
  color: var(--muted);
}

.nb-phone:hover {
  color: #fff;
}

#navbar.scrolled .nb-phone:hover {
  color: var(--ink);
}

.nb-phone i {
  color: var(--red);
  font-size: 11px;
}

.nb-cta-btn {
  background: var(--red);
  color: #fff;
  padding: 8px 18px;
  font-family: var(--ff-disp);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
  transition: background .2s;
}

.nb-cta-btn:hover {
  background: var(--red-dark);
}

/* Burger */
.nb-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  z-index: 9100;
}

.nb-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: all .3s;
}

#navbar.scrolled .nb-burger span {
  background: var(--ink);
}

.nb-burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}

.nb-burger.open span:nth-child(2) {
  opacity: 0;
}

.nb-burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* Mobile Nav */
#mobileNav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(360px, 100vw);
  height: 100dvh;
  background: #fff;
  z-index: 9050;
  border-left: 1px solid var(--border);
  transition: right .35s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

#mobileNav.open {
  right: 0;
}

.mob-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.mob-head .nb-logo-text {
  color: var(--ink);
}

.mob-close {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
  transition: all .2s;
}

.mob-close:hover {
  border-color: var(--red);
  color: var(--red);
}

.mob-body {
  padding: 14px 20px;
  flex: 1;
}

.mob-sec-lbl {
  font-family: var(--ff-disp);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #c0c0c0;
  padding: 10px 0 4px;
}

.mob-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--ff-disp);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: color .2s;
}

.mob-link:hover {
  color: var(--red);
}

.mob-link i {
  font-size: 11px;
  color: #ccc;
}

.mob-foot {
  padding: 18px 20px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.mob-phone-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-disp);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
}

.mob-phone-row i {
  color: var(--red);
}

.mob-cta {
  display: block;
  text-align: center;
  background: var(--red);
  color: #fff;
  padding: 13px;
  font-family: var(--ff-disp);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .2s;
}

.mob-cta:hover {
  background: var(--red-dark);
}

#navOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 9040;
  backdrop-filter: blur(4px);
}

#navOverlay.show {
  display: block;
}

/* ══════════════════════════════════════
   HERO SLIDER
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(10, 10, 10, .92) 0%, rgba(10, 10, 10, .78) 100%);
}

/* Slider */
.hero-slider {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: var(--nav-h);
}

.hero-slide {
  display: none;
  opacity: 0;
  transition: opacity .6s ease;
}

.hero-slide.active {
  display: block;
  opacity: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  min-height: calc(100vh - var(--nav-h));
  padding: 60px 0;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 0, 28, .12);
  border: 1px solid rgba(232, 0, 28, .3);
  padding: 5px 14px;
  width: fit-content;
}

.hero-badge span {
  font-family: var(--ff-disp);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
}

.hero-badge i {
  font-size: 8px;
  color: var(--red);
  animation: blink 2s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: .3;
  }
}

.hero-h1 {
  font-family: var(--ff-disp);
  font-weight: 800;
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.1;
  letter-spacing: -.035em;
  color: #fff;
}

.hero-h1 em {
  display: block;
  color: var(--red);
  font-style: normal;
  position: relative;
}

.hero-h1 em::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 55%;
  height: 2px;
  background: var(--red);
  opacity: .35;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.75;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.hero-stat {
  padding: 0 32px 0 0;
  border-right: 1px solid rgba(255, 255, 255, .1);
  margin-right: 32px;
}

.hero-stat:last-child {
  border-right: none;
  margin-right: 0;
}

.hero-stat-val {
  font-family: var(--ff-disp);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
}

.hero-stat-val span {
  color: var(--red);
}

.hero-stat-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Hero Right */
.hero-right {
  position: relative;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .09);
}

.hero-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  z-index: 3;
}

.hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  filter: grayscale(15%);
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, .4) 0%, transparent 55%);
  z-index: 1;
}

.hero-float {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(10, 10, 10, .9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .09);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.hero-float i {
  color: var(--red);
  font-size: 20px;
}

.hero-float-lbl {
  font-size: 10px;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero-float-val {
  font-family: var(--ff-disp);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.hero-trust {
  position: absolute;
  top: 18px;
  right: -8px;
  background: var(--red);
  color: #fff;
  padding: 7px 14px;
  font-family: var(--ff-disp);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  z-index: 3;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
}

/* Slide dots */
.hero-dots {
  position: absolute;
  bottom: 36px;
  left: 90%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  border: none;
  cursor: pointer;
  transition: all .3s;
}

.hero-dot.active {
  background: var(--red);
  width: 24px;
  border-radius: 4px;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  right: 50%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.scroll-hint span {
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
}

.scroll-mouse {
  width: 18px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 9px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.scroll-mouse::after {
  content: '';
  width: 1.5px;
  height: 5px;
  background: var(--red);
  border-radius: 1px;
  animation: scrollD 1.5s infinite;
}

@keyframes scrollD {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(8px);
    opacity: 0;
  }
}

/* ══════════════════════════════════════
   MARQUEE / TRUST BAR
══════════════════════════════════════ */
.trust-strip {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, .07);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  padding: 14px 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-lbl {
  font-family: var(--ff-disp);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
}

.trust-div {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, .1);
}

.trust-items {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, .45);
  font-size: 11.5px;
  font-family: var(--ff-disp);
}

.trust-item i {
  color: var(--red);
  font-size: 11px;
}

/* Marquee */
.marquee-sec {
  background: var(--red);
  padding: 12px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marqRun 32s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 36px;
  white-space: nowrap;
  border-right: 1px solid rgba(255, 255, 255, .2);
}

.marquee-item i {
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
}

.marquee-item span {
  font-family: var(--ff-disp);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
}

@keyframes marqRun {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services-sec {
  padding: var(--section-v) 0;
  background: var(--bg-alt);
}

.sec-head {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 30px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.svc-card {
  background: var(--bg);
  padding: 25px;
  position: relative;
  overflow: hidden;
  transition: all .25s;
  cursor: pointer;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--red);
  transition: height .35s;
}

.svc-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, .07);
}

.svc-card:hover::before {
  height: 100%;
}

.svc-icon {
  width: 46px;
  height: 46px;
  background: var(--red-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
  transition: background .25s;
}

.svc-card:hover .svc-icon {
  background: var(--red);
}

.svc-icon i {
  color: var(--red);
  font-size: 18px;
  transition: color .25s;
}

.svc-card:hover .svc-icon i {
  color: #fff;
}

.svc-title {
  font-family: var(--ff-disp);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.svc-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  font-family: var(--ff-disp);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  opacity: 0;
  transform: translateX(-5px);
  transition: all .25s;
}

.svc-card:hover .svc-link {
  opacity: 1;
  transform: translateX(0);
}

/* wide card */
.svc-card-wide {
  grid-column: 1/4;
}

.svc-card-wide .svc-inner {
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.svc-card-wide .svc-inner>div {
  flex: 1;
}

/* ══════════════════════════════════════
   CASE STUDIES
══════════════════════════════════════ */
.case-sec {
  padding: var(--section-v) 0;
  background: var(--bg);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.case-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all .25s;
}

.case-card:hover {
  border-color: var(--red);
}

.case-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.case-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.case-card:hover .case-img {
  transform: scale(1.04);
}

.case-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: #fff;
  font-family: var(--ff-disp);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
}

.case-body {
  padding: 15px;
}

.case-client {
  font-family: var(--ff-disp);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.case-title {
  font-family: var(--ff-disp);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
  color: var(--ink);
}

.case-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.case-results {
  display: flex;
  gap: 24px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  justify-content: space-between;
}

.case-result-val {
  font-family: var(--ff-disp);
  font-size: 22px;
  font-weight: 800;
  color: var(--red);
}

.case-result-lbl {
  font-size: 10.5px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.case-quote {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--border);
  font-size: 12.5px;
  color: #555;
  font-style: italic;
  line-height: 1.6;
}

.case-quote img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ══════════════════════════════════════
   GUARANTEE BANNER
══════════════════════════════════════ */
.guarantee {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  padding: 40px 0;
}

.guarantee-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}

.guarantee-icon {
  font-size: 32px;
  color: #fff;
}

.guarantee-text {
  font-family: var(--ff-disp);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
}

.guarantee-sub {
  color: rgba(255, 255, 255, .65);
  font-size: 12.5px;
  margin-top: 3px;
}

/* ══════════════════════════════════════
   VALUES / WHY US
══════════════════════════════════════ */
.values-sec {
  padding: var(--section-v) 0;
  background: var(--bg-dark);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .06);
  margin-top: 48px;
}

.val-card {
  background: var(--bg-dark);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background .2s;
}

.val-card:hover {
  background: rgba(232, 0, 28, .04);
}

.val-num {
  font-family: var(--ff-disp);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--red);
  text-transform: uppercase;
}

.val-title {
  font-family: var(--ff-disp);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}

.val-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   PORTFOLIO
══════════════════════════════════════ */
.portfolio-sec {
  padding: var(--section-v) 0;
  background: var(--bg);
}

.portfolio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 16px;
}

.pf-filters {
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--ff-disp);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  transition: all .2s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.pf-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.pf-item:first-child {
  grid-column: 1/3;
  aspect-ratio: 16/9;
}

.pf-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.pf-item:hover .pf-img {
  transform: scale(1.05);
}

.pf-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 10, 10, .92) 100%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.pf-item:hover .pf-overlay {
  opacity: 1;
}

.pf-cat {
  font-family: var(--ff-disp);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}

.pf-name {
  font-family: var(--ff-disp);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.pf-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.chip {
  font-size: 10.5px;
  color: rgba(255, 255, 255, .55);
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 1px 7px;
}

/* ══════════════════════════════════════
   STATS
══════════════════════════════════════ */
.stats-sec {
  padding: 0;
  background: var(--bg-dark);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.stat-block {
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, .06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}

.stat-block:last-child {
  border-right: none;
}

.stat-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width .5s;
}

.stat-block:hover::before {
  width: 100%;
}

.stat-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(232, 0, 28, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all .3s;
}

.stat-block:hover .stat-ring {
  border-color: var(--red);
  background: rgba(232, 0, 28, .08);
}

.stat-ring i {
  color: var(--red);
  font-size: 19px;
  transition: transform .3s;
}

.stat-block:hover .stat-ring i {
  transform: scale(1.1);
}

.stat-num {
  font-family: var(--ff-disp);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.04em;
  line-height: 1;
}

.stat-suf {
  color: rgba(255, 255, 255, .4);
  font-size: .5em;
  font-weight: 600;
}

.stat-lbl {
  font-family: var(--ff-disp);
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, .65);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 8px;
}

.stat-sub {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .3);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.stat-sub::before {
  content: '';
  width: 16px;
  height: 1px;
  background: rgba(232, 0, 28, .3);
}

/* ══════════════════════════════════════
   PROCESS
══════════════════════════════════════ */
.process-sec {
  padding: var(--section-v) 0;
  background: var(--bg-alt);
}

.process-head {
  text-align: center;
  margin-bottom: 30px;
}

.process-head .body-md {
  margin: 12px auto 0;
  text-align: center;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  position: relative;
}

.proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.proc-node-wrap {
  margin-bottom: 18px;
  position: relative;
}

.proc-node {
  width: 78px;
  height: 78px;
  background: #fff;
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all .3s;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 11px, 100% 100%, 11px 100%, 0 calc(100% - 11px));
}

.proc-step:hover .proc-node {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(232, 0, 28, .28);
}

.proc-node i {
  font-size: 20px;
  color: var(--red);
  transition: color .3s;
}

.proc-step:hover .proc-node i {
  color: #fff;
}

.proc-node-num {
  font-family: var(--ff-disp);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #ccc;
  transition: color .3s;
}

.proc-step:hover .proc-node-num {
  color: rgba(255, 255, 255, .6);
}

.proc-title {
  font-family: var(--ff-disp);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.proc-desc {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ══════════════════════════════════════
   INDUSTRIES
══════════════════════════════════════ */
.industries-sec {
  padding: var(--section-v) 0;
  background: var(--bg-dark);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .06);
}

.ind-card {
  background: var(--bg-dark);
  padding: 32px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: background .2s;
  cursor: pointer;
}

.ind-card:hover {
  background: rgba(232, 0, 28, .06);
}

.ind-icon {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}

.ind-card:hover .ind-icon {
  border-color: var(--red);
  background: rgba(232, 0, 28, .08);
}

.ind-icon i {
  font-size: 20px;
  color: rgba(255, 255, 255, .45);
  transition: color .2s;
}

.ind-card:hover .ind-icon i {
  color: var(--red);
}

.ind-name {
  font-family: var(--ff-disp);
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, .6);
  letter-spacing: .03em;
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testi-sec {
  padding: var(--section-v) 0;
  background: var(--bg-alt);
}

.testi-slider {
  position: relative;
  overflow: hidden;
}

.testi-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.testi-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.testi-card {
  background: #fff;
  padding: 28px;
  border: 1px solid var(--border);
  position: relative;
  transition: all .2s;
}

.testi-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 64px;
  color: rgba(232, 0, 28, .08);
  position: absolute;
  top: 6px;
  left: 18px;
  line-height: 1;
}

.testi-card:hover {
  border-color: var(--red);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .06);
}

.testi-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}

.testi-stars i {
  color: var(--red);
  font-size: 12px;
}

.testi-text {
  font-size: 14px;
  color: #444;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.testi-name {
  font-family: var(--ff-disp);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.testi-role {
  font-size: 11.5px;
  color: var(--muted);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 28px;
}

.slider-dot {
  width: 7px;
  height: 7px;
  background: var(--border);
  cursor: pointer;
  transition: all .2s;
  border: none;
}

.slider-dot.active {
  background: var(--red);
  width: 20px;
}

.slider-arrows {
  display: none;
  gap: 6px;
  justify-content: flex-end;
  margin-bottom: 16px;
}

.slider-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}

.slider-arrow:hover {
  background: var(--red);
  border-color: var(--red);
}

.slider-arrow:hover i {
  color: #fff;
}

.slider-arrow i {
  color: var(--muted);
  font-size: 13px;
  transition: color .2s;
}

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-sec {
  padding: var(--section-v) 0;
  background: var(--bg);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.faq-item {
  background: var(--bg-alt);
  border: 1px solid transparent;
  padding: 15px 20px;
  transition: all .2s;
  cursor: pointer;
}

.faq-item:hover {
  border-color: var(--border);
}

.faq-item.open {
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .05);
}

.faq-q {
  font-family: var(--ff-disp);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.faq-q i {
  color: var(--red);
  font-size: 12px;
  transition: transform .3s;
  flex-shrink: 0;
}

.faq-item.open .faq-q i {
  transform: rotate(45deg);
}

.faq-a {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 10px;
  display: none;
}

.faq-item.open .faq-a {
  display: block;
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact-sec {
  padding: var(--section-v) 0;
  background: var(--bg-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.contact-left .h-display {
  color: #fff;
}

.contact-left .body-md {
  color: rgba(255, 255, 255, .4);
  margin-top: 12px;
  max-width: 400px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.cinfo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .45);
  font-size: 13.5px;
}

.cinfo-item i {
  color: var(--red);
  font-size: 13px;
  width: 14px;
}

.contact-form-wrap {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  padding: 32px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-family: var(--ff-disp);
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 5px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 13px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .09);
  color: #fff;
  font-family: var(--ff-body);
  font-size: 14px;
  outline: none;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
  transition: border-color .2s;
}

.form-group select option {
  background: #1a1a1a;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-submit {
  width: 100%;
  padding: 13px;
  background: var(--red);
  color: #fff;
  font-family: var(--ff-disp);
  font-weight: 700;
  font-size: 13px;
  border: none;
  cursor: pointer;
  transition: background .2s;
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
}

.form-submit:hover {
  background: var(--red-dark);
}

.form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: rgba(255, 255, 255, .25);
  font-size: 11.5px;
  margin-top: 10px;
}

.form-trust i {
  color: var(--red);
  font-size: 10px;
}

/* ══════════════════════════════════════
   BLOG
══════════════════════════════════════ */
.blog-sec {
  padding: var(--section-v) 0;
  background: var(--bg);
}

.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 16px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all .25s;
}

.blog-card:hover {
  border-color: var(--red);
}

.blog-img-wrap {
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.blog-card:hover .blog-img {
  transform: scale(1.04);
}

.blog-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: #fff;
  font-family: var(--ff-disp);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 9px;
}

.blog-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 14px;
  font-size: 11.5px;
  color: #aaa;
  margin-bottom: 10px;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-title {
  font-family: var(--ff-disp);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 10px;
  display: block;
  transition: color .2s;
}

.blog-card:hover .blog-title {
  color: var(--red);
}

.blog-excerpt {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.blog-footer {
  display: none;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.blog-author-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-author-name {
  font-family: var(--ff-disp);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink);
}

.blog-read-more {
  font-family: var(--ff-disp);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap .2s;
}

.blog-card:hover .blog-read-more {
  gap: 8px;
}

/* ══════════════════════════════════════
   CTA STRIP
══════════════════════════════════════ */
.cta-sec {
  padding: var(--section-v) 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.cta-slash {
  position: absolute;
  top: -30%;
  left: -8%;
  width: 55%;
  height: 160%;
  background: linear-gradient(135deg, rgba(232, 0, 28, .06) 0%, transparent 55%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}

.cta-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-left .h-display {
  color: #fff;
}

.cta-left .body-md {
  color: rgba(255, 255, 255, .4);
}

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  min-width: 260px;
}

.cta-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .35);
  font-size: 13px;
}

.cta-trust i {
  color: var(--red);
  font-size: 11px;
}

/* ============================================
   FOOTER — ENHANCED
   ============================================ */

.footer {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 56px;
  padding: 72px 0 52px;
}

/* ── Brand Column ── */
.footer-brand p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.75;
  margin-top: 14px;
  max-width: 240px;
  font-family: var(--ff-body);
}

.footer-social {
  display: flex;
  gap: 7px;
  margin-top: 20px;
}

.social-btn {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  text-decoration: none;
  color: rgba(255,255,255,0.45);
}

.social-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.social-btn i {
  font-size: 12px;
}

/* ── Column Titles ── */
.ft-col-title {
  font-family: var(--ff-disp);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}

/* ── Links ── */
.ft-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ft-links a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  font-family: var(--ff-body);
}

.ft-links a:hover {
  color: var(--red);
}

.ft-links a i {
  font-size: 9px;
  color: rgba(232, 0, 28, 0.5);
  transition: transform 0.2s;
}

.ft-links a:hover i {
  transform: translateX(3px);
}

/* ── Contact Items ── */
.ft-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.ft-contact-item i {
  color: var(--red);
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
}

.ft-contact-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
  font-family: var(--ff-body);
  margin: 0;
}

.ft-contact-item a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.ft-contact-item a:hover {
  color: var(--red);
}

/* ── Map ── */
.ft-map {
  margin-top: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  transition: border-color 0.3s;
}

.ft-map:hover {
  border-color: var(--red);
}

.ft-map-container {
  width: 100%;
  height: 120px;
  overflow: hidden;
}

.ft-map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.8) brightness(0.7);
  transition: filter 0.3s;
}

.ft-map:hover .ft-map-container iframe {
  filter: grayscale(0) brightness(0.9);
}

.ft-map-label {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.ft-map-label i {
  color: var(--red);
  font-size: 12px;
}

.ft-map-label span {
  font-family: var(--ff-disp);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}

/* ── Footer Bottom ── */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.ft-copy {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.25);
  font-family: var(--ff-body);
}

.ft-copy span {
  color: var(--red);
}

/* ── Legal Links ── */
.ft-legal-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.ft-legal-links a {
  font-family: var(--ff-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: color 0.2s;
}

.ft-legal-links a:hover {
  color: var(--red);
}

.ft-legal-divider {
  color: rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

/* ── Badges ── */
.ft-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ft-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 4px 10px;
  font-family: var(--ff-disp);
  transition: all 0.2s;
}

.ft-badge:hover {
  border-color: var(--red);
  color: var(--red);
}

.ft-badge i {
  font-size: 10px;
}

/* ── FLOATS ── */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 9999;
  width: 48px;
  height: 48px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .4);
  transition: transform .3s;
  animation: waBounce 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float i {
  color: #fff;
  font-size: 22px;
}

@keyframes waBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.back-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: all .3s;
  z-index: 999;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
  border: none;
}

.back-top.show {
  opacity: 1;
  transform: translateY(0);
}

.back-top i {
  color: #fff;
  font-size: 12px;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media(max-width:1100px) {
  :root {
    --section-v: 90px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-content {
    gap: 48px;
  }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-block {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
  }
  .stat-block:nth-child(3),
  .stat-block:nth-child(4) {
    border-bottom: none;
  }
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .case-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width:900px) {
  :root {
    --section-v: var(--section-v-m);
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 48px 0 80px;
  }
  .hero-right {
    display: none;
  }
  .nb-links,
  .nb-phone,
  .nb-cta-btn {
    display: none;
  }
  .nb-burger {
    display: flex;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .svc-card-wide {
    grid-column: 1/3;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pf-item:first-child {
    grid-column: 1/3;
  }
  .testi-slide {
    grid-template-columns: 1fr 1fr;
  }
  .testi-slide .testi-card:last-child {
    display: none;
  }
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blog-card:last-child {
    display: none;
  }
}

@media(max-width:640px) {
  .hero-stats {
    flex-direction: column;
    gap: 16px;
    padding-top: 20px;
  }
  .hero-stat {
    border-right: none;
    padding: 0;
    margin: 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .svc-card-wide {
    grid-column: 1;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .stats-inner {
    grid-template-columns: 1fr;
  }
  .stat-block {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    padding: 36px 24px;
  }
  .stat-block:last-child {
    border-bottom: none;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .pf-item:first-child {
    grid-column: 1;
  }
  .pf-item {
    aspect-ratio: 16/9;
  }
  .testi-slide {
    grid-template-columns: 1fr;
  }
  .testi-slide .testi-card:nth-child(n+2) {
    display: none;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-card:last-child {
    display: flex;
  }
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .proc-node {
    width: 68px;
    height: 68px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .ft-badges {
    justify-content: center;
  }
  .cta-right {
    min-width: auto;
    width: 100%;
  }
}

@media(max-width:480px) {
  :root {
    --section-v: 60px;
  }
  .container {
    padding: 0 15px;
  }
  .hero {
    padding-top: 0;
  }
  .hero-h1 {
    font-size: clamp(28px, 9vw, 40px);
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .trust-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .trust-div {
    display: none;
  }
  .sec-head {
    margin-bottom: 20px;
  }
  .blog-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .portfolio-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .pf-filters {
    gap: 2px;
  }
  .filter-btn {
    font-size: 10px;
    padding: 6px 12px;
  }
  .testi-sec .slider-arrows {
    margin-bottom: 8px;
  }
}

@media(prefers-reduced-motion:reduce) {
  * {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ============================================
   MISSING PAGES STYLES
   ============================================ */

/* ── 404 / ERROR PAGE ── */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: var(--bg);
}

.error-page-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.error-page-icon {
  font-size: 72px;
  color: var(--red);
  margin-bottom: 20px;
}

.error-page-title {
  font-family: var(--ff-disp);
  font-size: 96px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.error-page-subtitle {
  font-family: var(--ff-disp);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 10px;
}

.error-page-desc {
  font-size: 16px;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.6;
}

.error-page-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

.error-page-search {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.error-page-search p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}

.error-page-search-form {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
}

.error-page-search-form input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--border);
  font-size: 14px;
  outline: none;
  font-family: var(--ff-body);
}

.error-page-search-form button {
  padding: 10px 18px;
  background: var(--red);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.error-page-search-form button:hover {
  background: var(--red-dark);
}

/* ── LEGAL PAGES (Privacy, Terms) ── */
.legal-page-hero {
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 40px;
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-page-hero-content {
  max-width: 700px;
}

.legal-page-hero-title {
  font-family: var(--ff-disp);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-top: 12px;
}

.legal-page-hero-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 8px;
}

.legal-page-content {
  padding: 50px 0;
  background: var(--bg);
}

.legal-page-body {
  margin: 0 auto;
}

.legal-page-body h2 {
  font-family: var(--ff-disp);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-page-body h2:first-child {
  margin-top: 0;
}

.legal-page-body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-page-body ul {
  margin: 8px 0 16px 20px;
}

.legal-page-body ul li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 4px;
  list-style: disc;
}

.legal-page-updated {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}

/* ── THANK YOU PAGE ── */
.thankyou-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: var(--bg);
}

.thankyou-page-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.thankyou-page-icon {
  font-size: 80px;
  color: #22c55e;
  margin-bottom: 20px;
}

.thankyou-page-title {
  font-family: var(--ff-disp);
  font-size: 42px;
  font-weight: 800;
  color: var(--ink);
}

.thankyou-page-subtitle {
  font-family: var(--ff-disp);
  font-size: 22px;
  font-weight: 600;
  color: var(--muted);
  margin-top: 6px;
}

.thankyou-page-desc {
  font-size: 16px;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.7;
}

.thankyou-page-desc strong {
  color: var(--red);
}

.thankyou-page-info {
  text-align: left;
  background: var(--bg-alt);
  padding: 24px 30px;
  border: 1px solid var(--border);
  margin: 24px 0;
}

.thankyou-page-info h3 {
  font-family: var(--ff-disp);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.thankyou-page-info ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.thankyou-page-info ul li {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.thankyou-page-info ul li i {
  color: var(--red);
  font-size: 14px;
  width: 18px;
}

.thankyou-page-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .error-page-title {
    font-size: 60px;
  }
  .error-page-subtitle {
    font-size: 22px;
  }
  .thankyou-page-title {
    font-size: 30px;
  }
  .thankyou-page-info {
    padding: 18px 20px;
  }
  .legal-page-body {
    padding: 0 15px;
  }
}

/* ── CASE STUDY & SERVICE DETAIL STYLES ── */

.case-study-hero {
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 50px;
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.case-study-hero-content {
  max-width: 750px;
}

.case-study-back {
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.case-study-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  margin-top: 12px;
}

.case-study-title {
  font-family: var(--ff-disp);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-top: 10px;
}

.case-study-meta {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 14px;
  flex-wrap: wrap;
}

.case-study-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.case-study-overview {
  padding: 60px 0;
  background: var(--bg);
}

.case-study-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.case-study-overview-content h2 {
  font-family: var(--ff-disp);
  font-size: 28px;
  font-weight: 800;
  margin-top: 8px;
  color: var(--ink);
}

.case-study-overview-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 12px;
}

.case-study-stats {
  display: flex;
  gap: 30px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.case-study-stat-number {
  font-family: var(--ff-disp);
  font-size: 28px;
  font-weight: 800;
  color: var(--red);
}

.case-study-stat-label {
  font-size: 13px;
  color: var(--muted);
  display: block;
}

.case-study-overview-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.case-study-solution {
  padding: 60px 0;
  background: var(--bg-alt);
}

.case-study-solution-content {
  text-align: center;
}

.case-study-solution-title {
  font-family: var(--ff-disp);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  margin-top: 8px;
  color: var(--ink);
}

.case-study-solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.case-study-solution-card {
  background: #fff;
  padding: 30px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s;
}

.case-study-solution-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.case-study-solution-icon {
  width: 56px;
  height: 56px;
  background: var(--red-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.case-study-solution-icon i {
  color: var(--red);
  font-size: 22px;
}

.case-study-solution-card h4 {
  font-family: var(--ff-disp);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.case-study-solution-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 6px;
}

.case-study-results {
  padding: 60px 0;
  background: var(--bg);
}

.case-study-results-content {
  text-align: center;
}

.case-study-results-title {
  font-family: var(--ff-disp);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  margin-top: 8px;
  color: var(--ink);
}

.case-study-results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.case-study-result-card {
  background: var(--bg-alt);
  padding: 30px;
  border: 1px solid var(--border);
}

.case-study-result-number {
  font-family: var(--ff-disp);
  font-size: 36px;
  font-weight: 800;
  color: var(--red);
}

.case-study-result-card h4 {
  font-family: var(--ff-disp);
  font-size: 16px;
  font-weight: 700;
  margin-top: 8px;
  color: var(--ink);
}

.case-study-result-card p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.case-study-testimonial {
  padding: 50px 0;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.case-study-testimonial-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.case-study-testimonial-content i {
  font-size: 40px;
  color: var(--red);
  opacity: 0.3;
}

.case-study-testimonial-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-top: 12px;
  font-style: italic;
}

.case-study-testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}

.case-study-testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.case-study-testimonial-author strong {
  color: #fff;
  font-family: var(--ff-disp);
  font-size: 15px;
}

.case-study-testimonial-author span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  display: block;
}

.case-study-cta {
  padding: 60px 0;
  background: var(--bg-dark);
}

.case-study-cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.case-study-cta-content h2 {
  font-family: var(--ff-disp);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: #fff;
}

.case-study-cta-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 10px;
}

.case-study-cta-content .btn {
  margin-top: 20px;
}

/* ── SERVICE DETAIL PAGE ── */
.service-detail-hero {
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 50px;
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.service-detail-hero-content {
  max-width: 700px;
}

.service-detail-back {
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-detail-hero-icon {
  width: 70px;
  height: 70px;
  background: var(--red-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  margin-top: 16px;
}

.service-detail-hero-icon i {
  color: var(--red);
  font-size: 30px;
}

.service-detail-hero-title {
  font-family: var(--ff-disp);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-top: 12px;
}

.service-detail-hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  margin-top: 12px;
  max-width: 520px;
}

.service-detail-what {
  padding: 60px 0;
  background: var(--bg);
}

.service-detail-what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.service-detail-what-content h2 {
  font-family: var(--ff-disp);
  font-size: 28px;
  font-weight: 800;
  margin-top: 8px;
  color: var(--ink);
}

.service-detail-what-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 12px;
}

.service-detail-feature-list {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.service-detail-feature-list li {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-detail-feature-list li i {
  color: var(--red);
  font-size: 16px;
}

.service-detail-what-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.service-detail-process {
  padding: 60px 0;
  background: var(--bg-alt);
  text-align: center;
}

.service-detail-process-title {
  font-family: var(--ff-disp);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  margin-top: 8px;
  color: var(--ink);
}

.service-detail-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.service-detail-process-step {
  background: #fff;
  padding: 30px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.service-detail-process-step:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.service-detail-process-num {
  font-family: var(--ff-disp);
  font-size: 32px;
  font-weight: 800;
  color: var(--red);
  opacity: 0.3;
}

.service-detail-process-step h4 {
  font-family: var(--ff-disp);
  font-size: 16px;
  font-weight: 700;
  margin-top: 8px;
  color: var(--ink);
}

.service-detail-process-step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 6px;
}

.service-detail-tech {
  padding: 60px 0;
  background: var(--bg);
  text-align: center;
}

.service-detail-tech-title {
  font-family: var(--ff-disp);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  margin-top: 8px;
  color: var(--ink);
}

.service-detail-tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.service-detail-tech-item {
  background: var(--bg-alt);
  padding: 20px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.service-detail-tech-item:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}

.service-detail-tech-item i {
  font-size: 32px;
  color: var(--red);
}

.service-detail-tech-item span {
  font-family: var(--ff-disp);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  display: block;
  margin-top: 6px;
}

.service-detail-cta {
  padding: 60px 0;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.service-detail-cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.service-detail-cta-content h2 {
  font-family: var(--ff-disp);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: #fff;
}

.service-detail-cta-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 10px;
}

.service-detail-cta-content .btn {
  margin-top: 20px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .case-study-solution-grid {
    grid-template-columns: 1fr 1fr;
  }
  .case-study-results-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-detail-process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-detail-tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .service-detail-feature-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .case-study-overview-grid,
  .service-detail-what-grid {
    grid-template-columns: 1fr;
  }
  .case-study-overview-image img,
  .service-detail-what-image img {
    height: 250px;
  }
  .case-study-solution-grid {
    grid-template-columns: 1fr 1fr;
  }
  .case-study-results-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .case-study-solution-grid {
    grid-template-columns: 1fr;
  }
  .case-study-results-grid {
    grid-template-columns: 1fr;
  }
  .service-detail-process-grid {
    grid-template-columns: 1fr;
  }
  .service-detail-tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .case-study-meta {
    flex-direction: column;
    gap: 8px;
  }
  .case-study-stats {
    flex-direction: column;
    gap: 12px;
  }
}

/* ============================================
   LEGAL PAGES — TERMS OF SERVICE, PRIVACY POLICY
   SHARED STYLES
   ============================================ */
/* ============================================
   BREADCRUMB — SHARED STYLES
   ============================================ */

/* ── Base Breadcrumb Wrapper ── */
.breadcrumb-wrap,
.blog-breadcrumb-wrap,
.blog-index-breadcrumb-wrap,
.careers-breadcrumb-wrap,
.case-breadcrumb-wrap,
.contact-breadcrumb-wrap,
.legal-breadcrumb-wrap,
.products-breadcrumb-wrap,
.service-breadcrumb-wrap,
.services-breadcrumb-wrap,
.portfolio-breadcrumb-wrap {
  background: var(--bg-dark);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 2;
  margin-top: var(--nav-h);
}

/* ── Base Breadcrumb List ── */
.breadcrumb,
.blog-breadcrumb,
.blog-index-breadcrumb,
.careers-breadcrumb,
.case-breadcrumb,
.contact-breadcrumb,
.legal-breadcrumb,
.products-breadcrumb,
.service-breadcrumb,
.services-breadcrumb,
.portfolio-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ── Breadcrumb Items ── */
.breadcrumb li,
.blog-breadcrumb li,
.blog-index-breadcrumb li,
.careers-breadcrumb li,
.case-breadcrumb li,
.contact-breadcrumb li,
.legal-breadcrumb li,
.products-breadcrumb li,
.service-breadcrumb li,
.services-breadcrumb li,
.portfolio-breadcrumb li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--ff-body);
}

/* ── Breadcrumb Links ── */
.breadcrumb li a,
.blog-breadcrumb li a,
.blog-index-breadcrumb li a,
.careers-breadcrumb li a,
.case-breadcrumb li a,
.contact-breadcrumb li a,
.legal-breadcrumb li a,
.products-breadcrumb li a,
.service-breadcrumb li a,
.services-breadcrumb li a,
.portfolio-breadcrumb li a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
  font-family: var(--ff-body);
}

.breadcrumb li a:hover,
.blog-breadcrumb li a:hover,
.blog-index-breadcrumb li a:hover,
.careers-breadcrumb li a:hover,
.case-breadcrumb li a:hover,
.contact-breadcrumb li a:hover,
.legal-breadcrumb li a:hover,
.products-breadcrumb li a:hover,
.service-breadcrumb li a:hover,
.services-breadcrumb li a:hover,
.portfolio-breadcrumb li a:hover {
  color: var(--red);
}

/* ── Breadcrumb Icon (Home) ── */
.breadcrumb-icon,
.blog-breadcrumb-icon,
.blog-index-breadcrumb-icon,
.careers-breadcrumb-icon,
.case-breadcrumb-icon,
.contact-breadcrumb-icon,
.legal-breadcrumb-icon,
.products-breadcrumb-icon,
.service-breadcrumb-icon,
.services-breadcrumb-icon,
.portfolio-breadcrumb-icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1) opacity(0.5);
  transition: filter 0.2s;
  display: block;
}

.breadcrumb li a:hover .breadcrumb-icon,
.blog-breadcrumb li a:hover .breadcrumb-icon,
.blog-index-breadcrumb li a:hover .breadcrumb-icon,
.careers-breadcrumb li a:hover .breadcrumb-icon,
.case-breadcrumb li a:hover .breadcrumb-icon,
.contact-breadcrumb li a:hover .breadcrumb-icon,
.legal-breadcrumb li a:hover .breadcrumb-icon,
.products-breadcrumb li a:hover .breadcrumb-icon,
.service-breadcrumb li a:hover .breadcrumb-icon,
.services-breadcrumb li a:hover .breadcrumb-icon,
.portfolio-breadcrumb li a:hover .breadcrumb-icon {
  filter: brightness(0) invert(0.4) sepia(1) hue-rotate(-10deg) saturate(8);
}

/* ── Breadcrumb Separator ── */
.breadcrumb-sep,
.blog-breadcrumb-sep,
.blog-index-breadcrumb-sep,
.careers-breadcrumb-sep,
.case-breadcrumb-sep,
.contact-breadcrumb-sep,
.legal-breadcrumb-sep,
.products-breadcrumb-sep,
.service-breadcrumb-sep,
.services-breadcrumb-sep,
.portfolio-breadcrumb-sep {
  width: 12px;
  height: 12px;
  opacity: 0.3;
  display: block;
}

/* ── Breadcrumb Current Page ── */
.breadcrumb-current,
.blog-breadcrumb-current,
.blog-index-breadcrumb-current,
.careers-breadcrumb-current,
.case-breadcrumb-current,
.contact-breadcrumb-current,
.legal-breadcrumb-current,
.products-breadcrumb-current,
.service-breadcrumb-current,
.services-breadcrumb-current,
.portfolio-breadcrumb-current {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 500;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .breadcrumb-wrap,
  .blog-breadcrumb-wrap,
  .blog-index-breadcrumb-wrap,
  .careers-breadcrumb-wrap,
  .case-breadcrumb-wrap,
  .contact-breadcrumb-wrap,
  .legal-breadcrumb-wrap,
  .products-breadcrumb-wrap,
  .service-breadcrumb-wrap,
  .services-breadcrumb-wrap,
  .portfolio-breadcrumb-wrap {
    padding: 12px 0;
  }
  
  .breadcrumb li,
  .blog-breadcrumb li,
  .blog-index-breadcrumb li,
  .careers-breadcrumb li,
  .case-breadcrumb li,
  .contact-breadcrumb li,
  .legal-breadcrumb li,
  .products-breadcrumb li,
  .service-breadcrumb li,
  .services-breadcrumb li,
  .portfolio-breadcrumb li {
    font-size: 11px;
  }
  
  .breadcrumb-icon,
  .blog-breadcrumb-icon,
  .blog-index-breadcrumb-icon,
  .careers-breadcrumb-icon,
  .case-breadcrumb-icon,
  .contact-breadcrumb-icon,
  .legal-breadcrumb-icon,
  .products-breadcrumb-icon,
  .service-breadcrumb-icon,
  .services-breadcrumb-icon,
  .portfolio-breadcrumb-icon {
    width: 14px;
    height: 14px;
  }
  
  .breadcrumb-sep,
  .blog-breadcrumb-sep,
  .blog-index-breadcrumb-sep,
  .careers-breadcrumb-sep,
  .case-breadcrumb-sep,
  .contact-breadcrumb-sep,
  .legal-breadcrumb-sep,
  .products-breadcrumb-sep,
  .service-breadcrumb-sep,
  .services-breadcrumb-sep,
  .portfolio-breadcrumb-sep {
    width: 10px;
    height: 10px;
  }
}
/* ── BREADCRUMB ── */
.legal-breadcrumb-wrap {
  background: var(--bg-dark);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 2;
  margin-top: var(--nav-h);
}

.legal-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-breadcrumb li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-family: var(--ff-body);
}

.legal-breadcrumb li a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.legal-breadcrumb li a:hover {
  color: var(--red);
}

.legal-breadcrumb li a:hover .breadcrumb-icon {
  filter: brightness(0) invert(0.4) sepia(1) hue-rotate(-10deg) saturate(8);
}

/* ── HERO ── */
.legal-page-hero {
  position: relative;
  background: var(--bg-dark);
  padding: var(--section-v) 0 50px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.legal-hero-bg-pattern {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 70% 30%, rgba(232,0,28,0.06) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(232,0,28,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.legal-page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
}

.legal-hero-badge-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.legal-hero-badge {
  font-family: var(--ff-disp);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 4px 14px;
}

.legal-page-hero-title {
  font-family: var(--ff-disp);
  font-size: clamp(38px, 4.5vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-top: 4px;
}

.legal-page-hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-top: 12px;
  font-family: var(--ff-body);
}

.legal-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* ── CONTENT ── */
.legal-page-content {
  padding: var(--section-v) 0;
  background: var(--bg);
}

.legal-page-body {
  margin: 0 auto;
}

/* ── Legal Section ── */
.legal-section {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.legal-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.legal-section-number {
  font-family: var(--ff-disp);
  font-size: 32px;
  font-weight: 800;
  color: var(--red);
  opacity: 0.15;
  line-height: 1;
  min-width: 50px;
}

.legal-section-header h2 {
  font-family: var(--ff-disp);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.legal-section-body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  font-family: var(--ff-body);
  margin-bottom: 10px;
}

/* ── Legal Notice ── */
.legal-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--red-soft);
  padding: 14px 18px;
  margin-top: 12px;
  border-left: 3px solid var(--red);
}

.legal-notice i {
  color: var(--red);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.legal-notice span {
  font-size: 13px;
  color: var(--muted);
  font-family: var(--ff-body);
  line-height: 1.6;
}

/* ── Legal Lists ── */
.legal-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
}

.legal-list li {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--ff-body);
  line-height: 1.6;
}

.legal-list li i {
  color: var(--red);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.legal-list li strong {
  color: var(--ink);
  font-weight: 600;
}

.legal-list-check li i {
  color: #22c55e;
}

/* ── Legal Grid ── */
.legal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.legal-grid-item {
  background: var(--bg-alt);
  padding: 16px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.legal-grid-item:hover {
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.legal-grid-item i {
  font-size: 24px;
  color: var(--red);
  display: block;
  margin-bottom: 6px;
}

.legal-grid-item span {
  font-size: 12px;
  color: var(--ink);
  font-family: var(--ff-disp);
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

.legal-grid-item small {
  font-size: 10.5px;
  color: var(--muted);
  font-family: var(--ff-body);
  display: block;
  line-height: 1.4;
}

/* ── Legal Highlight ── */
.legal-highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(232,0,28,0.05);
  padding: 14px 18px;
  margin-top: 12px;
  border: 1px solid rgba(232,0,28,0.1);
}

.legal-highlight i {
  color: var(--red);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.legal-highlight div {
  font-size: 13px;
  color: var(--muted);
  font-family: var(--ff-body);
  line-height: 1.6;
}

.legal-highlight div strong {
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
}

.legal-highlight div ul {
  margin: 6px 0 0 0;
  padding-left: 20px;
}

.legal-highlight div ul li {
  list-style: disc;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 3px;
  font-family: var(--ff-body);
}

.legal-highlight-green {
  background: rgba(34,197,94,0.05);
  border-color: rgba(34,197,94,0.15);
}

.legal-highlight-green i {
  color: #22c55e;
}

/* ── Contact Grid ── */
.legal-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 12px;
}

.legal-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.legal-contact-item:hover {
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.legal-contact-item i {
  color: var(--red);
  font-size: 18px;
  flex-shrink: 0;
}

.legal-contact-item div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.legal-contact-item span {
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-family: var(--ff-disp);
}

.legal-contact-item a,
.legal-contact-item div span:last-child {
  font-size: 13px;
  color: var(--ink);
  font-family: var(--ff-body);
  text-decoration: none;
  line-height: 1.3;
}

.legal-contact-item a:hover {
  color: var(--red);
}

/* ── Last Updated ── */
.legal-page-updated {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid var(--border);
}

.legal-updated-icon {
  width: 48px;
  height: 48px;
  background: var(--red-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  flex-shrink: 0;
}

.legal-updated-icon i {
  color: var(--red);
  font-size: 20px;
}

.legal-page-updated strong {
  font-family: var(--ff-disp);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  display: block;
}

.legal-page-updated span {
  font-size: 13px;
  color: var(--muted);
  font-family: var(--ff-body);
  display: block;
  margin-top: 2px;
}

/* ── CTA ── */
.legal-cta {
  padding: var(--section-v) 0;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
}

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

.legal-cta-icon {
  font-size: 48px;
  color: var(--red);
  margin-bottom: 16px;
}

.legal-cta-title {
  font-family: var(--ff-disp);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.025em;
}

.legal-cta-text {
  font-size: 16px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin: 16px 0 24px;
  font-family: var(--ff-body);
}

.legal-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ──────────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .legal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .legal-contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .legal-list {
    grid-template-columns: 1fr;
  }
  .legal-section-header {
    flex-wrap: wrap;
  }
  .legal-page-updated {
    flex-direction: column;
    text-align: center;
  }
  .legal-grid {
    grid-template-columns: 1fr 1fr;
  }
  .legal-contact-grid {
    grid-template-columns: 1fr;
  }
  .legal-hero-actions {
    flex-direction: column;
  }
  .legal-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .legal-cta-buttons {
    flex-direction: column;
  }
  .legal-cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .legal-page-hero {
    padding: 40px 0 40px;
  }
  .legal-page-hero-title {
    font-size: clamp(28px, 7vw, 34px);
  }
  .legal-grid {
    grid-template-columns: 1fr;
  }
  .legal-contact-grid {
    grid-template-columns: 1fr;
  }
  .legal-breadcrumb-wrap {
    padding: 12px 0;
  }
  .legal-breadcrumb li {
    font-size: 11px;
  }
  .legal-section-number {
    font-size: 24px;
    min-width: 36px;
  }
  .legal-section-header h2 {
    font-size: 18px;
  }
  .legal-section {
    margin-bottom: 28px;
    padding-bottom: 24px;
  }
  .legal-notice {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .legal-highlight {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .legal-highlight div ul {
    text-align: left;
  }
  .legal-contact-item {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .legal-page-content {
    padding: 40px 0;
  }
  .legal-section {
    margin-bottom: 24px;
    padding-bottom: 20px;
  }
  .legal-section-number {
    font-size: 20px;
    min-width: 30px;
  }
  .legal-section-header h2 {
    font-size: 16px;
  }
  .legal-section-body p {
    font-size: 14px;
  }
  .legal-list li {
    font-size: 13px;
  }
  .legal-page-updated {
    margin-top: 32px;
    padding-top: 24px;
  }
  .legal-updated-icon {
    width: 40px;
    height: 40px;
  }
  .legal-updated-icon i {
    font-size: 16px;
  }
  .legal-page-updated strong {
    font-size: 14px;
  }
  .legal-page-updated span {
    font-size: 12px;
  }
}

/* ============================================
   ABOUT PAGE — Matching main style.css
   ============================================ */

/* Hero */
.about-hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
  padding: var(--section-v) 0;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(232,0,28,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(232,0,28,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-badge-year {
  font-family: var(--ff-disp);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 4px 14px;
}

.page-hero-title {
  font-family: var(--ff-disp);
  font-weight: 800;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -.025em;
  color: #fff;
  margin-bottom: 16px;
}

.page-hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 24px;
  font-family: var(--ff-body);
}

/* Quick Stats */
.quick-stats {
  background: var(--bg-dark);
  padding: 30px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.quick-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.quick-stat {
  text-align: center;
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s;
}

.quick-stat:hover {
  background: rgba(232,0,28,0.05);
  border-color: rgba(232,0,28,0.3);
  transform: translateY(-2px);
}

.quick-stat-icon {
  font-size: 28px;
  color: var(--red);
  margin-bottom: 8px;
}

.quick-stat-number {
  font-family: var(--ff-disp);
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1.2;
}

.quick-stat-label {
  font-family: var(--ff-disp);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Mission Section */
.mission-section {
  padding: var(--section-v) 0;
  background: var(--bg);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mission-content .lbl {
  margin-bottom: 12px;
}

.mission-title {
  font-family: var(--ff-disp);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.025em;
  color: var(--ink);
  margin-bottom: 20px;
}

.mission-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
  font-family: var(--ff-body);
}

.mission-stats {
  display: flex;
  gap: 30px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.mission-stat {
  text-align: left;
}

.mission-stat-number {
  font-family: var(--ff-disp);
  font-size: 28px;
  font-weight: 800;
  color: var(--red);
  display: block;
}

.mission-stat-label {
  font-size: 13px;
  color: var(--muted);
  font-family: var(--ff-body);
}

.mission-cta {
  margin-top: 20px;
}

.mission-image-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.mission-image-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.mission-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: all 0.3s;
}

.mission-image-badge:hover {
  background: var(--red);
}

.mission-image-badge i {
  font-size: 24px;
  color: var(--red);
  transition: color 0.3s;
}

.mission-image-badge:hover i {
  color: #fff;
}

.mission-image-badge span {
  font-family: var(--ff-disp);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

/* Values Section */
.values-section {
  padding: var(--section-v) 0;
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-title {
  font-family: var(--ff-disp);
  font-size: clamp(30px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.025em;
  color: var(--ink);
  margin-top: 5px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--muted);
  margin-top: 4px;
  font-family: var(--ff-body);
}

.values-grid-about {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.value-card {
  background: var(--bg);
  padding: 25px;
  position: relative;
  overflow: hidden;
  transition: all 0.25s;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--red);
  transition: height 0.35s;
}

.value-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
}

.value-card:hover::before {
  height: 100%;
}

.value-icon {
  width: 46px;
  height: 46px;
  background: var(--red-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
  transition: background 0.25s;
}

.value-card:hover .value-icon {
  background: var(--red);
}

.value-icon i {
  color: var(--red);
  font-size: 18px;
  transition: color 0.25s;
}

.value-card:hover .value-icon i {
  color: #fff;
}

.value-title {
  font-family: var(--ff-disp);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.value-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  font-family: var(--ff-body);
}

.value-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--red-soft);
  padding: 3px 10px;
  font-family: var(--ff-disp);
}

/* Journey / Timeline */
.journey-section {
  padding: var(--section-v) 0;
  background: var(--bg);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 8px;
  width: 16px;
  height: 16px;
  background: var(--red);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 3px var(--red);
}

.timeline-year {
  font-family: var(--ff-disp);
  font-size: 14px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.timeline-content {
  background: var(--bg-alt);
  padding: 24px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.timeline-content:hover {
  border-color: var(--red);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.timeline-icon {
  font-size: 20px;
  color: var(--red);
  margin-bottom: 8px;
}

.timeline-content h4 {
  font-family: var(--ff-disp);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 12px;
  font-family: var(--ff-body);
}

.timeline-content img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border: 1px solid var(--border);
}

/* Team Section */
.team-section {
  padding: var(--section-v) 0;
  background: var(--bg-alt);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.team-member {
  background: var(--bg);
  padding: 25px;
  text-align: center;
  transition: all 0.25s;
}

.team-member:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
}

.team-member-img {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
}

.team-member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-social {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7));
  padding: 20px 10px 10px;
  display: flex;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s;
}

.team-member:hover .team-social {
  opacity: 1;
}

.team-social a {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s;
  border-radius: 50%;
  text-decoration: none;
}

.team-social a:hover {
  background: var(--red);
}

.team-name {
  font-family: var(--ff-disp);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.team-role {
  font-size: 13px;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 6px;
  font-family: var(--ff-body);
}

.team-bio {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 12px;
  font-family: var(--ff-body);
}

.team-skills {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
}

.team-skills span {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 2px 10px;
  font-family: var(--ff-disp);
}

/* Testimonials About */
.testimonials-about {
  padding: var(--section-v) 0;
  background: var(--bg);
}

.testimonials-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}

.testimonial-about-card {
  background: var(--bg);
  padding: 25px;
  transition: all 0.25s;
}

.testimonial-about-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
}

.testimonial-about-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.testimonial-about-stars i {
  color: var(--red);
  font-size: 14px;
}

.testimonial-about-text {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
  font-family: var(--ff-body);
}

.testimonial-about-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-about-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-about-author strong {
  font-family: var(--ff-disp);
  font-size: 15px;
  color: var(--ink);
  display: block;
}

.testimonial-about-author span {
  font-size: 12.5px;
  color: var(--muted);
  font-family: var(--ff-body);
}

/* About CTA */
.about-cta {
  padding: var(--section-v) 0;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.about-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.about-cta-icon {
  font-size: 48px;
  color: var(--red);
  margin-bottom: 16px;
}

.about-cta-title {
  font-family: var(--ff-disp);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.025em;
  color: #fff;
}

.about-cta-text {
  font-size: 16px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin: 16px 0 24px;
  font-family: var(--ff-body);
}

.about-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .values-grid-about {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .quick-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mission-image-wrap img {
    height: 280px;
  }
  .timeline {
    padding-left: 30px;
  }
  .timeline-item::before {
    left: -26px;
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 640px) {
  .values-grid-about {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .quick-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mission-stats {
    flex-direction: column;
    gap: 12px;
  }
  .about-hero {
    padding: 40px 0 60px;
  }
  .page-hero-title {
    font-size: clamp(28px, 8vw, 36px);
  }
  .hero-badge-group {
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .quick-stats-grid {
    grid-template-columns: 1fr;
  }
  .timeline {
    padding-left: 20px;
  }
  .timeline-item::before {
    left: -18px;
    width: 12px;
    height: 12px;
  }
  .about-cta-buttons {
    flex-direction: column;
  }
  .about-cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  .quick-stat-number {
    font-size: 28px;
  }
  .team-member-img {
    width: 130px;
    height: 130px;
  }
}

/* ============================================
   BLOG POST STYLES
   ============================================ */

/* Hero */
.blog-post-hero {
  background: var(--bg-dark);
  padding: var(--section-v) 0 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.blog-post-hero-content {
  max-width: 750px;
}

.blog-post-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--ff-disp);
  transition: gap 0.2s;
}

.blog-post-back:hover {
  gap: 12px;
}

.blog-post-cat-label {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  margin-top: 12px;
  font-family: var(--ff-disp);
}

.blog-post-title {
  font-family: var(--ff-disp);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-top: 10px;
  letter-spacing: -.025em;
}

.blog-post-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: 14px;
  flex-wrap: wrap;
  font-family: var(--ff-body);
}

.blog-post-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-post-meta i {
  color: var(--red);
  font-size: 12px;
}

/* Post Body */
.blog-post-body-section {
  padding: var(--section-v) 0;
  background: var(--bg);
}

.blog-post-body-content {
  max-width: 820px;
  margin: 0 auto;
}

.blog-post-featured-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border: 1px solid var(--border);
  margin-bottom: 30px;
}

.blog-post-body-content p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-family: var(--ff-body);
}

.blog-post-body-content h2 {
  font-family: var(--ff-disp);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin: 32px 0 12px;
}

.blog-post-body-content ul {
  margin: 8px 0 16px 20px;
}

.blog-post-body-content ul li {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 6px;
  list-style: disc;
  font-family: var(--ff-body);
}

.blog-post-highlight {
  background: var(--bg-alt);
  padding: 20px 24px;
  border-left: 3px solid var(--red);
  margin: 20px 0;
}

.blog-post-highlight p {
  margin-bottom: 0;
  font-size: 15px;
}

.blog-post-highlight strong {
  color: var(--red);
}

/* Author Box */
.blog-post-author-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  margin-top: 40px;
}

.blog-post-author-box img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.blog-post-author-box h4 {
  font-family: var(--ff-disp);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.blog-post-author-box p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Share Bar */
.blog-post-share-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.blog-post-share-bar span {
  font-family: var(--ff-disp);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-post-share-bar a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.2s;
}

.blog-post-share-bar a:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* Related Posts */
.blog-post-related {
  padding: var(--section-v) 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.blog-post-related-title {
  font-family: var(--ff-disp);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 24px;
}

.blog-post-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.blog-post-related-card {
  background: var(--bg);
  padding: 24px;
  text-decoration: none;
  transition: all 0.25s;
  display: block;
}

.blog-post-related-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
}

.blog-post-related-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--ff-disp);
}

.blog-post-related-card h4 {
  font-family: var(--ff-disp);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 6px 0 10px;
  transition: color 0.2s;
}

.blog-post-related-card:hover h4 {
  color: var(--red);
}

.blog-post-related-date {
  font-size: 12px;
  color: var(--muted);
  font-family: var(--ff-body);
}

@media (max-width: 900px) {
  .blog-post-related-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blog-post-featured-image {
    height: 280px;
  }
}

@media (max-width: 640px) {
  .blog-post-related-grid {
    grid-template-columns: 1fr;
  }
  .blog-post-hero {
    padding: 40px 0 40px;
  }
  .blog-post-title {
    font-size: clamp(24px, 6vw, 30px);
  }
  .blog-post-meta {
    gap: 12px;
    font-size: 12px;
  }
  .blog-post-featured-image {
    height: 200px;
  }
  .blog-post-author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .blog-post-share-bar {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .blog-post-body-content h2 {
    font-size: 20px;
  }
  .blog-post-highlight {
    padding: 16px;
  }
  .blog-post-share-bar a {
    width: 34px;
    height: 34px;
  }
}

/* ============================================
   BLOG LISTING STYLES
   ============================================ */

/* Hero */
.blog-page-hero {
  background: var(--bg-dark);
  padding: var(--section-v) 0 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.blog-page-hero-content {
  max-width: 700px;
}

.blog-page-hero-title {
  font-family: var(--ff-disp);
  font-size: clamp(38px, 4.5vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-top: 8px;
}

.blog-page-hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-top: 12px;
  font-family: var(--ff-body);
}

/* Blog Grid */
.blog-grid-section {
  padding: var(--section-v) 0;
  background: var(--bg);
}

.blog-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-post-card {
  background: var(--bg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.25s;
}

.blog-post-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}

.blog-post-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.blog-post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.blog-post-card:hover .blog-post-card-image img {
  transform: scale(1.04);
}

.blog-post-card-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: #fff;
  font-family: var(--ff-disp);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
}

.blog-post-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.blog-post-card-meta {
  display: flex;
  gap: 14px;
  font-size: 11.5px;
  color: #aaa;
  margin-bottom: 10px;
  font-family: var(--ff-body);
}

.blog-post-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-post-card-meta i {
  font-size: 11px;
  color: var(--red);
}

.blog-post-card-title {
  font-family: var(--ff-disp);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 10px;
  display: block;
  transition: color 0.2s;
  text-decoration: none;
}

.blog-post-card:hover .blog-post-card-title {
  color: var(--red);
}

.blog-post-card-excerpt {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  font-family: var(--ff-body);
}

.blog-post-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.blog-post-card-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-post-card-author img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-post-card-author span {
  font-family: var(--ff-disp);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}

.blog-post-card-read {
  font-family: var(--ff-disp);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
  text-decoration: none;
}

.blog-post-card:hover .blog-post-card-read {
  gap: 8px;
}

/* Newsletter Section */
.blog-newsletter-section {
  padding: var(--section-v) 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.blog-newsletter-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  background: var(--bg);
  padding: 32px 40px;
  border: 1px solid var(--border);
}

.blog-newsletter-title {
  font-family: var(--ff-disp);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
}

.blog-newsletter-text {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
  font-family: var(--ff-body);
}

.blog-newsletter-form {
  display: flex;
  gap: 0;
  min-width: 380px;
}

.blog-newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-right: none;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  font-family: var(--ff-body);
  background: var(--bg);
}

.blog-newsletter-form input::placeholder {
  color: var(--muted);
}

.blog-newsletter-form button {
  padding: 12px 28px;
  background: var(--red);
  color: #fff;
  border: none;
  font-family: var(--ff-disp);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.blog-newsletter-form button:hover {
  background: var(--red-dark);
}

@media (max-width: 1100px) {
  .blog-grid-full {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .blog-newsletter-content {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px;
  }
  .blog-newsletter-form {
    min-width: auto;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .blog-grid-full {
    grid-template-columns: 1fr;
  }
  .blog-page-hero {
    padding: 40px 0 40px;
  }
  .blog-page-hero-title {
    font-size: clamp(28px, 7vw, 34px);
  }
  .blog-newsletter-content {
    padding: 20px;
    text-align: center;
  }
  .blog-newsletter-form {
    flex-direction: column;
  }
  .blog-newsletter-form input {
    border-right: 1px solid var(--border);
    border-bottom: none;
  }
  .blog-newsletter-form button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .blog-post-card-title {
    font-size: 15px;
  }
  .blog-post-card-footer {
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* ============================================
   CAREERS PAGE STYLES
   ============================================ */

/* Hero */
.careers-page-hero {
  background: var(--bg-dark);
  padding: var(--section-v) 0 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.careers-page-hero-content {
  max-width: 700px;
}

.careers-page-hero-title {
  font-family: var(--ff-disp);
  font-size: clamp(38px, 4.5vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-top: 8px;
}

.careers-page-hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-top: 12px;
  font-family: var(--ff-body);
}

/* Open Positions */
.careers-openings {
  padding: var(--section-v) 0;
  background: var(--bg);
}

.careers-openings-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 12px;
}

.careers-openings-title {
  font-family: var(--ff-disp);
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
}

.careers-openings-count {
  font-family: var(--ff-disp);
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  background: var(--red-soft);
  padding: 4px 14px;
}

.careers-openings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.job-card-full {
  background: var(--bg-alt);
  padding: 28px;
  border: 1px solid var(--border);
  transition: all 0.25s;
}

.job-card-full:hover {
  border-color: var(--red);
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}

.job-card-full-title {
  font-family: var(--ff-disp);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.job-card-full-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.job-card-full-meta span {
  font-size: 12.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--ff-body);
}

.job-card-full-meta i {
  color: var(--red);
  font-size: 11px;
}

.job-card-full-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
  font-family: var(--ff-body);
}

.job-card-full-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.job-tag {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 3px 12px;
  font-family: var(--ff-disp);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.job-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  padding: 10px 22px;
}

.job-apply-btn i {
  transition: transform 0.2s;
}

.job-apply-btn:hover i {
  transform: translateX(3px);
}

/* Perks */
.careers-perks {
  padding: var(--section-v) 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.careers-perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.perk-card {
  background: var(--bg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.25s;
}

.perk-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
}

.perk-card i {
  font-size: 36px;
  color: var(--red);
  margin-bottom: 12px;
}

.perk-card h4 {
  font-family: var(--ff-disp);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.perk-card p {
  font-size: 13.5px;
  color: var(--muted);
  font-family: var(--ff-body);
}

/* Careers CTA */
.careers-cta {
  padding: var(--section-v) 0;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
}

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

.careers-cta-title {
  font-family: var(--ff-disp);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.025em;
}

.careers-cta-text {
  font-size: 16px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin: 16px 0 24px;
  font-family: var(--ff-body);
}

.careers-cta-content .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 1100px) {
  .careers-openings-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .careers-perks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .careers-page-hero {
    padding: 40px 0 40px;
  }
  .careers-page-hero-title {
    font-size: clamp(28px, 7vw, 34px);
  }
  .careers-openings-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .careers-perks-grid {
    grid-template-columns: 1fr;
  }
  .job-card-full {
    padding: 20px;
  }
  .job-card-full-title {
    font-size: 17px;
  }
  .job-card-full-meta {
    gap: 10px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .job-card-full-meta {
    flex-direction: column;
    gap: 4px;
  }
  .job-card-full-tags {
    gap: 4px;
  }
  .job-tag {
    font-size: 9px;
    padding: 2px 10px;
  }
  .careers-cta-content .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   CONTACT PAGE — PREMIUM STYLES
   ============================================ */

/* ── HERO ── */
.contact-hero {
  position: relative;
  background: var(--bg-dark);
  padding: var(--section-v) 0 60px;
  overflow: hidden;
}

.contact-hero-bg-pattern {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 70% 30%, rgba(232,0,28,0.06) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(232,0,28,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
}

.contact-hero-badge-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.contact-hero-availability {
  font-family: var(--ff-disp);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 4px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact-hero-availability i {
  color: #22c55e;
  font-size: 6px;
}

.contact-hero-title {
  font-family: var(--ff-disp);
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -.025em;
}

.contact-hero-title-line {
  display: block;
  color: rgba(255,255,255,0.3);
  font-weight: 600;
}

.contact-hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-top: 16px;
  max-width: 560px;
  font-family: var(--ff-body);
}

.contact-hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.contact-hero-stat {
  display: flex;
  flex-direction: column;
}

.contact-hero-stat-number {
  font-family: var(--ff-disp);
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}

.contact-hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  font-family: var(--ff-body);
}

/* ── MAIN CONTACT SECTION ── */
.contact-main {
  padding: var(--section-v) 0;
  background: var(--bg);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

/* Info Side */
.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-info-title {
  font-family: var(--ff-disp);
  font-size: 30px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
}

.contact-info-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  font-family: var(--ff-body);
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.contact-info-card:hover {
  border-color: var(--red);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transform: translateX(4px);
}

.contact-info-card-icon {
  width: 44px;
  height: 44px;
  background: var(--red-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
}

.contact-info-card-icon i {
  color: var(--red);
  font-size: 16px;
}

.contact-info-card-content {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.contact-info-card-label {
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-family: var(--ff-disp);
}

.contact-info-card-value {
  font-family: var(--ff-disp);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info-card-value:hover {
  color: var(--red);
}

.contact-info-card-sub {
  font-size: 12px;
  color: var(--muted);
  font-family: var(--ff-body);
}

/* Social Links */
.contact-social-links {
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.contact-social-label {
  font-family: var(--ff-disp);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-social-icons {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.contact-social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.3s;
  text-decoration: none;
}

.contact-social-icon:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(232,0,28,0.25);
}

/* ── FORM SIDE ── */
.contact-form-side {
  position: relative;
}

.contact-form-wrapper {
  background: var(--bg-alt);
  padding: 36px 40px;
  border: 1px solid var(--border);
  position: relative;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.contact-form-header {
  margin-bottom: 24px;
}

.contact-form-title {
  font-family: var(--ff-disp);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
}

.contact-form-subtitle {
  font-size: 13.5px;
  color: var(--muted);
  font-family: var(--ff-body);
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form-group {
  margin-bottom: 16px;
  position: relative;
}

.contact-form-group label {
  display: block;
  font-family: var(--ff-disp);
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-form-required {
  color: var(--red);
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
  width: 100%;
  padding: 11px 14px 11px 40px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 14px;
  outline: none;
  transition: all 0.3s;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-soft);
}

.contact-form-group textarea {
  resize: vertical;
  min-height: 100px;
  padding-left: 40px;
}

.contact-form-icon {
  position: absolute;
  bottom: 12px;
  left: 14px;
  color: var(--muted);
  font-size: 14px;
  pointer-events: none;
  transition: color 0.3s;
}

.contact-form-group:focus-within .contact-form-icon {
  color: var(--red);
}

.contact-form-options {
  margin: 4px 0 16px;
}

.contact-form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 12.5px;
  color: var(--muted);
  font-family: var(--ff-body);
}

.contact-form-checkbox input {
  display: none;
}

.contact-form-checkbox-mark {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  flex-shrink: 0;
  transition: all 0.3s;
  position: relative;
}

.contact-form-checkbox input:checked + .contact-form-checkbox-mark {
  background: var(--red);
  border-color: var(--red);
}

.contact-form-checkbox input:checked + .contact-form-checkbox-mark::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 10px;
}

.contact-form-checkbox a {
  color: var(--red);
  text-decoration: none;
}

.contact-form-checkbox a:hover {
  text-decoration: underline;
}

.contact-form-submit {
  width: 100%;
  padding: 14px;
  background: var(--red);
  color: #fff;
  font-family: var(--ff-disp);
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact-form-submit:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232,0,28,0.3);
}

.contact-form-submit-text {
  font-size: 14px;
}

.contact-form-submit-icon {
  font-size: 14px;
  transition: transform 0.3s;
}

.contact-form-submit:hover .contact-form-submit-icon {
  transform: translateX(4px);
}

.contact-form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11.5px;
  margin-top: 12px;
  font-family: var(--ff-body);
}

.contact-form-trust i {
  color: #22c55e;
  font-size: 13px;
}

/* ── WHY CHOOSE US ── */
.contact-why {
  padding: var(--section-v) 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.contact-why-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-why-title {
  font-family: var(--ff-disp);
  font-size: clamp(30px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  margin-top: 6px;
}

.contact-why-subtitle {
  font-size: 16px;
  color: var(--muted);
  margin-top: 6px;
  font-family: var(--ff-body);
}

.contact-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.contact-why-card {
  background: var(--bg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
}

.contact-why-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
}

.contact-why-card-icon {
  width: 56px;
  height: 56px;
  background: var(--red-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: all 0.3s;
}

.contact-why-card:hover .contact-why-card-icon {
  background: var(--red);
}

.contact-why-card-icon i {
  color: var(--red);
  font-size: 22px;
  transition: color 0.3s;
}

.contact-why-card:hover .contact-why-card-icon i {
  color: #fff;
}

.contact-why-card h4 {
  font-family: var(--ff-disp);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.contact-why-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  font-family: var(--ff-body);
}

/* ── MAP ── */
.contact-map {
  padding: 0 0 var(--section-v) 0;
  background: var(--bg);
}

.contact-map-wrapper {
  border: 1px solid var(--border);
  overflow: hidden;
}

.contact-map-placeholder {
  background: var(--bg-alt);
  padding: 60px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  min-height: 200px;
}

.contact-map-pin {
  width: 72px;
  height: 72px;
  background: var(--red-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  flex-shrink: 0;
}

.contact-map-pin i {
  color: var(--red);
  font-size: 32px;
}

.contact-map-content {
  text-align: left;
}

.contact-map-content h4 {
  font-family: var(--ff-disp);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.contact-map-content p {
  font-size: 14px;
  color: var(--muted);
  font-family: var(--ff-body);
}

.contact-map-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.contact-map-btn {
  font-family: var(--ff-disp);
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  border: 1px solid var(--red-soft);
  padding: 6px 16px;
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact-map-btn:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

@media (max-width: 1100px) {
  .contact-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-info-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .contact-info-card {
    flex: 1 1 200px;
  }
  .contact-form-wrapper {
    padding: 28px;
  }
  .contact-form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-hero {
    padding: 40px 0 50px;
  }
  .contact-hero-title {
    font-size: clamp(28px, 7vw, 34px);
  }
  .contact-hero-stats {
    flex-direction: column;
    gap: 12px;
  }
  .contact-hero-stat {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  .contact-info-cards {
    flex-direction: column;
  }
  .contact-info-card {
    flex: 1 1 auto;
  }
  .contact-form-wrapper {
    padding: 20px;
  }
  .contact-why-grid {
    grid-template-columns: 1fr;
  }
  .contact-map-placeholder {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }
  .contact-map-content {
    text-align: center;
  }
  .contact-map-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .contact-info-title {
    font-size: 24px;
  }
  .contact-form-title {
    font-size: 18px;
  }
  .contact-form-submit {
    font-size: 12px;
    padding: 12px;
  }
  .contact-social-icons {
    gap: 6px;
  }
  .contact-social-icon {
    width: 36px;
    height: 36px;
  }
}

/* ============================================
   PRODUCTS PAGE — PREMIUM STYLES
   ============================================ */

/* ── HERO ── */
.products-page-hero {
  position: relative;
  background: var(--bg-dark);
  padding: var(--section-v) 0 50px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.products-hero-bg-pattern {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 70% 30%, rgba(232,0,28,0.06) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(232,0,28,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.products-page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
}

.products-page-hero-title {
  font-family: var(--ff-disp);
  font-size: clamp(38px, 4.5vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-top: 8px;
}

.products-page-hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-top: 12px;
  font-family: var(--ff-body);
}

.products-hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.products-hero-stat {
  display: flex;
  flex-direction: column;
}

.products-hero-stat-number {
  font-family: var(--ff-disp);
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}

.products-hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  font-family: var(--ff-body);
}

/* ── PRODUCTS GRID ── */
.products-grid-section {
  padding: var(--section-v) 0;
  background: var(--bg);
}

.products-grid-header {
  text-align: center;
  margin-bottom: 40px;
}

.products-grid-title {
  font-family: var(--ff-disp);
  font-size: clamp(30px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
}

.products-grid-subtitle {
  font-size: 16px;
  color: var(--muted);
  margin-top: 6px;
  font-family: var(--ff-body);
}

.products-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card-full {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 32px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.product-card-full:hover {
  border-color: var(--red);
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
  transform: translateY(-4px);
}

.product-card-full-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.product-card-full-icon {
  width: 52px;
  height: 52px;
  background: var(--red-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.product-card-full-icon i {
  color: var(--red);
  font-size: 22px;
}

.product-card-full-badge {
  font-family: var(--ff-disp);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--red);
  padding: 3px 12px;
}

.product-card-full-title {
  font-family: var(--ff-disp);
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 2px;
}

.product-card-full-subtitle {
  font-family: var(--ff-disp);
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
}

.product-card-full-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-family: var(--ff-body);
  margin-bottom: 16px;
}

.product-card-full-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.product-card-full-features li {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
}

.product-card-full-features li i {
  color: var(--red);
  font-size: 12px;
}

.product-card-full-actions {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.product-card-full-actions .btn-ghost {
  padding: 10px 18px;
  font-size: 12px;
}

/* ── WHY PRODUCTS ── */
.products-why-section {
  padding: var(--section-v) 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.products-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 8px;
}

.products-why-card {
  background: var(--bg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
}

.products-why-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
}

.products-why-card-icon {
  width: 56px;
  height: 56px;
  background: var(--red-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: all 0.3s;
}

.products-why-card:hover .products-why-card-icon {
  background: var(--red);
}

.products-why-card-icon i {
  color: var(--red);
  font-size: 22px;
  transition: color 0.3s;
}

.products-why-card:hover .products-why-card-icon i {
  color: #fff;
}

.products-why-card h4 {
  font-family: var(--ff-disp);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.products-why-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  font-family: var(--ff-body);
}

/* ── COMPARISON TABLE ── */
.products-comparison {
  padding: var(--section-v) 0;
  background: var(--bg);
}

.products-comparison-table-wrap {
  overflow-x: auto;
  margin-top: 8px;
}

.products-comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.products-comparison-table thead th {
  font-family: var(--ff-disp);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  padding: 14px 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  text-align: left;
}

.products-comparison-table thead th:first-child {
  width: 30%;
}

.products-comparison-table tbody td {
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--muted);
  padding: 12px 16px;
  border: 1px solid var(--border);
}

.products-comparison-table tbody td:first-child {
  font-weight: 600;
  color: var(--ink);
}

.products-comparison-table tbody tr:hover {
  background: var(--bg-alt);
}

/* ── CTA ── */
.products-cta {
  padding: var(--section-v) 0;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
}

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

.products-cta-icon {
  font-size: 48px;
  color: var(--red);
  margin-bottom: 16px;
}

.products-cta-title {
  font-family: var(--ff-disp);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.025em;
}

.products-cta-text {
  font-size: 16px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin: 16px 0 24px;
  font-family: var(--ff-body);
}

.products-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .products-grid-full {
    grid-template-columns: 1fr 1fr;
  }
  .products-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .products-hero-stats {
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .products-page-hero {
    padding: 40px 0 40px;
  }
  .products-page-hero-title {
    font-size: clamp(28px, 7vw, 34px);
  }
  .products-grid-full {
    grid-template-columns: 1fr;
  }
  .products-why-grid {
    grid-template-columns: 1fr;
  }
  .products-hero-stats {
    flex-direction: column;
    gap: 12px;
  }
  .products-hero-stat {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  .product-card-full {
    padding: 24px;
  }
  .product-card-full-actions {
    flex-direction: column;
  }
  .product-card-full-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .products-cta-buttons {
    flex-direction: column;
  }
  .products-cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  .products-comparison-table-wrap {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .product-card-full-title {
    font-size: 18px;
  }
  .product-card-full-header {
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* ============================================
   SERVICE DETAIL PAGE — PREMIUM STYLES
   ============================================ */

/* ── HERO ── */
.service-detail-hero {
  position: relative;
  background: var(--bg-dark);
  padding: var(--section-v) 0 60px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.service-hero-bg-pattern {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 70% 30%, rgba(232,0,28,0.06) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(232,0,28,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.service-detail-hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
}

.service-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--ff-disp);
  transition: gap 0.2s;
  text-decoration: none;
}

.service-detail-back:hover {
  gap: 12px;
}

.service-detail-hero-icon {
  width: 70px;
  height: 70px;
  background: var(--red-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  margin-top: 16px;
}

.service-detail-hero-icon i {
  color: var(--red);
  font-size: 30px;
}

.service-detail-hero-title {
  font-family: var(--ff-disp);
  font-size: clamp(38px, 4.5vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-top: 12px;
}

.service-detail-hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-top: 12px;
  max-width: 520px;
  font-family: var(--ff-body);
}

.service-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* ── WHAT WE DO ── */
.service-detail-what {
  padding: var(--section-v) 0;
  background: var(--bg);
}

.service-detail-what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.service-detail-what-content .lbl {
  margin-bottom: 8px;
}

.service-detail-what-content h2 {
  font-family: var(--ff-disp);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 12px;
}

.service-detail-what-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  font-family: var(--ff-body);
}

.service-detail-feature-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
}

.service-detail-feature-list li {
  font-size: 13.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
}

.service-detail-feature-list li i {
  color: var(--red);
  font-size: 16px;
}

.service-detail-stats {
  display: flex;
  gap: 30px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.service-detail-stat {
  text-align: left;
}

.service-detail-stat-number {
  font-family: var(--ff-disp);
  font-size: 26px;
  font-weight: 800;
  color: var(--red);
  display: block;
}

.service-detail-stat-label {
  font-size: 12.5px;
  color: var(--muted);
  font-family: var(--ff-body);
}

.service-detail-what-image-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.service-detail-what-image-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.service-detail-what-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: all 0.3s;
}

.service-detail-what-badge:hover {
  background: var(--red);
}

.service-detail-what-badge i {
  font-size: 24px;
  color: var(--red);
  transition: color 0.3s;
}

.service-detail-what-badge:hover i {
  color: #fff;
}

.service-detail-what-badge span {
  font-family: var(--ff-disp);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

/* ── BLACK DIVIDER ── */
.service-divider-black {
  background: var(--bg-dark);
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.service-divider-black-inner {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 14px 0;
}

.service-divider-black-inner span {
  color: var(--red);
  font-size: 12px;
  opacity: 0.5;
  letter-spacing: 4px;
}

.service-divider-black-reverse {
  background: var(--bg-alt);
  border-color: var(--border);
}

.service-divider-black-reverse .service-divider-black-inner span {
  color: var(--muted);
}

/* ── PROCESS ── */
.service-detail-process {
  padding: var(--section-v) 0;
  background: var(--bg-alt);
}

.service-detail-process-header {
  text-align: center;
  margin-bottom: 40px;
}

.service-detail-process-title {
  font-family: var(--ff-disp);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  color: var(--ink);
  margin-top: 6px;
  line-height: 1.1;
}

.service-detail-process-subtitle {
  font-size: 15px;
  color: var(--muted);
  margin-top: 4px;
  font-family: var(--ff-body);
}

.service-detail-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.service-detail-process-step {
  background: var(--bg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
}

.service-detail-process-step:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
}

.service-detail-process-step-icon {
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
}

.service-detail-process-num {
  font-family: var(--ff-disp);
  font-size: 32px;
  font-weight: 800;
  color: var(--red);
  opacity: 0.15;
  display: block;
  line-height: 1;
}

.service-detail-process-step-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: var(--red);
}

.service-detail-process-step h4 {
  font-family: var(--ff-disp);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.service-detail-process-step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  font-family: var(--ff-body);
}

/* ── TECH STACK ── */
.service-detail-tech {
  padding: var(--section-v) 0;
  background: var(--bg);
}

.service-detail-tech-header {
  text-align: center;
  margin-bottom: 40px;
}

.service-detail-tech-title {
  font-family: var(--ff-disp);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  color: var(--ink);
  margin-top: 6px;
  line-height: 1.1;
}

.service-detail-tech-subtitle {
  font-size: 15px;
  color: var(--muted);
  margin-top: 4px;
  font-family: var(--ff-body);
}

.service-detail-tech-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1px;
  background: var(--border);
}

.service-detail-tech-item {
  background: var(--bg);
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s;
}

.service-detail-tech-item:hover {
  background: var(--red-soft);
  transform: translateY(-4px);
}

.service-detail-tech-item i {
  font-size: 32px;
  color: var(--red);
  display: block;
}

.service-detail-tech-item span {
  font-family: var(--ff-disp);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  display: block;
  margin-top: 6px;
}

/* ── WHY CHOOSE US ── */
.service-detail-why {
  padding: var(--section-v) 0;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.service-detail-why-header {
  text-align: center;
  margin-bottom: 40px;
}

.service-detail-why-title {
  font-family: var(--ff-disp);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  color: #fff;
  margin-top: 6px;
  line-height: 1.1;
}

.service-detail-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}

.service-detail-why-card {
  background: var(--bg-dark);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
}

.service-detail-why-card:hover {
  background: rgba(232,0,28,0.05);
}

.service-detail-why-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(232,0,28,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: all 0.3s;
}

.service-detail-why-card:hover .service-detail-why-card-icon {
  background: var(--red);
}

.service-detail-why-card-icon i {
  color: var(--red);
  font-size: 22px;
  transition: color 0.3s;
}

.service-detail-why-card:hover .service-detail-why-card-icon i {
  color: #fff;
}

.service-detail-why-card h4 {
  font-family: var(--ff-disp);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.service-detail-why-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  font-family: var(--ff-body);
}

/* ── TESTIMONIAL ── */
.service-detail-testimonial {
  padding: var(--section-v) 0;
  background: var(--bg-alt);
}

.service-detail-testimonial-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.service-detail-testimonial-icon i {
  font-size: 40px;
  color: var(--red);
  opacity: 0.3;
}

.service-detail-testimonial-content p {
  font-size: 18px;
  color: #444;
  line-height: 1.8;
  margin-top: 12px;
  font-style: italic;
  font-family: var(--ff-body);
}

.service-detail-testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}

.service-detail-testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.service-detail-testimonial-author strong {
  font-family: var(--ff-disp);
  font-size: 15px;
  color: var(--ink);
  display: block;
}

.service-detail-testimonial-author span {
  font-size: 13px;
  color: var(--muted);
  font-family: var(--ff-body);
}

/* ── CTA ── */
.service-detail-cta {
  padding: var(--section-v) 0;
  background: var(--bg-dark);
}

.service-detail-cta-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.service-detail-cta-icon {
  font-size: 48px;
  color: var(--red);
  margin-bottom: 16px;
}

.service-detail-cta-content h2 {
  font-family: var(--ff-disp);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.025em;
}

.service-detail-cta-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin: 16px 0 24px;
  font-family: var(--ff-body);
}

.service-detail-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .service-detail-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-detail-tech-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .service-detail-what-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-detail-what-image-wrap img {
    height: 250px;
  }
  .service-detail-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-detail-feature-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .service-detail-hero {
    padding: 40px 0 50px;
  }
  .service-detail-hero-title {
    font-size: clamp(28px, 7vw, 34px);
  }
  .service-detail-process-grid {
    grid-template-columns: 1fr;
  }
  .service-detail-tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-detail-why-grid {
    grid-template-columns: 1fr;
  }
  .service-hero-actions {
    flex-direction: column;
  }
  .service-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .service-detail-stats {
    flex-direction: column;
    gap: 8px;
  }
  .service-detail-cta-buttons {
    flex-direction: column;
  }
  .service-detail-cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .service-detail-hero-icon {
    width: 54px;
    height: 54px;
  }
  .service-detail-hero-icon i {
    font-size: 22px;
  }
  .service-detail-process-step {
    padding: 24px;
  }
  .service-detail-why-card {
    padding: 24px;
  }
}

/* ============================================
   SERVICES PAGE — PREMIUM STYLES
   ============================================ */

/* ── HERO ── */
.services-page-hero {
  position: relative;
  background: var(--bg-dark);
  padding: var(--section-v) 0 50px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.services-hero-bg-pattern {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 70% 30%, rgba(232,0,28,0.06) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(232,0,28,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.services-page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
}

.services-hero-badge-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.services-hero-badge {
  font-family: var(--ff-disp);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 4px 14px;
}

.services-page-hero-title {
  font-family: var(--ff-disp);
  font-size: clamp(38px, 4.5vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-top: 4px;
}

.services-page-hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-top: 12px;
  font-family: var(--ff-body);
}

.services-hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.services-hero-stat {
  display: flex;
  flex-direction: column;
}

.services-hero-stat-number {
  font-family: var(--ff-disp);
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}

.services-hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  font-family: var(--ff-body);
}

/* ── SERVICES DETAIL GRID ── */
.services-detail-section {
  padding: var(--section-v) 0;
  background: var(--bg);
}

.services-detail-header {
  text-align: center;
  margin-bottom: 40px;
}

.services-detail-title-main {
  font-family: var(--ff-disp);
  font-size: clamp(30px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
}

.services-detail-subtitle {
  font-size: 16px;
  color: var(--muted);
  margin-top: 6px;
  font-family: var(--ff-body);
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-detail-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 32px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.service-detail-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
  transform: translateY(-4px);
}

.service-detail-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.service-detail-icon {
  width: 52px;
  height: 52px;
  background: var(--red-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.service-detail-icon i {
  color: var(--red);
  font-size: 22px;
}

.service-detail-badge {
  font-family: var(--ff-disp);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--red);
  padding: 3px 12px;
}

.service-detail-badge-dark {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.6);
}

.service-detail-title {
  font-family: var(--ff-disp);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.service-detail-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-family: var(--ff-body);
  flex: 1;
}

.service-detail-features {
  list-style: none;
  padding: 0;
  margin: 16px 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-detail-features li {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
}

.service-detail-features li i {
  color: var(--red);
  font-size: 12px;
}

.service-detail-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.service-detail-actions .btn {
  font-size: 13px;
  padding: 10px 22px;
}

.service-detail-learn {
  font-family: var(--ff-disp);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
  padding: 10px 0;
}

.service-detail-learn:hover {
  color: var(--red);
  gap: 10px;
}

/* ── BLACK DIVIDER ── */
.services-divider-black {
  background: var(--bg-dark);
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.services-divider-black-inner {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 14px 0;
}

.services-divider-black-inner span {
  color: var(--red);
  font-size: 12px;
  opacity: 0.5;
  letter-spacing: 4px;
}

/* ── WHY US ── */
.services-why {
  padding: var(--section-v) 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.services-why-header {
  text-align: center;
  margin-bottom: 40px;
}

.services-why-title {
  font-family: var(--ff-disp);
  font-size: clamp(30px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  margin-top: 6px;
}

.services-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.services-why-card {
  background: var(--bg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
}

.services-why-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
}

.services-why-card-icon {
  width: 56px;
  height: 56px;
  background: var(--red-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: all 0.3s;
}

.services-why-card:hover .services-why-card-icon {
  background: var(--red);
}

.services-why-card-icon i {
  color: var(--red);
  font-size: 22px;
  transition: color 0.3s;
}

.services-why-card:hover .services-why-card-icon i {
  color: #fff;
}

.services-why-card h4 {
  font-family: var(--ff-disp);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.services-why-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  font-family: var(--ff-body);
}

/* ── TESTIMONIAL ── */
.services-testimonial {
  padding: var(--section-v) 0;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.services-testimonial-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.services-testimonial-icon i {
  font-size: 40px;
  color: var(--red);
  opacity: 0.3;
}

.services-testimonial-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-top: 12px;
  font-style: italic;
  font-family: var(--ff-body);
}

.services-testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}

.services-testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.services-testimonial-author strong {
  font-family: var(--ff-disp);
  font-size: 15px;
  color: #fff;
  display: block;
}

.services-testimonial-author span {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-family: var(--ff-body);
}

@media (max-width: 1100px) {
  .services-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .services-hero-stats {
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .services-page-hero {
    padding: 40px 0 40px;
  }
  .services-page-hero-title {
    font-size: clamp(28px, 7vw, 34px);
  }
  .services-detail-grid {
    grid-template-columns: 1fr;
  }
  .services-why-grid {
    grid-template-columns: 1fr;
  }
  .services-hero-stats {
    flex-direction: column;
    gap: 12px;
  }
  .services-hero-stat {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  .service-detail-card {
    padding: 24px;
  }
  .service-detail-actions {
    flex-direction: column;
  }
  .service-detail-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .service-detail-title {
    font-size: 17px;
  }
  .service-detail-card-top {
    flex-wrap: wrap;
    gap: 8px;
  }
  .services-testimonial-content p {
    font-size: 15px;
  }
}

/* ============================================
   ENHANCED CTA SECTION — PREMIUM STYLES
   ============================================ */

.cta-enhanced {
  position: relative;
  padding: var(--section-v) 0;
  background: var(--bg-dark);
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cta-enhanced-bg-pattern {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(232,0,28,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(232,0,28,0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(232,0,28,0.03) 0%, transparent 40%);
  pointer-events: none;
}

.cta-enhanced-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-enhanced-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: var(--red);
}

.cta-enhanced-shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -80px;
  animation: floatShape 8s ease-in-out infinite;
}

.cta-enhanced-shape-2 {
  width: 200px;
  height: 200px;
  bottom: -60px;
  left: -60px;
  animation: floatShape 12s ease-in-out infinite reverse;
}

.cta-enhanced-shape-3 {
  width: 120px;
  height: 120px;
  top: 40%;
  left: 30%;
  animation: floatShape 10s ease-in-out infinite 2s;
}

.cta-enhanced-shape-4 {
  width: 80px;
  height: 80px;
  bottom: 30%;
  right: 20%;
  animation: floatShape 7s ease-in-out infinite 1s;
}

@keyframes floatShape {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(20px, -20px) scale(1.1);
  }
  66% {
    transform: translate(-10px, 15px) scale(0.9);
  }
}

.cta-enhanced-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

.cta-enhanced-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 8px 18px;
  margin-bottom: 24px;
}

.cta-enhanced-badge-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.cta-enhanced-badge span {
  font-family: var(--ff-disp);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

.cta-enhanced-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 40px;
}

.cta-enhanced-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-enhanced-icon-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta-enhanced-icon {
  width: 60px;
  height: 60px;
  background: var(--red-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  animation: pulseIcon 3s ease-in-out infinite;
}

@keyframes pulseIcon {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.cta-enhanced-icon i {
  color: var(--red);
  font-size: 26px;
}

.cta-enhanced-title {
  font-family: var(--ff-disp);
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.025em;
}

.cta-enhanced-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 450px;
  font-family: var(--ff-body);
}

.cta-enhanced-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.cta-enhanced-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.cta-enhanced-trust-item i {
  color: #22c55e;
  font-size: 14px;
}

.cta-enhanced-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-enhanced-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-enhanced-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  padding: 16px 32px;
  font-family: var(--ff-disp);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.cta-enhanced-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s;
}

.cta-enhanced-btn-primary:hover::before {
  left: 100%;
}

.cta-enhanced-btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,0,28,0.35);
}

.cta-enhanced-btn-text {
  position: relative;
  z-index: 1;
}

.cta-enhanced-btn-icon {
  position: relative;
  z-index: 1;
  transition: transform 0.3s;
}

.cta-enhanced-btn-primary:hover .cta-enhanced-btn-icon {
  transform: translateX(4px);
}

.cta-enhanced-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--ff-disp);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.2);
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
  transition: all 0.3s;
  background: transparent;
  cursor: pointer;
}

.cta-enhanced-btn-secondary:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.cta-enhanced-contact {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.cta-enhanced-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-enhanced-contact-item i {
  color: var(--red);
  font-size: 14px;
  width: 18px;
}

.cta-enhanced-contact-label {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  font-family: var(--ff-body);
  display: block;
}

.cta-enhanced-contact-value {
  font-family: var(--ff-disp);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.cta-enhanced-contact-value:hover {
  color: var(--red);
}

.cta-enhanced-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}

.cta-enhanced-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 30px;
}

.cta-enhanced-stat-number {
  font-family: var(--ff-disp);
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
}

.cta-enhanced-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  font-family: var(--ff-body);
}

.cta-enhanced-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.08);
}

@media (max-width: 1024px) {
  .cta-enhanced-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .cta-enhanced-left {
    text-align: center;
  }
  .cta-enhanced-desc {
    max-width: 100%;
  }
  .cta-enhanced-trust {
    justify-content: center;
  }
  .cta-enhanced-buttons {
    flex-direction: row;
  }
  .cta-enhanced-contact {
    justify-content: center;
  }
  .cta-enhanced-stats {
    gap: 20px;
  }
  .cta-enhanced-stat {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .cta-enhanced-buttons {
    flex-direction: column;
  }
  .cta-enhanced-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  .cta-enhanced-stats {
    flex-direction: column;
    gap: 16px;
  }
  .cta-enhanced-stat {
    padding: 0;
    flex-direction: row;
    gap: 8px;
  }
  .cta-enhanced-stat-divider {
    display: none;
  }
  .cta-enhanced-contact {
    flex-direction: column;
    align-items: center;
  }
  .cta-enhanced-badge {
    margin: 0 auto 24px;
  }
  .cta-enhanced-icon-wrap {
    justify-content: center;
  }
  .cta-enhanced-title {
    font-size: clamp(26px, 6vw, 32px);
  }
}

@media (max-width: 480px) {
  .cta-enhanced {
    padding: 50px 0;
  }
  .cta-enhanced-btn-primary {
    padding: 14px 24px;
    font-size: 13px;
  }
  .cta-enhanced-stat-number {
    font-size: 22px;
  }
  .cta-enhanced-shapes {
    display: none;
  }
  .cta-enhanced-stat {
    padding: 0 10px;
  }
}
/* ============================================
   ABOUT HOME SECTION — Premium White Theme
   ============================================ */

.about-home-section {
  padding: var(--section-v) 0;
  background: var(--bg);
}

.about-home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ── Left Side ── */
.about-home-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-home-title {
  font-family: var(--ff-disp);
  font-size: clamp(30px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -.025em;
}

.about-home-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  font-family: var(--ff-body);
}

.about-home-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 4px 0;
}

.about-home-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.about-home-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--red-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
}

.about-home-feature-icon i {
  color: var(--red);
  font-size: 16px;
}

.about-home-feature h4 {
  font-family: var(--ff-disp);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.about-home-feature p {
  font-size: 13px;
  color: var(--muted);
  font-family: var(--ff-body);
}

.about-home-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ── Right Side ── */
.about-home-image {
  position: relative;
}

.about-home-image-grid {
  position: relative;
}

.about-home-image-main {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 0;
}

.about-home-image-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.about-home-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: all 0.3s;
}

.about-home-image-badge:hover {
  background: var(--red);
}

.about-home-image-badge i {
  font-size: 24px;
  color: var(--red);
  transition: color 0.3s;
}

.about-home-image-badge:hover i {
  color: #fff;
}

.about-home-image-badge span {
  font-family: var(--ff-disp);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

/* ── Floating Cards ── */
.about-home-float-card {
  position: absolute;
  background: #fff;
  padding: 14px 18px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
}

.about-home-float-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.about-home-float-card-1 {
  top: -20px;
  right: -20px;
  animation: floatUp 3s ease-in-out infinite;
}

.about-home-float-card-2 {
  bottom: -10px;
  left: -30px;
  animation: floatUp 4s ease-in-out infinite 0.5s;
}

.about-home-float-card-3 {
  bottom: 40px;
  right: -30px;
  animation: floatUp 3.5s ease-in-out infinite 1s;
}

@keyframes floatUp {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.about-home-float-icon {
  width: 40px;
  height: 40px;
  background: var(--red-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
}

.about-home-float-icon i {
  color: var(--red);
  font-size: 16px;
}

.about-home-float-number {
  font-family: var(--ff-disp);
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  display: block;
  line-height: 1.2;
}

.about-home-float-label {
  font-size: 11px;
  color: var(--muted);
  font-family: var(--ff-body);
}

/* ── Trust Indicators ── */
.about-home-trust {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.about-home-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-disp);
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-home-trust-item img {
  filter: brightness(0) invert(0.3);
}

/* ──────────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .about-home-grid {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .about-home-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-home-image-main img {
    height: 320px;
  }
  
  .about-home-float-card-1 {
    top: -12px;
    right: -10px;
  }
  
  .about-home-float-card-2 {
    bottom: -8px;
    left: -15px;
  }
  
  .about-home-float-card-3 {
    bottom: 30px;
    right: -15px;
  }
}

@media (max-width: 640px) {
  .about-home-actions {
    flex-direction: column;
  }
  
  .about-home-actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .about-home-image-main img {
    height: 250px;
  }
  
  .about-home-float-card {
    padding: 10px 14px;
  }
  
  .about-home-float-card-1 {
    top: -8px;
    right: -8px;
  }
  
  .about-home-float-card-2 {
    bottom: -6px;
    left: -10px;
  }
  
  .about-home-float-card-3 {
    display: none;
  }
  
  .about-home-float-number {
    font-size: 15px;
  }
  
  .about-home-trust {
    gap: 10px;
  }
  
  .about-home-trust-item {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .about-home-float-card-2 {
    display: none;
  }
}