/* Bit Order Technologies | Last updated: 2026-02-19 v1 */

/* =============================================
   CSS VARIABLES & RESET
   ============================================= */
:root {
  --navy-deep: #0a0e1a;
  --navy: #111827;
  --navy-mid: #1a2236;
  --navy-light: #1f2a42;
  --navy-lighter: #263354;
  --gold: #c9a84c;
  --gold-light: #e4c76b;
  --gold-dim: #a08535;
  --white: #f1f1f1;
  --white-soft: #c8cdd6;
  --white-muted: #8a92a1;
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --section-padding: clamp(80px, 10vw, 140px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--navy-deep);
  color: var(--white-soft);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--gold);
  color: var(--navy-deep);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* =============================================
   UTILITY
   ============================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: inline-block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--white-muted);
  max-width: 640px;
  line-height: 1.8;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 clamp(20px, 4vw, 40px);
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}

.nav.scrolled {
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--glass-border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.04em;
}

.nav-logo .logo-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  overflow: hidden;
}

.nav-logo .logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Invert black logo to white so it shows on gold background */
  filter: invert(1);
}

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

.nav-links a {
  display: block;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white-muted);
  letter-spacing: 0.02em;
  border-radius: 6px;
  transition: color 0.3s, background 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: var(--glass);
}

.nav-cta {
  padding: 9px 24px !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim)) !important;
  color: var(--navy-deep) !important;
  font-weight: 600 !important;
  border-radius: 6px !important;
  transition: transform 0.2s, box-shadow 0.3s !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
  background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
}

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(20px);
    padding: 40px 30px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-links a {
    font-size: 1.1rem;
    padding: 14px 20px;
  }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--navy-deep), transparent);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 70%);
}

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

.hero-content {
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s 0.1s ease both;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-description {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--white-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 560px;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.3s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--navy-deep);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}

.hero-stats {
  display: flex;
  gap: clamp(30px, 5vw, 60px);
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--glass-border);
  animation: fadeInUp 0.8s 0.4s ease both;
}

.hero-stat .number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.82rem;
  color: var(--white-muted);
  margin-top: 6px;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  padding: 60px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(30px, 5vw, 70px);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white-muted);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}

.trust-item .trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* =============================================
   SERVICES OVERVIEW
   ============================================= */
.services {
  padding: var(--section-padding) 0;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  padding: 36px 30px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--white-muted);
  line-height: 1.7;
}

.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap 0.3s;
}

.service-card:hover .service-link {
  gap: 10px;
}

/* =============================================
   SALESFORCE (CLOUD SERVICES)
   ============================================= */
.salesforce {
  padding: var(--section-padding) 0;
  background: var(--navy);
}

.sf-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 4rem;
}

@media (max-width: 800px) {
  .sf-top { grid-template-columns: 1fr; gap: 30px; }
}

.sf-capabilities {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sf-cap-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  transition: border-color 0.3s;
}

.sf-cap-item:hover {
  border-color: rgba(201,168,76,0.2);
}

.sf-cap-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  margin-top: 2px;
}

.sf-cap-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.sf-cap-item p {
  font-size: 0.82rem;
  color: var(--white-muted);
  line-height: 1.6;
}

/* Cloud grid */
.cloud-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 3rem;
}

.cloud-card {
  padding: 28px 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  transition: transform 0.3s, border-color 0.3s;
}

.cloud-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201,168,76,0.15);
}

.cloud-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.cloud-card p {
  font-size: 0.82rem;
  color: var(--white-muted);
  line-height: 1.6;
}

/* =============================================
   FIELD SERVICE & ALM
   ============================================= */
.professional {
  padding: var(--section-padding) 0;
}

.pro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 3rem;
}

@media (max-width: 800px) {
  .pro-split { grid-template-columns: 1fr; }
}

.pro-block {
  padding: 40px 36px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}

.pro-block::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201,168,76,0.04), transparent 70%);
  pointer-events: none;
}

.pro-block .pro-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.pro-block h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.pro-block > p {
  font-size: 0.92rem;
  color: var(--white-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.pro-stat-row {
  display: flex;
  gap: 30px;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
}

.pro-stat .val {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.pro-stat .desc {
  font-size: 0.78rem;
  color: var(--white-muted);
  margin-top: 4px;
}

.pro-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pro-industries span {
  padding: 6px 14px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold-light);
}

/* =============================================
   AI TRANSFORMATION
   ============================================= */
.ai-section {
  padding: var(--section-padding) 0;
  background: var(--navy);
  position: relative;
}

.ai-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.04), transparent 60%);
  pointer-events: none;
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 3rem;
}

.ai-card {
  padding: 36px 30px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.ai-card:hover {
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-3px);
}

/* CHANGE #3: Gold step numbers */
.ai-card .step {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: 0 0 30px rgba(201,168,76,0.2);
}

.ai-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.ai-card p {
  font-size: 0.88rem;
  color: var(--white-muted);
  line-height: 1.7;
}

/* =============================================
   INDUSTRIES
   ============================================= */
.industries {
  padding: var(--section-padding) 0;
}

.industries-header {
  text-align: center;
  margin-bottom: 3rem;
}

.industries-header .section-subtitle {
  margin: 0 auto;
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.ind-item {
  padding: 28px 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.ind-item:hover {
  transform: translateY(-3px);
  border-color: rgba(201,168,76,0.15);
}

.ind-item .ind-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.ind-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

/* =============================================
   MANAGED SERVICES PODs
   ============================================= */
.pods {
  padding: var(--section-padding) 0;
  background: var(--navy);
}

.pods-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 3rem;
}

@media (max-width: 800px) {
  .pods-content { grid-template-columns: 1fr; gap: 30px; }
}

.pods-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pod-feat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--white-soft);
}

.pod-feat .check {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}

.pods-models {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pod-model {
  padding: 28px 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
}

.pod-model h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.pod-model p {
  font-size: 0.85rem;
  color: var(--white-muted);
  line-height: 1.6;
}

/* =============================================
   GLOBAL FOOTPRINT
   ============================================= */
.global {
  padding: var(--section-padding) 0;
  position: relative;
}

.global-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 4rem;
}

@media (max-width: 600px) {
  .global-stats { grid-template-columns: 1fr; }
}

.g-stat {
  text-align: center;
  padding: 36px 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}

.g-stat .val {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.g-stat .desc {
  font-size: 0.85rem;
  color: var(--white-muted);
  margin-top: 8px;
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.office-card {
  padding: 32px 28px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}

.office-card .office-flag {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.office-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.office-card .office-role {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.office-card p {
  font-size: 0.82rem;
  color: var(--white-muted);
}

/* =============================================
   LEADERSHIP
   ============================================= */
.leadership {
  padding: var(--section-padding) 0;
  background: var(--navy);
}

.leadership-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.leadership-header .section-subtitle {
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.team-card {
  padding: 36px 28px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.15);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  background: linear-gradient(135deg, var(--navy-lighter), var(--navy-light));
  border: 2px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
}

.team-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.team-card .role {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-card p {
  font-size: 0.82rem;
  color: var(--white-muted);
  line-height: 1.7;
}

/* =============================================
   WHY BIT ORDER
   ============================================= */
.why {
  padding: var(--section-padding) 0;
}

.why-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.why-header .section-subtitle {
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.why-card {
  padding: 32px 28px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: transform 0.3s;
}

.why-card:hover {
  transform: translateY(-3px);
}

.why-card .why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

.why-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--white-muted);
  line-height: 1.7;
}

/* =============================================
   CTA / CONTACT
   ============================================= */
.cta-section {
  padding: var(--section-padding) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.06), transparent 60%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-inner .section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
}

.cta-inner .section-subtitle {
  margin: 0 auto 2.5rem;
  text-align: center;
}

.cta-contacts {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.cta-contact-item {
  text-align: center;
}

.cta-contact-item .cta-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 6px;
}

.cta-contact-item .cta-value {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
}

.cta-contact-item a {
  transition: color 0.3s;
}

.cta-contact-item a:hover {
  color: var(--gold);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--glass-border);
}

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

.footer-copy {
  font-size: 0.8rem;
  color: var(--white-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--white-muted);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-locations {
  font-size: 0.8rem;
  color: var(--white-muted);
}

/* =============================================
   COUNTER ANIMATION
   ============================================= */
.count-up {
  display: inline-block;
}

/* =============================================
   BACK TO TOP BUTTON
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--navy-deep);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

/* =============================================
   RESPONSIVE TWEAKS
   ============================================= */
@media (max-width: 600px) {
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px 40px;
  }
  .pro-stat-row {
    gap: 20px;
  }
  .cta-contacts {
    gap: 24px;
    flex-direction: column;
    align-items: center;
  }
}
