﻿/* ════════════════════════════════════════
         TOKENS & RESET
      ════════════════════════════════════════ */
:root {
  --red: #c8102e;
  --dark-red: #9e0c24;
  --deep-red: #6b0318;
  --navy: #7a0e1c;
  --dark-navy: #1e0407;
  --yellow: #ffc20e;
  --dark-yellow: #e6a800;
  --dark: #1a1a1a;
  --gray: #fdf5f5;
  --mid-gray: #f0e4e4;
  --text: #2a0608;
  --muted: #7a3a40;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ════════════════════════════════════════
         TICKER BANNER
      ════════════════════════════════════════ */
.ticker {
  background: var(--deep-red);
  color: #f5c5c8;
  font-size: 12.5px;
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-block;
  animation: ticker-scroll 35s linear infinite;
}

.ticker-inner span {
  margin: 0 60px;
  color: var(--yellow);
  font-weight: 600;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(100vw);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ════════════════════════════════════════
         HEADER
      ════════════════════════════════════════ */
header {
  background: var(--white);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid var(--red);
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  text-decoration: none;
}

.logo-badge {
  background: var(--red);
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  padding: 8px 14px;
  border-radius: 6px;
  letter-spacing: 1px;
}

.logo-meta h1 {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
}

.logo-meta p {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav a {
  color: var(--dark);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s;
}

nav a:hover {
  color: var(--red);
}
nav a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 700 !important;
  font-size: 13px !important;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s !important;
}

.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  background: var(--dark-red) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* ════════════════════════════════════════
         HAMBURGER
      ════════════════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: 2px solid rgba(200, 16, 46, 0.25);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  transition:
    border-color 0.2s,
    background 0.2s;
  flex-shrink: 0;
}
.hamburger:hover {
  background: rgba(200, 16, 46, 0.06);
  border-color: var(--red);
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.2s,
    width 0.3s;
  transform-origin: center;
}
/* Active (X) state */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-cta {
  display: none;
}

/* ════════════════════════════════════════
         HERO
      ════════════════════════════════════════ */
.hero {
  background: linear-gradient(
    135deg,
    #1e0407 0%,
    #6b0318 35%,
    #9e0c24 65%,
    #c8102e 100%
  );
  color: var(--white);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  min-height: 580px;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1280px;
  padding: 0 60px;
  position: relative;
  z-index: 2;
}

/* Diagonal red accent stripe */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 55%,
    rgba(255, 194, 14, 0.06) 55%,
    rgba(255, 194, 14, 0.06) 62%,
    transparent 62%
  );
  pointer-events: none;
  z-index: 0;
}

/* Animated blobs */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
  animation: blob-float 9s ease-in-out infinite;
}
.hero-shape-1 {
  width: 540px;
  height: 540px;
  background: radial-gradient(
    circle,
    rgba(255, 194, 14, 0.25) 0%,
    transparent 70%
  );
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}
.hero-shape-2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 70%
  );
  bottom: -120px;
  left: 4%;
  animation-delay: -3.5s;
}
.hero-shape-3 {
  width: 260px;
  height: 260px;
  background: radial-gradient(
    circle,
    rgba(255, 194, 14, 0.15) 0%,
    transparent 70%
  );
  top: 35%;
  left: 42%;
  animation-delay: -6s;
}
@keyframes blob-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  33% {
    transform: translateY(-22px) scale(1.04);
  }
  66% {
    transform: translateY(14px) scale(0.97);
  }
}

/* Dot-grid overlay */
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.055) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}

.hero-left {
  position: relative;
  z-index: 1;
  max-width: 580px;
  flex: 1 1 340px;
  animation: hero-enter 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Live badge */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--yellow);
  font-size: 11.5px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 26px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  display: inline-block;
  animation: live-ping 1.8s ease-out infinite;
}
@keyframes live-ping {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}

/* Heading */
.hero h2 {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 6px;
  letter-spacing: -1px;
}

.hero h2 .verb {
  display: block;
  min-height: 1.1em;
  background: linear-gradient(
    90deg,
    var(--yellow) 0%,
    #fc9b0a 50%,
    #fde68a 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 18px rgba(245, 158, 11, 0.45));
}

.hero-h2-sub {
  display: block;
  font-size: clamp(12px, 1.6vw, 17px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 10px;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.38);
}

.hero-sub {
  font-size: clamp(14px, 1.6vw, 16px);
  color: rgba(255, 255, 255, 0.7);
  margin: 22px 0 28px;
  line-height: 1.85;
  max-width: 530px;
}

/* Feature chips */
.hero-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.hero-chip {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
  cursor: default;
}
.hero-chip:hover {
  background: rgba(255, 194, 14, 0.18);
  border-color: rgba(255, 194, 14, 0.5);
  color: var(--yellow);
}

/* Buttons */
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    background 0.2s;
  cursor: pointer;
  border: none;
  letter-spacing: 0.3px;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}
.btn-red {
  background: var(--red);
  color: var(--white);
}
.btn-red:hover {
  background: var(--dark-red);
}
.btn-yellow {
  background: var(--yellow);
  color: var(--dark);
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.35);
}
.btn-yellow:hover {
  background: #d97706;
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

/* Trust stat bar */
.hero-trust {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 20px;
  width: fit-content;
  backdrop-filter: blur(6px);
}
.trust-item {
  text-align: center;
  padding: 0 18px;
}
.trust-item strong {
  display: block;
  font-size: 21px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.trust-item span {
  display: block;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  letter-spacing: 0.4px;
}
.trust-sep {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/* Keep legacy selectors inert */
.hero-stats {
  display: none;
}
.hero-stat-item {
  display: none;
}

/* ════════════════════════════════════════
         TRACK BAR
      ════════════════════════════════════════ */
.track-bar {
  background: var(--red);
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.track-bar label {
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  opacity: 0.95;
}

.track-input-wrap {
  display: flex;
  flex: 1;
  max-width: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.track-bar input {
  flex: 1;
  padding: 13px 20px;
  border: none;
  font-size: 14px;
  outline: none;
  color: var(--dark);
}

.track-bar button {
  padding: 13px 28px;
  background: var(--yellow);
  color: var(--dark);
  border: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.track-bar button:hover {
  background: var(--dark-yellow);
}

/* ════════════════════════════════════════
         SECTION SHELL
      ════════════════════════════════════════ */
.section {
  padding: 72px 48px;
}
.section-alt {
  background: var(--gray);
}
.section-navy {
  background: var(--red);
}
.section-dark {
  background: var(--deep-red);
}

.section-title {
  text-align: center;
  margin-bottom: 54px;
}

.pill-label {
  display: inline-block;
  background: rgba(200, 16, 46, 0.1);
  color: var(--red);
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.pill-label-light {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
}

.section-title h3 {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
}

.section-title h3.light {
  color: var(--white);
}

.section-title p {
  color: var(--muted);
  margin-top: 12px;
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-title p.light {
  color: rgba(255, 255, 255, 0.7);
}

/* ════════════════════════════════════════
         DTDC SUITE TABS
      ════════════════════════════════════════ */
.tabs-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.tab-nav {
  display: flex;
  gap: 0;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  border: 1px solid var(--mid-gray);
  border-bottom: none;
  width: fit-content;
  margin: 0 auto;
}

.tab-btn {
  padding: 14px 36px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  background: var(--mid-gray);
  color: var(--muted);
  border: none;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}

.tab-btn.active {
  background: var(--red);
  color: var(--white);
}

.tab-btn:hover:not(.active) {
  background: #d8d9dc;
  color: var(--dark);
}

.tab-panels {
  border: 1px solid var(--mid-gray);
  border-radius: 0 0 14px 14px;
  overflow: hidden;
}

.tab-panel {
  display: none;
  padding: 48px;
  background: var(--white);
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}

.tab-panel.active {
  display: flex;
}

.tab-content {
  flex: 1;
  min-width: 260px;
}

.tab-content h4 {
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.25;
}

.tab-content p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.tab-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 32px;
}

.tab-features li {
  font-size: 13.5px;
  color: var(--text);
  padding-left: 22px;
  position: relative;
}

.tab-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.tab-visual {
  flex: 0 0 340px;
  background: linear-gradient(135deg, var(--gray), var(--mid-gray));
  border-radius: 14px;
  padding: 48px 36px;
  text-align: center;
}

.tab-visual .big-icon {
  font-size: 72px;
  margin-bottom: 14px;
}
.tab-visual h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}
.tab-visual p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}

/* ════════════════════════════════════════
         SERVICE CARDS
      ════════════════════════════════════════ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: var(--white);
  border-radius: 14px;
  padding: 34px 28px;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  position: relative;
  overflow: hidden;
  border: 1px solid #eee;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.card-icon {
  width: 58px;
  height: 58px;
  background: rgba(200, 16, 46, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.card h4 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--dark);
}

.card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.card-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.card-link:hover {
  gap: 8px;
}

/* ════════════════════════════════════════
         NETWORK STATS STRIP
      ════════════════════════════════════════ */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.stat-cell {
  background: rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 38px 24px;
  text-align: center;
  color: var(--white);
}

.stat-cell:last-child {
  border-right: none;
}

.stat-cell strong {
  display: block;
  font-size: 40px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.stat-cell span {
  display: block;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
  letter-spacing: 0.5px;
}

/* ════════════════════════════════════════
         HOW IT WORKS
      ════════════════════════════════════════ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 12%;
  width: 76%;
  height: 2px;
  background: var(--mid-gray);
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(200, 16, 46, 0.35);
  position: relative;
}

.step-num::after {
  content: "";
  position: absolute;
  width: 82px;
  height: 82px;
  border: 2px solid rgba(200, 16, 46, 0.2);
  border-radius: 50%;
}

.step h4 {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.step p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* ════════════════════════════════════════
         APP SECTION
      ════════════════════════════════════════ */
.app-section {
  background: linear-gradient(135deg, var(--deep-red) 0%, var(--red) 100%);
  padding: 72px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.app-content {
  color: var(--white);
  max-width: 520px;
}

.app-content h3 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}

.app-content h3 span {
  color: var(--yellow);
}

.app-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 32px;
}

.app-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 12px 22px;
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition:
    background 0.2s,
    transform 0.15s;
}

.app-badge:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}
.app-badge .badge-icon {
  font-size: 22px;
}
.app-badge small {
  display: block;
  font-size: 10px;
  opacity: 0.7;
  font-weight: 400;
}

.app-mockup {
  flex: 0 0 200px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 32px 28px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
}

.app-mockup .big-icon {
  font-size: 64px;
  margin-bottom: 12px;
}
.app-mockup p {
  font-size: 13px;
  line-height: 1.6;
}

/* ════════════════════════════════════════
         BRANDS STRIP
      ════════════════════════════════════════ */
.brands-strip {
  overflow: hidden;
  padding: 40px 0;
  background: var(--white);
  border-top: 1px solid var(--mid-gray);
  border-bottom: 1px solid var(--mid-gray);
}

.brands-scroll {
  display: flex;
  gap: 0;
  animation: brands-move 22s linear infinite;
  width: max-content;
}

.brands-scroll:hover {
  animation-play-state: paused;
}

.brand-item {
  padding: 10px 50px;
  border-right: 1px solid var(--mid-gray);
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 800;
  color: #bbb;
  letter-spacing: 2px;
  white-space: nowrap;
  transition: color 0.2s;
}

.brand-item:hover {
  color: var(--red);
}

@keyframes brands-move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ════════════════════════════════════════
         CONTACT
      ════════════════════════════════════════ */
.contact-grid {
  display: block;
  max-width: 600px;
  margin: 0 auto;
}

.contact-info-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 26px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3);
}

.contact-item-text label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}

.contact-item-text a,
.contact-item-text span {
  font-size: 15px;
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  line-height: 1.5;
}

.contact-item-text a:hover {
  color: var(--red);
}

.hours-box {
  background: var(--gray);
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 24px;
}

.hours-box h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 7px 0;
  border-bottom: 1px solid var(--mid-gray);
}

.hours-row:last-child {
  border-bottom: none;
}
.hours-row span:last-child {
  font-weight: 700;
  color: var(--red);
}

/* Contact Form */
.contact-form-box {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.09);
  border: 1px solid var(--mid-gray);
}

.contact-form-box h4 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--dark);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 7px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  background: var(--white);
  color: var(--dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  letter-spacing: 0.5px;
}

.form-submit:hover {
  background: var(--dark-red);
  transform: translateY(-1px);
}

/* ════════════════════════════════════════
         MAP STRIP
      ════════════════════════════════════════ */
.map-strip {
  background: linear-gradient(135deg, var(--dark-red) 0%, var(--deep-red) 100%);
  text-align: center;
  padding: 54px 48px;
  color: var(--white);
}

.map-strip h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
}

.map-strip p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 28px;
  font-size: 15px;
}

/* ════════════════════════════════════════
         FOOTER
      ════════════════════════════════════════ */
.footer-top {
  background: #1e0407;
  padding: 60px 48px 40px;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 48px;
}

.logo-badge-footer {
  background: var(--red);
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  padding: 8px 14px;
  border-radius: 6px;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 16px;
  transition:
    background 0.2s,
    color 0.2s;
}

.footer-social a:hover {
  background: var(--red);
  color: var(--white);
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 194, 14, 0.5);
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 13.5px;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--yellow);
}

.footer-bottom {
  background: #120204;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--yellow);
}

/* ════════════════════════════════════════
         RESPONSIVE
      ════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  header {
    padding: 0 20px;
  }
  .section {
    padding: 50px 20px;
  }
  .hero {
    padding: 60px 0 70px;
  }
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
  }
  .hero-img-wrap {
    width: 100%;
    padding-right: 28px;
  }
  .hero-img {
    width: 100%;
    height: 260px;
    transform: none;
  }
  .hero-img-wrap:hover .hero-img {
    transform: none;
  }
  .hero-float-card-1 {
    top: 14px;
    right: 34px;
  }
  .hero-float-card-2 {
    bottom: 60px;
    right: 34px;
  }
  .hero-h2-sub {
    letter-spacing: 1.5px;
  }
  .hero-trust {
    width: 100%;
    justify-content: space-around;
    padding: 12px 10px;
  }
  .trust-item {
    padding: 0 10px;
  }
  .track-bar {
    padding: 20px;
  }
  .app-section {
    padding: 50px 20px;
  }
  .map-strip {
    padding: 40px 20px;
  }
  nav .nav-links {
    display: none;
  }
  nav .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 3px solid var(--red);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
    padding: 12px 0 16px;
    z-index: 199;
    animation: nav-drop 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  @keyframes nav-drop {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  nav .nav-links .nav-link {
    padding: 13px 24px;
    font-size: 14.5px;
    border-bottom: 1px solid var(--mid-gray);
    color: var(--dark);
    font-weight: 600;
  }
  nav .nav-links .nav-link:last-of-type {
    border-bottom: none;
  }
  nav .nav-links .nav-link:hover {
    background: var(--gray);
    color: var(--red);
  }
  .mobile-cta {
    display: block !important;
    margin: 12px 24px 4px;
    text-align: center;
    border-radius: 8px;
  }
  .desktop-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  header {
    position: relative;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    padding: 40px 20px 30px;
  }
  .footer-bottom {
    padding: 16px 20px;
  }
  .steps::before {
    display: none;
  }
  .tab-panel {
    padding: 28px;
  }
  .tab-visual {
    flex: unset;
    width: 100%;
  }
  .tab-btn {
    padding: 12px 20px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .hero-float-card {
    display: none;
  }
  .hero-chips {
    gap: 8px;
  }
  .hero-chip {
    font-size: 11px;
    padding: 5px 11px;
  }
  .hero-trust {
    flex-wrap: wrap;
    gap: 4px;
  }
  .trust-sep {
    display: none;
  }
  .trust-item {
    padding: 6px 14px;
    flex: 1 1 auto;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
  }
  .tab-nav {
    width: 100%;
  }
  .tab-btn {
    flex: 1;
  }
}

/* ════════════════════════════════════════
         WHATSAPP FLOAT
      ════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  animation: wa-pulse 2.5s infinite;
  color: white;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
  animation: none;
}

@keyframes wa-pulse {
  0%,
  100% {
    box-shadow:
      0 4px 20px rgba(37, 211, 102, 0.45),
      0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow:
      0 4px 20px rgba(37, 211, 102, 0.45),
      0 0 0 10px rgba(37, 211, 102, 0);
  }
}

/* ════════════════════════════════════════
         DEMO IMAGES
      ════════════════════════════════════════ */

/* Hero image */
.hero-img-wrap {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  animation: hero-enter 0.85s 0.25s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-img-glow {
  position: absolute;
  inset: -20px;
  border-radius: 30px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 194, 14, 0.38) 0%,
    transparent 70%
  );
  filter: blur(24px);
  z-index: -1;
}

.hero-img {
  width: 480px;
  max-width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  display: block;
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-img-wrap:hover .hero-img {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.hero-img-badge {
  position: absolute;
  bottom: 24px;
  left: -16px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 24px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  animation: badge-float 3.2s ease-in-out infinite;
}
@keyframes badge-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

/* Floating stat cards */
.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
  min-width: 184px;
  animation: card-float 4s ease-in-out infinite;
}
.hero-float-card-1 {
  top: 22px;
  right: -22px;
  animation-delay: -1s;
}
.hero-float-card-2 {
  bottom: 80px;
  right: -22px;
  animation-delay: -2.8s;
}
@keyframes card-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}
.hfc-icon {
  font-size: 22px;
  width: 42px;
  height: 42px;
  background: rgba(255, 194, 14, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hfc-text strong {
  display: block;
  font-size: 13px;
  color: #1a1a1a;
  font-weight: 700;
}
.hfc-text span {
  font-size: 11.5px;
  color: #888;
}

/* Tab visual image */
.tab-visual {
  overflow: hidden;
  padding: 0 !important;
}

.tab-visual img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  border-radius: 14px 14px 0 0;
  transition: transform 0.4s;
}

.tab-visual:hover img {
  transform: scale(1.04);
}

.tab-visual-text {
  padding: 20px 26px 26px;
  background: var(--gray);
  border-radius: 0 0 14px 14px;
}

.tab-visual-text h5 {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.tab-visual-text p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* Service card image */
.card-img {
  margin: -34px -28px 24px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  height: 180px;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}

.card:hover .card-img img {
  transform: scale(1.06);
}

/* App mockup image */
.app-mockup {
  flex: 0 0 auto !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  backdrop-filter: none !important;
}

.app-mockup img {
  width: 200px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  display: block;
}

@media (max-width: 768px) {
  .hero-img {
    width: 100%;
    height: 240px;
  }
  .app-mockup img {
    width: 160px;
  }
}
