/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ===== VARIABLES ===== */
:root {
  --primary: #ff6b35;
  --primary-dark: #e55a2b;
  --primary-light: #ff8a5c;
  --gold: #d4a853;
  --gold-light: #f0d68a;
  --dark: #0a0a0f;
  --darker: #060608;
  --surface: #111118;
  --surface-2: #1a1a24;
  --text: #e8e8ed;
  --text-muted: #8a8a9a;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #ff6b35, #d4a853);
  --gradient-hover: linear-gradient(135deg, #ff8a5c, #f0d68a);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-full: 100px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* ===== CONCENTRIC CIRCLES BACKGROUND ===== */
body::before {
  content: '';
  position: fixed;
  bottom: -40vw;
  right: -20vw;
  width: 100vw;
  height: 100vw;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 8%, transparent 8.5%,  rgba(212,140,30,.08) 8.6%, transparent 9%),
    radial-gradient(circle, transparent 14%, transparent 14.5%, rgba(212,140,30,.07) 14.6%, transparent 15%),
    radial-gradient(circle, transparent 20%, transparent 20.5%, rgba(212,140,30,.07) 20.6%, transparent 21%),
    radial-gradient(circle, transparent 26%, transparent 26.5%, rgba(212,140,30,.06) 26.6%, transparent 27%),
    radial-gradient(circle, transparent 32%, transparent 32.5%, rgba(212,140,30,.06) 32.6%, transparent 33%),
    radial-gradient(circle, transparent 38%, transparent 38.5%, rgba(212,140,30,.05) 38.6%, transparent 39%),
    radial-gradient(circle, transparent 44%, transparent 44.5%, rgba(212,140,30,.05) 44.6%, transparent 45%),
    radial-gradient(circle, transparent 50%, transparent 50.5%, rgba(212,140,30,.04) 50.6%, transparent 51%),
    radial-gradient(circle, transparent 56%, transparent 56.5%, rgba(212,140,30,.04) 56.6%, transparent 57%),
    radial-gradient(circle, transparent 62%, transparent 62.5%, rgba(212,140,30,.03) 62.6%, transparent 63%),
    radial-gradient(circle, transparent 68%, transparent 68.5%, rgba(212,140,30,.03) 68.6%, transparent 69%),
    radial-gradient(circle, transparent 74%, transparent 74.5%, rgba(212,140,30,.02) 74.6%, transparent 75%);
  z-index: 0;
  pointer-events: none;
  animation: ripplePulse 8s ease-in-out infinite alternate;
}

body::after {
  content: '';
  position: fixed;
  top: -30vw;
  left: -25vw;
  width: 80vw;
  height: 80vw;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 10%, transparent 10.5%, rgba(255,107,53,.04) 10.6%, transparent 11%),
    radial-gradient(circle, transparent 20%, transparent 20.5%, rgba(255,107,53,.035) 20.6%, transparent 21%),
    radial-gradient(circle, transparent 30%, transparent 30.5%, rgba(255,107,53,.03) 30.6%, transparent 31%),
    radial-gradient(circle, transparent 40%, transparent 40.5%, rgba(255,107,53,.025) 40.6%, transparent 41%),
    radial-gradient(circle, transparent 50%, transparent 50.5%, rgba(255,107,53,.02) 50.6%, transparent 51%),
    radial-gradient(circle, transparent 60%, transparent 60.5%, rgba(255,107,53,.015) 60.6%, transparent 61%),
    radial-gradient(circle, transparent 70%, transparent 70.5%, rgba(255,107,53,.01) 70.6%, transparent 71%);
  z-index: 0;
  pointer-events: none;
  animation: ripplePulse2 10s ease-in-out infinite alternate;
}

@keyframes ripplePulse {
  0%   { transform: scale(1);    opacity: .7; }
  100% { transform: scale(1.08); opacity: 1; }
}
@keyframes ripplePulse2 {
  0%   { transform: scale(1.05); opacity: .5; }
  100% { transform: scale(1);    opacity: .8; }
}

/* Ensure all content sits above the background */
.navbar, .hero, section, footer, main { position: relative; z-index: 1; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== REVEAL ANIMATIONS ===== */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn i { font-size: 13px; transition: transform 0.3s; }
.btn:hover i { transform: translateX(4px); }

.btn-primary {
  background: var(--gradient);
  color: var(--dark);
  font-weight: 700;
}
.btn-primary:hover {
  background: var(--gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.3);
}

.btn-lg { padding: 18px 40px; font-size: 16px; }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(255,255,255,0.15);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border: 2px solid var(--dark);
}
.btn-dark:hover {
  background: var(--surface-2);
  transform: translateY(-2px);
}

.btn-google {
  background: var(--white);
  color: var(--dark);
  border: 2px solid #e0e0e0;
  gap: 8px;
}
.btn-google:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(66,133,244,0.2);
}

.btn-full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #000000;
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.navbar.scrolled {
  background: #000000;
  border-bottom-color: rgba(255,255,255,0.1);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.nav-logo img { height: 64px; border-radius: 8px; object-fit: contain; }
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--gradient);
  color: var(--dark) !important;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(255,107,53,0.3);
}
.nav-cta i { font-size: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
  display: block;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,107,53,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(212,168,83,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(255,107,53,0.04) 0%, transparent 40%);
}
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212,168,83,0.08);
}
.shape-1 {
  width: 600px; height: 600px;
  top: -200px; right: -100px;
  animation: float 20s ease-in-out infinite;
}
.shape-2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -100px;
  border-color: rgba(255,107,53,0.06);
  animation: float 15s ease-in-out infinite reverse;
}
.shape-3 {
  width: 200px; height: 200px;
  top: 40%; left: 50%;
  border-color: rgba(212,168,83,0.05);
  animation: float 12s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(20px, -20px) rotate(5deg); }
  50% { transform: translate(-10px, 15px) rotate(-3deg); }
  75% { transform: translate(15px, 10px) rotate(2deg); }
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212,168,83,0.25);
  background: rgba(212,168,83,0.08);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-proof {
  display: flex;
  gap: 32px;
  align-items: center;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stat span {
  font-size: 13px;
  color: var(--text-muted);
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

/* Hero Visual Cards */
.hero-visual {
  position: relative;
  height: 400px;
}
.hero-card {
  position: absolute;
  background: rgba(26,26,36,0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
  animation: cardFloat 6s ease-in-out infinite;
}
.hero-card:hover { transform: translateY(-4px) scale(1.02); border-color: rgba(212,168,83,0.3); }
.hero-card-icon { font-size: 32px; }
.hero-card-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--white);
}
.hero-card-text span {
  font-size: 13px;
  color: var(--text-muted);
}
.hero-card-1 { top: 20px; left: 10%; animation-delay: 0s; }
.hero-card-2 { top: 150px; right: 0; animation-delay: -2s; }
.hero-card-3 { bottom: 30px; left: 5%; animation-delay: -4s; }
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-indicator {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 4px;
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.3; }
}

/* ===== MARQUEE ===== */
.marquee-section {
  padding: 24px 0;
  background: var(--surface);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
}
.marquee-track { overflow: hidden; }
.marquee-content {
  display: flex;
  gap: 40px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-content span {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
}
.marquee-dot {
  color: var(--gold) !important;
  font-size: 10px !important;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTIONS ===== */
.section { padding: 120px 0; position: relative; z-index: 1; }
.section-dark { background: var(--surface); }
.section-tinted { background: rgba(255,107,53,0.03); }
.section-deep { background: #0d0d14; }
.section-subtle { background: rgba(212,168,83,0.03); }

.section-top { text-align: center; margin-bottom: 64px; }
.tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-desc {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
}
.section-cta {
  text-align: center;
  margin-top: 48px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: var(--transition);
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: rgba(212,168,83,0.2);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
}
.service-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 16px;
  right: 24px;
}
.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,107,53,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 600;
}
.service-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.service-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: var(--gold);
  font-size: 13px;
  transition: var(--transition);
}
.service-card:hover .service-arrow {
  background: var(--gradient);
  color: var(--dark);
  transform: translateX(4px);
}

/* ===== WORK SHOWCASE ===== */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.showcase-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  min-height: 260px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.showcase-item:hover { transform: translateY(-4px); border-color: var(--primary); }
.showcase-item-wide { grid-column: span 2; }
.showcase-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  background: linear-gradient(transparent, rgba(10,10,15,0.95));
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.showcase-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(255,107,53,0.15);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
  width: fit-content;
}
.showcase-overlay h4 { color: var(--white); font-size: 18px; margin-bottom: 6px; font-family: var(--font-heading); }
.showcase-overlay p { color: var(--text-muted); font-size: 14px; }

@media (max-width: 768px) {
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-item-wide { grid-column: span 1; }
}

/* ===== CTA BAND ===== */
.cta-band {
  padding: 0;
  position: relative;
  z-index: 1;
}
.cta-band-inner {
  background: var(--gradient);
  border-radius: var(--radius);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 0 24px;
}
.cta-band-inner h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--dark);
  font-weight: 700;
}
.cta-band-inner p {
  color: rgba(0,0,0,0.6);
  font-size: 16px;
  margin-top: 4px;
}
.cta-band-alt .cta-band-inner {
  background: var(--surface-2);
  border: 1px solid rgba(212,168,83,0.15);
}
.cta-band-alt .cta-band-inner h3 { color: var(--white); }
.cta-band-alt .cta-band-inner p { color: var(--text-muted); }

/* ===== STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.stat-card {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  transition: var(--transition);
}
.stat-card:hover {
  border-color: rgba(212,168,83,0.2);
  transform: translateY(-4px);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card p {
  color: var(--text-muted);
  font-size: 14px;
}

/* ===== CASE STUDIES ===== */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}
.case-card:hover {
  border-color: rgba(212,168,83,0.2);
  transform: translateY(-4px);
}
.case-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  background: rgba(212,168,83,0.1);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}
.case-card h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}
.case-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.case-result {
  display: flex;
  gap: 24px;
}
.case-result span {
  font-size: 13px;
  color: var(--text-muted);
}
.case-result strong {
  color: var(--gold);
  font-family: var(--font-heading);
}

/* ===== SECTORS ===== */
.sectors-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.sector-pill {
  padding: 14px 30px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
  cursor: default;
}
.sector-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,168,83,0.08);
  transform: translateY(-2px);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(212,168,83,0.2);
  transform: translateY(-4px);
}
.testimonial-stars {
  color: #ffc107;
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-card > p {
  color: var(--text-muted);
  font-size: 15px;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
}
.testimonial-author strong {
  display: block;
  color: var(--white);
  font-size: 15px;
}
.testimonial-author span {
  color: var(--text-muted);
  font-size: 13px;
}

/* ===== LEAD SECTION ===== */
.lead-section {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.lead-text .section-title { text-align: left; }
.lead-text .section-desc { margin: 0; margin-bottom: 32px; }
.lead-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.lead-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-muted);
  font-size: 15px;
  transition: var(--transition);
}
.lead-contact-item:hover { color: var(--gold); }
.lead-contact-item i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212,168,83,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
}
.lead-social {
  display: flex;
  gap: 12px;
}
.lead-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 18px;
  transition: var(--transition);
}
.lead-social a:hover {
  background: var(--gradient);
  color: var(--dark);
  border-color: transparent;
  transform: translateY(-2px);
}

/* Lead Form */
.lead-form-wrap {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 40px;
}
.lead-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.lead-form .form-group { margin-bottom: 16px; }
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition);
}
.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: var(--text-muted);
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,168,83,0.1);
}
.lead-form select { cursor: pointer; }
.lead-form select option { background: var(--surface); }
.lead-form textarea { resize: vertical; min-height: 100px; }

/* ===== FOOTER ===== */
.footer {
  background: #000000;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 72px 0 32px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand img,
.footer-about img {
  height: 90px;
  border-radius: 8px;
  margin-bottom: 16px;
}
.footer-about p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-brand p,
.footer-about p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gradient);
  color: var(--dark);
  border-color: transparent;
}
.footer h4 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: var(--text-muted);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer ul a:hover { color: var(--gold); }
.footer ul a i { color: var(--gold); font-size: 14px; width: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--white);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.float-btn:hover { transform: scale(1.1); }
.whatsapp-btn { background: #25d366; }
.whatsapp-btn:hover { box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
.call-btn { background: var(--primary); }
.call-btn:hover { box-shadow: 0 6px 30px rgba(255,107,53,0.5); }

/* ===== STICKY MOBILE CTA ===== */
.sticky-cta-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 16px;
  background: rgba(10,10,15,0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.06);
  z-index: 9998;
}

/* ===== PAGE BANNER (for other pages) ===== */
.page-banner {
  height: 45vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
  background: var(--dark);
  padding-top: 120px;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(255,107,53,0.08), transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(212,168,83,0.08), transparent 60%);
}
.page-banner h1 {
  font-family: var(--font-heading);
  font-size: 52px;
  color: var(--white);
  position: relative;
  z-index: 1;
}
.page-banner p {
  color: var(--text-muted);
  font-size: 17px;
  margin-top: 10px;
  position: relative;
  z-index: 1;
  max-width: 500px;
}
.breadcrumb {
  position: relative;
  z-index: 1;
  margin-top: 15px;
  font-size: 14px;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--gold); }

/* ===== BLOG DETAIL PAGE ===== */
.blog-detail {
  max-width: 800px;
  margin: 0 auto;
}
.blog-detail-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin: 16px 0 20px;
}
.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.blog-detail-meta i {
  margin-right: 6px;
  color: var(--gold);
}
.blog-detail-img {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 40px;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.blog-detail-content {
  color: var(--text);
  font-size: 16px;
  line-height: 1.9;
}
.blog-detail-content h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin: 40px 0 16px;
}
.blog-detail-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin: 28px 0 12px;
}
.blog-detail-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
}
.blog-detail-content ul {
  margin: 12px 0 20px 20px;
  list-style: disc;
}
.blog-detail-content ul li {
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.7;
}
.blog-detail-content strong {
  color: var(--white);
}
.blog-detail-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Make blog cards clickable as links */
a.blog-card {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
a.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* ===== EXISTING PAGE COMPATIBILITY ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 15px;
  font-weight: 700;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
  line-height: 1.2;
}
.section-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 16px; }

/* Old service cards compatibility */
.service-card .service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,107,53,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 20px;
}

/* Stats section compat */
.stats-section {
  background: var(--surface);
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

/* About grid compat */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image { position: relative; border-radius: 20px; overflow: hidden; }
.about-image img { width: 100%; border-radius: 20px; }
.about-image::after {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  border-radius: 20px;
  z-index: -1;
}
.about-text h2 {
  font-family: var(--font-heading);
  font-size: 38px;
  color: var(--white);
  margin-bottom: 20px;
}
.about-text p { color: var(--text-muted); margin-bottom: 15px; }
.about-text .highlight {
  color: var(--gold);
  font-weight: 600;
  font-size: 18px;
  border-left: 3px solid var(--gold);
  padding-left: 15px;
  margin: 25px 0;
}

/* Solutions compat */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}
.solution-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 30px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  transition: var(--transition);
}
.solution-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.solution-icon {
  min-width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,107,53,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
}
.solution-card h4 { color: var(--white); font-size: 16px; margin-bottom: 5px; }
.solution-card p { color: var(--text-muted); font-size: 13px; }

/* Sectors compat */
.sector-tag {
  padding: 12px 28px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  cursor: default;
}
.sector-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,168,83,0.08);
}

/* Reviews compat */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}
.review-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 30px;
  transition: var(--transition);
}
.review-card:hover { border-color: rgba(212,168,83,0.2); }
.review-stars { color: #ffc107; font-size: 18px; margin-bottom: 12px; }
.review-text { color: var(--text-muted); font-size: 14px; font-style: italic; margin-bottom: 15px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--dark);
}
.review-name { color: var(--white); font-weight: 600; font-size: 14px; }
.review-date { color: var(--text-muted); font-size: 12px; }

/* Blog cards compat */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}
.blog-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.blog-card img { width: 100%; height: 220px; object-fit: cover; }
.blog-card-body { padding: 25px; }
.blog-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  background: rgba(212,168,83,0.1);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}
.blog-card h3 { font-size: 20px; color: var(--white); margin-bottom: 10px; line-height: 1.4; }
.blog-card p { color: var(--text-muted); font-size: 14px; margin-bottom: 15px; }
.blog-meta { display: flex; justify-content: space-between; color: var(--text-muted); font-size: 12px; }

/* Contact form compat */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: var(--white);
  font-family: inherit;
  font-size: 14px;
  transition: var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(212,168,83,0.1);
}
.contact-form select { cursor: pointer; -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.contact-form select option { background: var(--surface); color: var(--white); padding: 10px; }
.contact-form textarea { resize: vertical; min-height: 120px; }

.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 25px;
  display: flex;
  gap: 15px;
  align-items: center;
}
.contact-info-icon {
  min-width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255,107,53,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary);
}
.contact-info-card h4 { color: var(--white); font-size: 15px; margin-bottom: 3px; }
.contact-info-card p { color: var(--text-muted); font-size: 13px; }

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 30px;
  border: 1px solid rgba(255,255,255,0.06);
}
.map-container iframe { width: 100%; height: 350px; border: none; }

/* CTA section compat */
.cta-section {
  background: var(--gradient);
  padding: 80px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-section h2 {
  font-family: var(--font-heading);
  font-size: 40px;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 15px;
}
.cta-section p { color: rgba(0,0,0,0.6); font-size: 17px; margin-bottom: 30px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* Google review button compat */
.google-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--dark);
  padding: 14px 30px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  border: 2px solid #4285f4;
}
.google-review-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(66,133,244,0.3); }
.google-review-btn img { height: 24px; }

/* WhatsApp compat */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,.6); }

/* Clients marquee compat */
.clients-section { overflow: hidden; }
.clients-marquee { overflow: hidden; position: relative; }
.clients-marquee::before, .clients-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
}
.clients-marquee::before { left: 0; background: linear-gradient(to right, var(--dark), transparent); }
.clients-marquee::after { right: 0; background: linear-gradient(to left, var(--dark), transparent); }
.clients-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 35s linear infinite;
}
.clients-track-reverse { animation-direction: reverse; }
.client-logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--gold-light);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: .5px;
  transition: var(--transition);
  min-height: 56px;
}
.client-logo-item:hover {
  border-color: var(--gold);
  background: rgba(212,168,83,0.08);
  transform: scale(1.05);
}

/* Fade up compat */
.js-ready .fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s, transform 0.6s;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-proof { justify-content: center; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .lead-grid { grid-template-columns: 1fr; }
  .lead-text .section-title { text-align: center; }
  .lead-text .section-desc { text-align: center; }
  .lead-contact-info { align-items: center; }
  .lead-social { justify-content: center; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; padding: 36px 28px; }
}

@media (max-width: 768px) {
  .nav-logo img { height: 54px; }
  .navbar .container { padding: 10px 16px; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #000000;
    flex-direction: column;
    padding: 100px 30px 30px;
    transition: 0.4s;
    gap: 20px;
    border-left: 1px solid rgba(255,255,255,0.06);
    overflow-y: auto;
  }
  .nav-links.active { right: 0; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }

  .hero { padding-top: 120px; min-height: auto; }
  .hero-title { font-size: 32px; }
  .hero-desc { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-proof { flex-direction: column; gap: 16px; }
  .hero-stat-divider { width: 40px; height: 1px; }
  .hero-badge { font-size: 11px; padding: 6px 16px; }

  .section { padding: 64px 0; }
  .section-top { margin-bottom: 40px; }
  .section-title { font-size: 26px; }
  .section-desc { font-size: 14px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 22px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-number { font-size: 34px; }
  .stat-card { padding: 20px 14px; }
  .cases-grid { grid-template-columns: 1fr; }
  .case-card { padding: 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 24px; }
  .sectors-flex { gap: 10px; }
  .sector-pill { padding: 10px 20px; font-size: 13px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .page-banner { height: 35vh; min-height: 240px; }
  .page-banner h1 { font-size: 30px; }
  .page-banner p { font-size: 15px; }

  .lead-grid { gap: 40px; }
  .lead-form-wrap { padding: 28px 20px; }
  .lead-form .form-row { grid-template-columns: 1fr; }
  .lead-contact-item { font-size: 14px; }

  .cta-band-inner { margin: 0 16px; padding: 32px 20px; }
  .cta-band-inner h3 { font-size: 22px; }
  .cta-section h2 { font-size: 28px; }

  .contact-grid { gap: 32px; }
  .about-text h2 { font-size: 28px; }
  .section-header h2 { font-size: 28px; }
  .solutions-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }

  .sticky-cta-mobile { display: block; }
  .floating-buttons { bottom: 80px; }
}

@media (max-width: 480px) {
  .nav-logo img { height: 48px; }
  .container { padding: 0 16px; }
  .hero { padding-top: 90px; }
  .hero-title { font-size: 24px; }
  .hero-desc { font-size: 14px; margin-bottom: 24px; }
  .hero-actions .btn-lg { padding: 14px 28px; font-size: 14px; }
  .stat-number { font-size: 28px; }
  .section { padding: 48px 0; }
  .section-title { font-size: 22px; }
  .section-top { margin-bottom: 32px; }
  .page-banner { height: 30vh; min-height: 200px; }
  .page-banner h1 { font-size: 24px; }
  .page-banner p { font-size: 14px; }
  .lead-form-wrap { padding: 20px 16px; }
  .lead-form .form-row { grid-template-columns: 1fr; }
  .lead-form input,
  .lead-form select,
  .lead-form textarea { padding: 14px 16px; font-size: 14px; }
  .btn { padding: 12px 24px; font-size: 14px; }
  .btn-lg { padding: 14px 28px; font-size: 14px; }
  .cta-band-inner { padding: 24px 16px; margin: 0 8px; }
  .cta-band-inner h3 { font-size: 20px; }
  .footer { padding: 48px 0 24px; }
  .footer-brand img { height: 70px; }
  .floating-buttons { right: 16px; }
  .float-btn { width: 48px; height: 48px; font-size: 22px; }
  .about-text h2 { font-size: 24px; }
  .section-header h2 { font-size: 24px; }
  .service-card { padding: 24px 18px; }
  .marquee-content span { font-size: 15px; }
}

/* ===== BRAND SLIDER ===== */
.brand-slider-section { padding: 60px 0; }
.brand-slider { position: relative; overflow: hidden; border-radius: 16px; background: var(--surface); max-width: 800px; margin: 0 auto; }
.brand-slider-track {
  display: flex;
  width: max-content;
  animation: brandScroll 42s linear infinite;
}
.brand-slide { flex-shrink: 0; width: 800px; height: 450px; display: flex; align-items: center; justify-content: center; padding: 20px; }
.brand-slide img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; border-radius: 12px; }
@keyframes brandScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brand-slider:hover .brand-slider-track { animation-play-state: paused; }
@media (max-width: 768px) { .brand-slider { max-width: 100%; } .brand-slide { width: 100vw; height: 300px; padding: 15px; } }
@media (max-width: 480px) { .brand-slide { height: 240px; padding: 10px; } }
