@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
  --yellow: #FFBD19;
  --yellow-hover: #F5AA00;
  --gold: #F5A400;
  --gold-dark: #D98200;
  --gold-light: rgba(255, 189, 25, 0.12);
  --black: #080A0E;
  --black-surface: #0D1016;
  --black-card: #12151E;
  --black-card-hover: #181C28;
  --navy: #FFFFFF;
  --navy-dark: #0A121E;
  --text: #CBD5E1;
  --text-white: #FFFFFF;
  --muted: #94A3B8;
  --muted-light: #64748B;
  --line: rgba(255, 255, 255, 0.08);
  --line-gold: rgba(255, 189, 25, 0.3);
  --card-bg: #12151E;
  --success: #10B981;
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 12px 35px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.8);
  --shadow-gold: 0 8px 30px rgba(255, 189, 25, 0.3);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #080A0E;
}

body {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background-color: #080A0E;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

button, input, select, textarea {
  font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-white);
}

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* ==========================================================================
   TOP BAR (DARK LUXURY)
   ========================================================================== */
.top-bar {
  background: #050608;
  color: #94A3B8;
  font-size: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 101;
}

.top-bar .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.top-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.top-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #94A3B8;
}

.top-link:hover {
  color: var(--yellow);
}

.top-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ==========================================================================
   NAVIGATION (DARK GLASSMORPHISM)
   ========================================================================== */
.nav {
  height: 80px;
  background: rgba(8, 10, 14, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition);
}

.nav.scrolled {
  height: 70px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.nav .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-size: 13.5px;
  font-weight: 700;
  color: #CBD5E1;
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--yellow);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta {
  background: var(--yellow);
  color: #0A0A0B;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-gold);
}

.nav-cta:hover {
  background: var(--yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 189, 25, 0.45);
}

.nav-cta svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #FFFFFF;
}

.mobile-toggle svg {
  width: 26px;
  height: 26px;
}

/* ==========================================================================
   BUTTONS & UI ELEMENTS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  line-height: 1;
}

.btn-yellow {
  background: var(--yellow);
  color: #0A0A0B;
  box-shadow: var(--shadow-gold);
}

.btn-yellow:hover {
  background: var(--yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 189, 25, 0.45);
}

.btn-dark {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 189, 25, 0.4);
  color: #FFFFFF;
  backdrop-filter: blur(8px);
}

.btn-dark:hover {
  background: rgba(255, 189, 25, 0.15);
  border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-2px);
}

.btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  background: #080A0E;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  padding: 70px 0 80px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 85% 45%, rgba(255, 189, 25, 0.14) 0%, transparent 42%),
    radial-gradient(circle at 10% 90%, rgba(10, 36, 72, 0.3) 0%, transparent 40%),
    linear-gradient(90deg, rgba(8, 10, 14, 0.98) 0%, rgba(8, 10, 14, 0.85) 50%, rgba(8, 10, 14, 0.3) 100%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 189, 25, 0.1);
  border: 1px solid rgba(255, 189, 25, 0.25);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(38px, 4.6vw, 62px);
  color: #FFFFFF;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}

.hero h1 .yellow {
  color: var(--yellow);
  background: linear-gradient(135deg, #FFE27A 0%, #FFBD19 50%, #F5A400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-p {
  font-size: 16.5px;
  line-height: 1.65;
  color: #94A3B8;
  margin-bottom: 30px;
  max-width: 540px;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mini strong {
  font-size: 18px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  color: #FFFFFF;
}

.mini strong b {
  color: var(--yellow);
}

.mini span {
  font-size: 11.5px;
  color: #64748B;
  margin-top: 3px;
  font-weight: 500;
}

/* Hero Media Showcase */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #12151E;
  border: 1.5px solid rgba(255, 189, 25, 0.35);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(255, 189, 25, 0.08);
  width: 100%;
}

.hero-card-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-card-frame:hover img {
  transform: scale(1.03);
}

.floating-badge {
  position: absolute;
  background: rgba(8, 10, 14, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 189, 25, 0.4);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
  animation: float 4s ease-in-out infinite;
}

.floating-badge.badge-top {
  top: 20px;
  left: -15px;
}

.floating-badge.badge-bottom {
  bottom: 25px;
  right: -15px;
  animation-delay: 2s;
}

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

.badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--yellow);
  color: #0A0A0B;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
}

.badge-text strong {
  display: block;
  font-size: 12px;
  font-weight: 800;
}

.badge-text span {
  display: block;
  font-size: 10px;
  color: #94A3B8;
}

/* ==========================================================================
   TRUST / CATEGORIES STRIP (DARK)
   ========================================================================== */
.trust {
  background: #0D1016;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
}

.trust .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-title {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #64748B;
}

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

.trust-pill {
  font-size: 12px;
  font-weight: 700;
  color: #E2E8F0;
  background: #141722;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 7px 15px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.trust-pill:hover {
  background: #1B202D;
  border-color: var(--gold);
  color: var(--yellow);
  transform: translateY(-2px);
}

.trust-pill svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
section {
  padding: 95px 0;
}

.center {
  text-align: center;
}

.kicker {
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -0.035em;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.section-desc {
  max-width: 680px;
  margin: 0 auto;
  color: #94A3B8;
  font-size: 15.5px;
  line-height: 1.65;
}

/* ==========================================================================
   SERVICES SECTION (DARK LUXURY CARDS)
   ========================================================================== */
#services {
  background: #080A0E;
}

.services-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #11141C;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  background: #161A24;
  border-color: rgba(255, 189, 25, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 189, 25, 0.08);
}

.service-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(255, 189, 25, 0.1);
  color: var(--yellow);
  border: 1px solid rgba(255, 189, 25, 0.2);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  transition: var(--transition);
}

.service-card:hover .service-icon-box {
  background: var(--yellow);
  color: #0A0A0B;
  transform: scale(1.06);
}

.service-icon-box svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.service-card h3 {
  font-size: 19px;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #94A3B8;
  margin-bottom: 18px;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  font-size: 12.5px;
  color: #CBD5E1;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li svg {
  width: 14px;
  height: 14px;
  fill: var(--success);
  flex-shrink: 0;
}

/* ==========================================================================
   WHY US (BAND)
   ========================================================================== */
.band {
  background: #0D1016;
  color: #FFFFFF;
  padding: 85px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.band::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 450px;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(255, 189, 25, 0.09) 0%, transparent 60%);
  pointer-events: none;
}

.band-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 50px;
}

.band h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  color: #FFFFFF;
  letter-spacing: -0.03em;
  margin-top: 10px;
}

.band h2 span {
  color: var(--yellow);
}

.band p {
  color: #94A3B8;
  font-size: 15px;
  margin-top: 14px;
  line-height: 1.65;
}

.checks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}

.check-item {
  background: #141722;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 13.5px;
  color: #E2E8F0;
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: var(--transition);
}

.check-item:hover {
  background: rgba(255, 189, 25, 0.09);
  border-color: rgba(255, 189, 25, 0.35);
  transform: translateX(3px);
}

.check-item svg {
  width: 18px;
  height: 18px;
  fill: var(--yellow);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ==========================================================================
   PRODUCTS & INDUSTRIES SHOWCASE (DARK)
   ========================================================================== */
.products-section {
  background: #080A0E;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 45px;
}

.product-card {
  position: relative;
  height: 390px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #11141C;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 189, 25, 0.45);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 189, 25, 0.08);
}

.product-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover img {
  transform: scale(1.08);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 14, 0.15) 0%, rgba(8, 10, 14, 0.65) 45%, rgba(8, 10, 14, 0.98) 100%);
  z-index: 1;
}

.product-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: rgba(8, 10, 14, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 189, 25, 0.5);
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.product-caption {
  position: relative;
  z-index: 2;
  padding: 24px;
  color: #FFFFFF;
}

.product-caption h3 {
  font-size: 22px;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.product-caption p {
  font-size: 13.5px;
  color: #CBD5E1;
  margin-bottom: 14px;
  line-height: 1.5;
}

.product-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  color: var(--yellow);
  font-weight: 700;
}

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

/* Metrics Banner (Dark Luxury) */
.metrics-banner {
  background: #11141C;
  border: 1.5px solid rgba(255, 189, 25, 0.35);
  border-radius: var(--radius-md);
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.metric-box {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.metric-box:last-child {
  border-right: none;
}

.metric-box:hover {
  background: rgba(255, 189, 25, 0.06);
}

.metric-box strong {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 6px;
}

.metric-box strong b {
  color: var(--yellow);
}

.metric-box span {
  font-size: 13px;
  color: #94A3B8;
  font-weight: 600;
}

/* ==========================================================================
   PROCESS SECTION (DARK)
   ========================================================================== */
.process-section {
  background: #0D1016;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 55px;
  position: relative;
}

.step-card {
  position: relative;
  text-align: center;
  padding: 28px 18px;
  background: #11141C;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.step-card:hover {
  background: #161A24;
  border-color: rgba(255, 189, 25, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
}

.step-icon-wrap {
  position: relative;
  margin: 0 auto 20px;
  width: 72px;
  height: 72px;
}

.step-circle {
  width: 72px;
  height: 72px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #181C28;
  color: #FFFFFF;
  transition: var(--transition);
}

.step-card:hover .step-circle {
  border-color: var(--yellow);
  background: rgba(255, 189, 25, 0.12);
  color: var(--yellow);
}

.step-circle svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.step-badge-num {
  position: absolute;
  top: -4px;
  right: -2px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--yellow);
  color: #0A0A0B;
  font-size: 12px;
  font-weight: 900;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.step-card h3 {
  font-size: 18px;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 13.5px;
  color: #94A3B8;
  line-height: 1.55;
  max-width: 210px;
  margin: 0 auto;
}

/* ==========================================================================
   TESTIMONIALS & TRUST STATS (DARK)
   ========================================================================== */
.testimonials-section {
  background: #080A0E;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 45px;
}

.testimonial-card {
  background: #11141C;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 189, 25, 0.4);
}

.stars {
  color: var(--yellow);
  font-size: 16px;
  margin-bottom: 14px;
  display: flex;
  gap: 3px;
}

.testimonial-text {
  font-size: 14.5px;
  line-height: 1.65;
  color: #CBD5E1;
  margin-bottom: 20px;
  font-style: italic;
}

.client-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1C2230;
  border: 1px solid rgba(255, 189, 25, 0.4);
  color: var(--yellow);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 15px;
}

.client-info h4 {
  font-size: 14px;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.client-info span {
  font-size: 12px;
  color: #64748B;
}

/* ==========================================================================
   FAQ SECTION (DARK)
   ========================================================================== */
.faq-section {
  background: #0D1016;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-container {
  max-width: 800px;
  margin: 45px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: #11141C;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: rgba(255, 189, 25, 0.45);
  background: #141722;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
}

.faq-question:hover {
  color: var(--yellow);
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #181C28;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--yellow);
  border-color: var(--yellow);
  color: #0A0A0B;
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 24px;
  color: #94A3B8;
  font-size: 14.5px;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  padding-bottom: 20px;
}

/* ==========================================================================
   CALL TO ACTION & DIRECT CONSULTATION SECTION (SEAMLESS DARK LUXURY)
   ========================================================================== */
.cta-section {
  padding: 100px 0;
  background: #080A0E;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-section::before, .cta-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 189, 25, 0.07);
  filter: blur(50px);
  pointer-events: none;
}

.cta-section::before {
  left: -120px;
  top: -120px;
}

.cta-section::after {
  right: -120px;
  bottom: -120px;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-left h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  color: #FFFFFF;
  margin-bottom: 15px;
}

.cta-left h2 span {
  color: var(--yellow);
}

.cta-left p {
  color: #94A3B8;
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 30px;
}

.contact-quick-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.contact-quick-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #FFFFFF;
  font-size: 14px;
}

.contact-quick-item svg {
  width: 20px;
  height: 20px;
  fill: var(--yellow);
}

/* Direct Executive Contact Card */
.direct-contact-card {
  background: #11141C;
  border: 1.5px solid rgba(255, 189, 25, 0.35);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 189, 25, 0.06);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.direct-contact-header h3 {
  font-size: 23px;
  color: #FFFFFF;
  margin-bottom: 8px;
  line-height: 1.25;
}

.direct-contact-header p {
  font-size: 13.5px;
  color: #94A3B8;
  line-height: 1.6;
}

.direct-channels-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.direct-channel-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.direct-channel-btn.btn-whatsapp {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.15) 0%, rgba(18, 140, 126, 0.25) 100%);
  border-color: rgba(37, 211, 102, 0.4);
}

.direct-channel-btn.btn-whatsapp:hover {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.3) 0%, rgba(18, 140, 126, 0.45) 100%);
  border-color: #25D366;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
}

.direct-channel-btn.btn-call {
  background: rgba(255, 189, 25, 0.08);
  border-color: rgba(255, 189, 25, 0.3);
}

.direct-channel-btn.btn-call:hover {
  background: rgba(255, 189, 25, 0.18);
  border-color: var(--yellow);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.direct-channel-btn.btn-email {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.direct-channel-btn.btn-email:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
  transform: translateY(-3px);
}

.channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.4);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.btn-whatsapp .channel-icon {
  color: #25D366;
}

.btn-call .channel-icon {
  color: var(--yellow);
}

.btn-email .channel-icon {
  color: #E2E8F0;
}

.channel-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.channel-text {
  flex-grow: 1;
}

.channel-text strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.channel-text span {
  display: block;
  font-size: 11.5px;
  color: #94A3B8;
  line-height: 1.4;
}

.channel-arrow {
  color: var(--yellow);
  font-size: 18px;
  font-weight: 900;
  transition: transform 0.2s ease;
}

.direct-channel-btn:hover .channel-arrow {
  transform: translateX(4px);
}

.direct-contact-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trust-guarantee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #CBD5E1;
  font-weight: 600;
}

.trust-guarantee-item svg {
  width: 15px;
  height: 15px;
  fill: var(--yellow);
  flex-shrink: 0;
}

/* ==========================================================================
   FOOTER (RICH DARK OBSIDIAN)
   ========================================================================== */
footer {
  background: #050608;
  color: #FFFFFF;
  padding: 75px 0 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1.1fr;
  gap: 45px;
  margin-bottom: 50px;
}

.footer-brand .logo-img {
  height: 48px;
  margin-bottom: 16px;
}

.footer-copy {
  font-size: 13px;
  color: #8C99A8;
  line-height: 1.65;
  max-width: 300px;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: #FFFFFF;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #0A0A0B;
  transform: translateY(-2px);
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer h4 {
  font-size: 14px;
  color: #FFFFFF;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: #94A3B8;
}

.footer-links a:hover {
  color: var(--yellow);
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #64748B;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: #64748B;
}

.footer-legal a:hover {
  color: #FFFFFF;
}

/* ==========================================================================
   MOBILE BAR & DRAWER
   ========================================================================== */
.mobile-sticky-bar {
  display: none;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0.3s;
}

.mobile-drawer.open {
  visibility: visible;
  pointer-events: auto;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-drawer.open .drawer-backdrop {
  opacity: 1;
}

.drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 82%;
  max-width: 340px;
  background: #0E1015;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
  overflow-y: auto;
}

.mobile-drawer.open .drawer-content {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.drawer-close {
  background: none;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  padding: 4px;
}

.drawer-close svg {
  width: 24px;
  height: 24px;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  list-style: none;
  margin-bottom: 35px;
}

.drawer-nav a {
  font-size: 17px;
  font-weight: 700;
  color: #E2E8F0;
  display: block;
}

.drawer-nav a:hover {
  color: var(--yellow);
}

.drawer-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ==========================================================================
   STATUTORY PRIVACY MODAL
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dpdp-modal-container {
  background: #11141B;
  border: 1.5px solid rgba(255, 189, 25, 0.4);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 720px;
  padding: 35px 32px;
  color: #FFFFFF;
  position: relative;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9);
  transform: scale(0.95);
  transition: var(--transition);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
}

.modal-overlay.open .dpdp-modal-container {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #8C99A8;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close-btn:hover {
  color: #FFFFFF;
  transform: scale(1.1);
}

.modal-close-btn svg {
  width: 22px;
  height: 22px;
}

.dpdp-header {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 14px;
}

.dpdp-tag {
  display: inline-block;
  background: rgba(255, 189, 25, 0.12);
  color: var(--yellow);
  font-size: 10.5px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

.dpdp-header h3 {
  font-size: 22px;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.dpdp-meta {
  font-size: 12px;
  color: #94A3B8;
}

.dpdp-content-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
  padding-right: 8px;
}

.dpdp-sec h4 {
  font-size: 15px;
  color: var(--yellow);
  margin-bottom: 6px;
}

.dpdp-sec p {
  font-size: 13px;
  line-height: 1.65;
  color: #CBD5E1;
}

.dpdp-list {
  list-style: disc;
  margin-left: 20px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12.5px;
  color: #CBD5E1;
  line-height: 1.55;
}

.dpdp-officer-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 189, 25, 0.25);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.officer-card {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 12px;
  color: #E2E8F0;
}

.officer-card a {
  color: var(--yellow);
  font-weight: 700;
}

.dpdp-modal-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: flex-end;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS & MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .hero-copy {
    max-width: 100%;
    text-align: center;
  }

  .hero-p {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    max-width: 600px;
    margin-inline: auto;
  }

  .hero-image-wrapper {
    max-width: 580px;
    margin-inline: auto;
  }

  .hero-card-frame img {
    height: 400px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .band-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
}

@media (max-width: 860px) {
  .nav-menu, .nav-actions .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .top-bar {
    display: none;
  }

  body {
    padding-bottom: 75px;
  }

  .nav {
    height: 68px;
  }

  .logo-img {
    height: 44px;
  }

  section {
    padding: 60px 0;
  }

  .hero {
    padding: 40px 0 50px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    text-align: left;
  }

  .floating-badge {
    position: static;
    margin-top: 12px;
  }

  .services-grid, .product-grid, .steps-grid {
    grid-template-columns: 1fr;
  }

  .metrics-banner {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-box:nth-child(2) {
    border-right: none;
  }

  .metric-box:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .checks-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .mobile-sticky-bar {
    display: flex;
    position: fixed;
    z-index: 150;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 6px;
    background: rgba(8, 10, 14, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 189, 25, 0.35);
    border-radius: var(--radius-md);
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  }

  .mobile-sticky-bar a {
    flex: 1;
    text-align: center;
    border-radius: var(--radius-sm);
    padding: 12px 10px;
    font-size: 13px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .mobile-sticky-bar a.mob-whatsapp {
    background: var(--yellow);
    color: #0A0A0B;
  }

  .mobile-sticky-bar a.mob-call {
    background: #FFFFFF;
    color: #0A0A0B;
  }
}
