/* ============================================================
       ROOT VARIABLES — Trango Tech UAE
    ============================================================ */
:root {
  --red: #dc3545;
  --red-h: #b02a37;
  --red-tint: #fce8ea;
  --black: #0a0a0a;
  --ink: #111317;
  --ink-2: #1a1d23;
  --white: #ffffff;
  --gray-70: #333333;
  --gray-60: #555555;
  --gray-40: #888888;
  --gray-20: #cccccc;
  --gray-10: #e5e5e5;
  --gray-05: #f5f5f7;
  --px: 80px;
  --py: 96px;
  --cont: 1200px;
  --nav-h: 72px;
  --radius: 8px;
  --radius-lg: 16px;
}

/* ============================================================
       RESET & BASE
    ============================================================ */

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ============================================================
       TYPOGRAPHY
    ============================================================ */
h1,
h2,
h3,
h4 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: inherit;
}
h1 {
  font-size: clamp(36px, 5vw, 60px);
}
h2 {
  font-size: clamp(28px, 3.5vw, 44px);
}
h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
}
h4 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
}
p {
  line-height: 1.75;
}

/* ============================================================
       LAYOUT UTILITIES
    ============================================================ */
.wrap {
  max-width: var(--cont);
  margin: 0 auto;
  padding: 0 var(--px);
}
.sec {
  padding: var(--py) 0;
}
.sec-dark {
  background: var(--ink);
  color: var(--white);
}
.sec-darker {
  background: var(--black);
  color: var(--white);
}
.sec-light {
  background: var(--white);
  color: var(--gray-70);
}
.sec-gray {
  background: var(--gray-05);
  color: var(--gray-70);
}

/* ============================================================
       EYEBROW LABEL
    ============================================================ */
#main-content {
  padding-top: 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.eyebrow-c {
  display: flex;
  justify-content: center;
}
.eyebrow-c::before {
  display: none;
}
.eyebrow-c::after {
  display: none;
}
/* Center eyebrow with line on both sides */
.eyebrow-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: "Inter", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.eyebrow-center::before,
.eyebrow-center::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

/* ============================================================
       BUTTONS
    ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  /*       font-family: 'Inter', sans-serif; */
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-h);
  border-color: var(--red-h);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(220, 53, 69, 0.3);
}
.btn-outline-w {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-outline-w:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-outline {
  background: transparent;
  color: var(--gray-70);
  border-color: var(--gray-20);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
}
.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}
.btn-lg {
  padding: 17px 36px;
  font-size: 16px;
}

/* ============================================================
       NAVIGATION
    ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 var(--px);
  max-width: 1400px;
  margin: 0 auto;
}
.nav-logo img {
  height: 36px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-phone {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-phone:hover {
  color: var(--white);
}
.nav-phone svg {
  width: 14px;
  height: 14px;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* ============================================================
       HERO SECTION
    ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Grid overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

/* Radial glow */
.hero::after {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(
    ellipse at center,
    rgba(220, 53, 69, 0.12) 0%,
    transparent 70%
  );
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--cont);
  margin: 0 auto;
  padding: 80px var(--px) 0px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: flex-start;
}

.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 24px;
  font-family: "Inter", monospace;
  letter-spacing: 0.02em;
}
.hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}
.hero-breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.hero-breadcrumb span {
  color: rgba(255, 255, 255, 0.25);
}
.hero-breadcrumb .current {
  color: rgba(255, 255, 255, 0.75);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 53, 69, 0.12);
  border: 1px solid rgba(220, 53, 69, 0.25);
  color: #ff8a94;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-tag .dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  max-width: 620px;
}
.hero h1 .accent {
  color: var(--red);
}

.hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 0px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-trust-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-trust-icon svg {
  width: 16px;
  height: 16px;
  color: var(--red);
}
.hero-trust-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.2;
}
.hero-trust-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

/* Hero right card */
.hero-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(8px);
}
.hero-card-title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.hero-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.hero-stat-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.hero-stat-row:first-of-type {
  padding-top: 0;
}
.hero-stat-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-stat-num span {
  color: var(--red);
}
.hero-stat-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 150px;
  text-align: right;
  line-height: 1.4;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 14px 16px;
  background: rgba(220, 53, 69, 0.08);
  border: 1px solid rgba(220, 53, 69, 0.2);
  border-radius: 8px;
}
.hero-badge svg {
  width: 18px;
  height: 18px;
  color: var(--red);
  flex-shrink: 0;
}
.hero-badge-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  line-height: 1.4;
}
.hero-badge-text strong {
  color: var(--white);
}

/* ============================================================
       STATS STRIP
    ============================================================ */
.stats-strip {
  background: var(--ink-2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 32px 0;
}
.stats-strip .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}
.stat-item + .stat-item {
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  padding-left: 24px;
}
.stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-num .red {
  color: var(--red);
}
.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 6px;
  font-weight: 500;
}

/* ============================================================
       BUSINESS CASE SECTION
    ============================================================ */
.business-case {
  background: var(--white);
  padding: var(--py) 0;
}
.business-case .section-header {
  max-width: 660px;
  margin-bottom: 64px;
}
.business-case .section-header h2 {
  color: var(--black);
  margin-bottom: 16px;
}
.business-case .section-header p {
  font-size: 18px;
  color: var(--gray-60);
}

.bc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.bc-left {
}
.bc-stat-block {
  background: var(--gray-05);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 24px;
  border: 1px solid var(--gray-10);
}
.bc-big-number {
  font-size: 72px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
}
.bc-big-label {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.bc-big-source {
  font-size: 13px;
  color: var(--gray-40);
}

.bc-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bc-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--gray-05);
  border-radius: var(--radius);
  border: 1px solid var(--gray-10);
  transition: border-color 0.2s, transform 0.2s;
}
.bc-point:hover {
  border-color: rgba(220, 53, 69, 0.25);
  transform: translateX(4px);
}
.bc-point-icon {
  width: 36px;
  height: 36px;
  background: var(--red-tint);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bc-point-icon svg {
  width: 16px;
  height: 16px;
  color: var(--red);
}
.bc-point-text h4 {
  font-size: 15px;
  color: var(--black);
  margin-bottom: 3px;
}
.bc-point-text p {
  font-size: 13px;
  color: var(--gray-60);
  line-height: 1.5;
}

.bc-right {
}
.pain-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pain-card {
  background: var(--white);
  border: 1px solid var(--gray-10);
  border-radius: var(--radius-lg);
  padding: 28px 28px 28px 24px;
  border-left: 3px solid var(--red);
  transition: box-shadow 0.2s, transform 0.2s;
}
.pain-card:hover {
  box-shadow: 0 12px 40px rgba(220, 53, 69, 0.12);
  transform: translateY(-3px) translateX(3px);
  border-left-color: var(--red);
  background: #fff9f9;
}
.pain-card-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  font-family: "Inter", monospace;
}
.pain-card h3 {
  font-size: 18px;
  color: var(--black);
  margin-bottom: 8px;
  font-weight: 700;
}
.pain-card p {
  font-size: 14px;
  color: var(--gray-60);
  line-height: 1.65;
}

/* ============================================================
       SERVICES SECTION
    ============================================================ */
.services-section {
  background: var(--gray-05);
  padding: var(--py) 0;
}
.section-header-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-header-center h2 {
  color: var(--black);
  margin-bottom: 16px;
}
.section-header-center p {
  font-size: 18px;
  color: var(--gray-60);
}

.services-layout {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 56px;
}
.services-accordion {
}
.svc-item {
  border-bottom: 1px solid var(--gray-10);
  overflow: hidden;
}
.svc-item:first-child {
  border-top: 1px solid var(--gray-10);
}
.svc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Inter", sans-serif;
  transition: padding-left 0.2s;
}
.svc-trigger:hover {
  padding-left: 6px;
}
.svc-trigger.open {
  padding-left: 6px;
}
.svc-trigger-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.svc-trigger-icon {
  width: 40px;
  height: 40px;
  background: var(--red-tint);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.svc-trigger.open .svc-trigger-icon {
  background: var(--red);
}
.svc-trigger-icon svg {
  width: 18px;
  height: 18px;
  color: var(--red);
  transition: color 0.2s;
}
.svc-trigger.open .svc-trigger-icon svg {
  color: var(--white);
}
.svc-trigger-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  transition: color 0.2s;
}
.svc-trigger.open .svc-trigger-title {
  color: var(--red);
}
.svc-trigger-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-40);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 2px;
}
.svc-chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gray-10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}
.svc-chevron svg {
  width: 14px;
  height: 14px;
  color: var(--gray-40);
  transition: transform 0.3s;
}
.svc-trigger.open .svc-chevron {
  background: var(--red);
  border-color: var(--red);
}
.svc-trigger.open .svc-chevron svg {
  color: var(--white);
  transform: rotate(180deg);
}
.svc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 0 0 54px;
}
.svc-body.open {
  max-height: 200px;
  padding: 0 0 20px 54px;
}
.svc-body p {
  font-size: 14px;
  color: var(--gray-60);
  line-height: 1.7;
}
.svc-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

/* Right visual panel */
.services-visual {
  position: sticky;
  top: 100px;
}
.svc-visual-panel {
  display: none;
  animation: svcFadeIn 0.4s ease;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gray-10);
  background: var(--white);
  aspect-ratio: 4/3;
  position: relative;
}
.svc-visual-panel.active {
  display: block;
}
@keyframes svcFadeIn {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.svc-visual-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.svc-visual-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.85) 0%,
    transparent 100%
  );
  padding: 24px 20px 20px;
}
.svc-visual-label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}
.svc-visual-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 3px;
}

@media (max-width: 960px) {
  .services-layout {
    grid-template-columns: 1fr;
  }
  .services-visual {
    position: static;
    margin-bottom: 32px;
    order: -1;
  }
}

/* ============================================================
       BENEFITS SECTION
    ============================================================ */
.benefits-section {
  background: var(--white);
  padding: var(--py) 0;
}
.benefits-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 72px;
  align-items: center;
}
.benefits-left h2 {
  color: var(--black);
  margin-bottom: 20px;
}
.benefits-left p {
  font-size: 17px;
  color: var(--gray-60);
  margin-bottom: 36px;
  line-height: 1.75;
}
.benefits-cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.benefits-cta-note {
  font-size: 13px;
  color: var(--gray-40);
  display: flex;
  align-items: center;
  gap: 6px;
}
.benefits-cta-note svg {
  width: 14px;
  height: 14px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.benefit-card {
  background: var(--gray-05);
  border: 1px solid var(--gray-10);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.benefit-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
  transform: translateY(-3px);
}
.benefit-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.benefit-card h3 {
  font-size: 16px;
  color: var(--black);
  margin-bottom: 8px;
  font-weight: 700;
}
.benefit-card p {
  font-size: 13px;
  color: var(--gray-60);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .benefits-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
@media (max-width: 640px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
       INDUSTRIES SECTION
    ============================================================ */
.industries-section {
  background: var(--ink);
  padding: var(--py) 0;
  color: var(--white);
}
.industries-section .section-header-center h2 {
  color: var(--white);
}
.industries-section .section-header-center p {
  color: rgba(255, 255, 255, 0.55);
}
.industries-section .eyebrow-center {
  color: var(--red);
}
.industries-section .eyebrow-center::before,
.industries-section .eyebrow-center::after {
  background: var(--red);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.industry-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.industry-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 0;
}
.industry-card:hover .industry-card-bg {
  opacity: 0.35;
  transform: scale(1.05);
}
.industry-card:hover {
  border-color: rgba(220, 53, 69, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.industry-card-content {
  position: relative;
  z-index: 1;
}
.industry-icon {
  font-size: 28px;
  margin-bottom: 14px;
  line-height: 1;
}
.industry-card h3 {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 700;
}
.industry-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}
.industry-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.industry-pill {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.03em;
}

@media (max-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
       PROCESS SECTION
    ============================================================ */
.process-section {
  background: var(--black);
  padding: var(--py) 0;
  color: var(--white);
}
.process-section .section-header-top {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}
.process-section .section-header-top h2 {
  color: var(--white);
  margin-bottom: 14px;
}
.process-section .section-header-top p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 17px;
}
.process-stepper {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  overflow: hidden;
}
.process-steps-nav {
  background: rgba(255, 255, 255, 0.03);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
}
.process-nav-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 28px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s;
  position: relative;
}
.process-nav-item:last-child {
  border-bottom: none;
}
.process-nav-item:hover {
  background: rgba(255, 255, 255, 0.04);
}
.process-nav-item.active {
  background: rgba(220, 53, 69, 0.07);
}
.process-nav-item.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--red);
  border-radius: 0 3px 3px 0;
}
.process-nav-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s;
}
.process-nav-item.active .process-nav-num {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 0 20px rgba(220, 53, 69, 0.4);
}
.process-nav-text {
}
.process-nav-week {
  font-size: 10px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "Inter", monospace;
  margin-bottom: 4px;
  opacity: 0;
  transition: opacity 0.3s;
}
.process-nav-item.active .process-nav-week {
  opacity: 1;
}
.process-nav-title {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
  line-height: 1.3;
}
.process-nav-item.active .process-nav-title {
  color: var(--white);
}
.process-nav-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 3px;
  line-height: 1.4;
  transition: color 0.3s;
}
.process-nav-item.active .process-nav-sub {
  color: rgba(255, 255, 255, 0.5);
}

.process-content-panel {
  padding: 48px;
  position: relative;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.process-panel {
  display: none;
  animation: panelIn 0.35s ease forwards;
}
.process-panel.active {
  display: flex;
  flex-direction: column;
  height: 100%;
}
@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.process-panel-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.25);
  color: #ff8a94;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  align-self: flex-start;
}
.process-panel h3 {
  font-size: 28px;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.process-panel-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin-bottom: 32px;
}
.process-deliverables-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 40px;
}
.process-del-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
  transition: border-color 0.2s, background 0.2s;
}
.process-del-item:hover {
  border-color: rgba(220, 53, 69, 0.3);
  background: rgba(220, 53, 69, 0.05);
  color: rgba(255, 255, 255, 0.85);
}
.process-del-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}
.process-panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.process-progress {
  display: flex;
  align-items: center;
  gap: 6px;
}
.process-progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: background 0.3s, width 0.3s;
}
.process-progress-dot.active {
  background: var(--red);
  width: 24px;
  border-radius: 4px;
}
.process-nav-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Inter", sans-serif;
}
.process-nav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}
.process-nav-btn svg {
  width: 14px;
  height: 14px;
}
@media (max-width: 900px) {
  .process-stepper {
    grid-template-columns: 1fr;
  }
  .process-steps-nav {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    flex-direction: row;
    overflow-x: auto;
  }
  .process-nav-item {
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    min-width: 160px;
	  flex-wrap: wrap;
  }
  .process-nav-item.active::before {
    bottom: auto;
    right: 0;
    width: 100%;
    height: 3px;
    top: 0;
  }
  .process-deliverables-grid {
    grid-template-columns: 1fr;
  }
  .process-content-panel {
    padding: 32px 24px;
  }
}

/* ============================================================
       TECH STACK SECTION
    ============================================================ */
.tech-section {
  background: var(--gray-05);
  padding: var(--py) 0;
}
.tech-tabs-wrap {
  margin-top: 56px;
}
.tech-tab-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  border-bottom: 2px solid var(--gray-10);
  padding-bottom: 0;
}
.tech-tab-btn {
  padding: 10px 20px;
  border-radius: 8px 8px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-40);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Inter", sans-serif;
  position: relative;
  bottom: -2px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.tech-tab-btn:hover {
  color: var(--gray-70);
  background: var(--gray-10);
}
.tech-tab-btn.active {
  color: var(--red);
  border-bottom-color: var(--red);
  background: var(--white);
}
.tech-tab-panel {
  display: none;
  animation: tabFadeIn 0.3s ease;
  background: var(--white);
  border: 1px solid var(--gray-10);
  border-radius: 0 12px 12px 12px;
  padding: 32px;
}
.tech-tab-panel.active {
  display: block;
}
@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.tech-panel-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--gray-05);
  border: 1px solid var(--gray-10);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-70);
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s;
  cursor: default;
}
.tech-pill:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-tint);
  transform: translateY(-2px);
}
.tech-pill-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}
.tech-panel-category-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-40);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "Inter", monospace;
  margin: 0 0 14px;
}
.tech-panel-group {
  margin-bottom: 28px;
}
.tech-panel-group:last-child {
  margin-bottom: 0;
}

/* ============================================================
       UAE COMPLIANCE SECTION
    ============================================================ */
.compliance-section {
  background: var(--ink);
  padding: var(--py) 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.compliance-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(
    ellipse at top right,
    rgba(220, 53, 69, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.compliance-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.compliance-left h2 {
  color: var(--white);
  margin-bottom: 20px;
}
.compliance-left .lead {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
  line-height: 1.75;
}
.compliance-standards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.compliance-standard {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  transition: border-color 0.2s, background 0.2s;
}
.compliance-standard:hover {
  background: rgba(220, 53, 69, 0.06);
  border-color: rgba(220, 53, 69, 0.5);
  transform: translateX(6px);
}
.compliance-standard-icon {
  width: 36px;
  height: 36px;
  background: rgba(220, 53, 69, 0.12);
  border: 1px solid rgba(220, 53, 69, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.compliance-standard-icon svg {
  width: 16px;
  height: 16px;
  color: var(--red);
}
.compliance-standard h4 {
  font-size: 15px;
  color: var(--white);
  margin-bottom: 4px;
}
.compliance-standard p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.compliance-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.compliance-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.compliance-card:hover {
  border-color: rgba(220, 53, 69, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(220, 53, 69, 0.1);
}
.compliance-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.compliance-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(220, 53, 69, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.compliance-card-icon svg {
  width: 18px;
  height: 18px;
  color: var(--red);
}
.compliance-card h3 {
  font-size: 17px;
  color: var(--white);
  font-weight: 700;
}
.compliance-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}
.compliance-team-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(220, 53, 69, 0.08);
  border: 1px solid rgba(220, 53, 69, 0.2);
  border-radius: 10px;
}
.compliance-team-icon svg {
  width: 24px;
  height: 24px;
  color: var(--red);
}
.compliance-team-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  line-height: 1.5;
}
.compliance-team-text strong {
  color: var(--white);
}

@media (max-width: 1024px) {
  .compliance-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ============================================================
       CASE STUDIES SECTION
    ============================================================ */
.case-studies-section {
  background: var(--white);
  padding: var(--py) 0;
}
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.case-card {
  background: var(--white);
  border: 1px solid var(--gray-10);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}
.case-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.09);
  transform: translateY(-4px);
}
.case-card-image {
  height: 200px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.case-card-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}
.case-card-image-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
}
.case-industry-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 100px;
}
.case-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.case-client {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-40);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.case-card h3 {
  font-size: 19px;
  color: var(--black);
  line-height: 1.3;
}
.case-card p {
  font-size: 14px;
  color: var(--gray-60);
  line-height: 1.65;
  flex: 1;
}
.case-results {
  display: flex;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-10);
}
.case-result-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.case-result-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.02em;
}
.case-result-label {
  font-size: 12px;
  color: var(--gray-40);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .case-studies-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .case-studies-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
       WHY TRANGO TECH SECTION
    ============================================================ */
.why-section {
  background: var(--gray-05);
  padding: var(--py) 0;
}
.why-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: start;
}
.why-left h2 {
  color: var(--black);
  margin-bottom: 20px;
}
.why-left p {
  font-size: 17px;
  color: var(--gray-60);
  margin-bottom: 32px;
  line-height: 1.75;
}
.clutch-widget {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--gray-10);
  border-radius: 10px;
  margin-bottom: 16px;
}
.clutch-stars {
  display: flex;
  gap: 3px;
}
.clutch-stars svg {
  width: 16px;
  height: 16px;
  fill: #ff6d6d;
}
.clutch-rating-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
}
.clutch-review-count {
  font-size: 13px;
  color: var(--gray-40);
}

.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--gray-10);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.why-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
  transform: translateY(-3px);
}
.why-card-num {
  font-size: 48px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.why-card h3 {
  font-size: 16px;
  color: var(--black);
  margin-bottom: 8px;
  font-weight: 700;
}
.why-card p {
  font-size: 13px;
  color: var(--gray-60);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .why-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
@media (max-width: 640px) {
  .why-right {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
       FAQ SECTION
    ============================================================ */
.faq-section {
  background: var(--white);
  padding: var(--py) 0;
}
.faq-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 72px;
  align-items: start;
}
.faq-left h2 {
  color: var(--black);
  margin-bottom: 16px;
}
.faq-left p {
  font-size: 16px;
  color: var(--gray-60);
  margin-bottom: 32px;
  line-height: 1.75;
}
.faq-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--red);
  transition: gap 0.2s;
}
.faq-contact-link:hover {
  gap: 12px;
}
.faq-contact-link svg {
  width: 16px;
  height: 16px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--gray-10);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--gray-10);
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: var(--white);
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  transition: background 0.2s;
  font-family: "Inter", sans-serif;
}
.faq-question:hover {
  background: var(--gray-05);
}
.faq-question[aria-expanded="true"] {
  background: var(--gray-05);
  color: var(--red);
}
.faq-icon {
  width: 24px;
  height: 24px;
  background: var(--gray-05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s;
}
.faq-icon svg {
  width: 12px;
  height: 12px;
  transition: transform 0.3s;
}
.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--red);
  transform: none;
}
.faq-question[aria-expanded="true"] .faq-icon svg {
  stroke: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--gray-60);
  line-height: 1.75;
  background: var(--gray-05);
}
.faq-answer.open {
  display: block;
}

@media (max-width: 1024px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================================
       CTA SECTION
    ============================================================ */
.cta-section {
  background: var(--black);
  padding: var(--py) 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(
    ellipse at center,
    rgba(220, 53, 69, 0.1) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--px);
}
.cta-inner h2 {
  color: var(--white);
  margin-bottom: 20px;
}
.cta-inner p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cta-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.cta-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}
.cta-detail svg {
  width: 14px;
  height: 14px;
  color: var(--red);
}

/* ============================================================
       FOOTER
    ============================================================ */
.site-footer {
  background: var(--ink-2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 64px 0 0;
  color: rgba(255, 255, 255, 0.6);
}
.footer-inner {
  display: grid;
  grid-template-columns: 280px repeat(4, 1fr);
  gap: 40px;
  padding: 0 var(--px);
  max-width: var(--cont);
  margin: 0 auto 48px;
}
.footer-brand {
}
.footer-logo {
  height: 32px;
  width: auto;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-address {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.65;
  font-style: normal;
  margin-bottom: 16px;
}
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: var(--white);
}
.footer-contact a svg {
  width: 13px;
  height: 13px;
  color: var(--red);
  flex-shrink: 0;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  font-family: "Inter", monospace;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px var(--px);
  max-width: var(--cont);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}
.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-social {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.footer-social:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.footer-social svg {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ============================================================
       SCROLL REVEAL
    ============================================================ */
[data-r] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-r].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-r][data-delay="1"] {
  transition-delay: 0.1s;
}
[data-r][data-delay="2"] {
  transition-delay: 0.2s;
}
[data-r][data-delay="3"] {
  transition-delay: 0.3s;
}
[data-r][data-delay="4"] {
  transition-delay: 0.4s;
}
[data-r][data-delay="5"] {
  transition-delay: 0.5s;
}

/* ============================================================
       RESPONSIVE
    ============================================================ */
@media (max-width: 1199px) {
	.hero-inner{
		padding-top:0;
	}	
}

@media (max-width: 1024px) {
  :root {
    --px: 40px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-card {
    display: none;
  }
  .bc-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  :root {
    --px: 24px;
    --py: 64px;
  }
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .stats-strip .wrap {
    flex-wrap: wrap;
    gap: 20px;
  }
  .stat-item {
    flex: 0 0 calc(50% - 10px);
  }
  .stat-item + .stat-item {
    border-left: none;
    padding-left: 0;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-trust {
    gap: 20px;
  }
	.process-panel-footer{
		margin: auto;
		display:  block; 
	}
	.process-progress{
		    justify-content: center;
    margin-bottom: 20px;
	}
}
@media (max-width: 480px) {
  .stat-num {
    font-size: 28px;
  }
  .bc-big-number {
    font-size: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-r] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
       LEAD MAGNET TOOL
    ============================================================ */
.tool-q {
  display: none;
}
.tool-q.active {
  display: block;
}
.tool-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--gray-10);
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-70);
  transition: all 0.2s;
}
.tool-option:hover {
  border-color: var(--red);
  color: var(--black);
  background: var(--red-tint);
}
.tool-option input[type="radio"] {
  accent-color: var(--red);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.tool-option:has(input:checked) {
  border-color: var(--red);
  background: var(--red-tint);
  color: var(--black);
  font-weight: 600;
}
@media (max-width: 600px) {
  #tool-form [style*="grid-template-columns:1fr 1fr"] {
    display: flex !important;
    flex-direction: column !important;
  }
}
@media (max-width: 767px) {
  .process-nav-item {
    flex-wrap: wrap;
  }
  .process-nav-item.active::before {
    top: 0;
  }
	[data-r].visible{
		width: 90%;
	}
	.svc-cta-row{
		    flex-wrap: wrap;
    justify-content: center;
	}
}
