/* ═══════════════════════════════════════════════════════════════
   TITAN TRADE AGENCY — Premium CSS
   Dark Charcoal + Electric Blue + Chrome
═══════════════════════════════════════════════════════════════ */

:root {
  --blue-glow:   #00A8FF;
  --blue-royal:  #0A1A3A;
  --blue-mid:    #0A4FD6;
  --silver:      #C7D1DA;
  --charcoal:    #0B0B0D;
  --charcoal-2:  #111116;
  --charcoal-3:  #181820;
  --charcoal-4:  #1e1e28;
  --gold:        #D4AF37;
  --white:       #ffffff;
  --text-dim:    rgba(199,209,218,0.7);
  --text-muted:  rgba(199,209,218,0.4);
  --glow-sm:     0 0 20px rgba(0,168,255,0.3);
  --glow-md:     0 0 40px rgba(0,168,255,0.2);
  --glow-lg:     0 0 80px rgba(0,168,255,0.15);
  --radius:      14px;
  --radius-lg:   22px;
  --transition:  0.3s ease;
  --font-head:   'Barlow', 'Rajdhani', sans-serif;
  --font-cond:   'Barlow Condensed', 'Barlow', sans-serif;
  --font-body:   'Inter', 'Barlow', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--charcoal);
  color: var(--silver);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 800; line-height: 1.15; color: var(--white); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Glow / Chrome Text ───────────────────────────────────────── */
.glow-text {
  color: var(--blue-glow);
  text-shadow: 0 0 20px rgba(0,168,255,0.6), 0 0 60px rgba(0,168,255,0.3);
}

.chrome-text {
  background: linear-gradient(135deg, #C7D1DA 0%, #ffffff 30%, #00A8FF 50%, #ffffff 70%, #C7D1DA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Eyebrow / Labels ────────────────────────────────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue-glow);
  background: rgba(0,168,255,0.08);
  border: 1px solid rgba(0,168,255,0.25);
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-header { text-align: center; margin-bottom: 60px; }
.section-title { font-size: clamp(28px,4vw,48px); color: var(--white); margin-bottom: 16px; }
.section-subtitle { font-size: 17px; color: var(--text-dim); max-width: 600px; margin: 0 auto; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--blue-glow), var(--blue-mid));
  color: var(--white);
  padding: 15px 32px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(0,168,255,0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(0,168,255,0.5), 0 10px 30px rgba(0,168,255,0.2);
  color: var(--white);
}

/* ── Announcement Ticker ─────────────────────────────────────── */
.ticker-bar {
  background: linear-gradient(90deg, var(--blue-royal), var(--blue-mid), var(--blue-royal));
  border-bottom: 1px solid rgba(0,168,255,0.4);
  height: 38px;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 20px rgba(0,168,255,0.15);
  margin-top: 80px; /* offset for 2-layer header (40px strip + 40px main bar) */
}

.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  width: max-content;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.ticker-dot { color: var(--blue-glow); font-size: 8px; }

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Header (base — overridden by v2 rules below) ────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0; right: 0;
  z-index: 1000;
  transition: all var(--transition);
}

.site-header.scrolled {
  /* handled in v2 .header-main-bar.scrolled rules */
}

.header-inner { display: flex; align-items: center; gap: 24px; }

/* Logo */
.logo-link { text-decoration: none; }
.logo { display: flex; align-items: center; gap: 12px; }

.logo-emblem {
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(0,168,255,0.5));
  transition: filter var(--transition);
}

.logo-emblem:hover { filter: drop-shadow(0 0 20px rgba(0,168,255,0.8)); }
.logo-emblem.small { filter: drop-shadow(0 0 8px rgba(0,168,255,0.4)); }

.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
  font-family: var(--font-cond);
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 4px;
  text-shadow: 0 0 20px rgba(0,168,255,0.4);
}
.logo-sub {
  font-family: var(--font-head);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--blue-glow);
  text-transform: uppercase;
}

/* Nav */
.main-nav { flex: 1; }
.main-nav ul { display: flex; align-items: center; justify-content: center; gap: 4px; list-style: none; }
.nav-link {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 9px 14px;
  border-radius: 8px;
  transition: all var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--blue-glow);
  transition: all var(--transition);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--blue-glow);
}
.nav-link:hover { color: var(--blue-glow); }
.nav-link:hover::after { left: 14px; right: 14px; }

.header-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

.btn-phone {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--silver);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color var(--transition);
  white-space: nowrap;
}
.btn-phone i { color: var(--blue-glow); }
.btn-phone:hover { color: var(--blue-glow); }

.btn-cta-nav {
  background: linear-gradient(135deg, var(--blue-glow), var(--blue-mid));
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition);
  box-shadow: 0 0 20px rgba(0,168,255,0.25);
  white-space: nowrap;
}
.btn-cta-nav:hover { box-shadow: 0 0 40px rgba(0,168,255,0.5); transform: translateY(-1px); color: var(--white); }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--silver); border-radius: 2px; transition: all var(--transition); }

/* ── Hero Section ─────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(10,26,58,0.9) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 30%, rgba(0,168,255,0.05) 0%, transparent 50%),
              var(--charcoal);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,168,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,168,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow-left {
  position: absolute;
  left: -200px;
  top: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,168,255,0.12) 0%, transparent 70%);
  filter: blur(40px);
}

.hero-glow-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 600px;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(10,26,58,0.5) 0%, transparent 70%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--blue-glow);
  animation: float-up linear infinite;
  opacity: 0;
}

@keyframes float-up {
  0% { transform: translateY(100vh); opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0.2; }
  100% { transform: translateY(-50px); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 3;
  flex: 1;
  max-width: 640px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-glow);
  margin-bottom: 22px;
  animation: fadeInUp 0.7s ease both;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-glow);
  box-shadow: 0 0 10px var(--blue-glow);
  animation: pulse-dot 2s ease infinite;
}

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

.hero-title {
  font-family: var(--font-cond);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: fadeInUp 0.7s ease 0.15s both;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-dim);
  margin-bottom: 32px;
  animation: fadeInUp 0.7s ease 0.25s both;
  letter-spacing: 0.3px;
}

.hero-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
  animation: fadeInUp 0.7s ease 0.35s both;
}

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--silver);
}

.check-icon {
  width: 26px;
  height: 26px;
  background: rgba(0,168,255,0.15);
  border: 1px solid rgba(0,168,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-icon i { font-size: 12px; color: var(--blue-glow); }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  animation: fadeInUp 0.7s ease 0.45s both;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--blue-glow), var(--blue-mid));
  color: var(--white);
  padding: 18px 36px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition);
  position: relative;
  overflow: visible;
  box-shadow: 0 0 40px rgba(0,168,255,0.3), 0 10px 30px rgba(0,0,0,0.4);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 70px rgba(0,168,255,0.6), 0 15px 40px rgba(0,0,0,0.4);
  color: var(--white);
}

.btn-glow-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50px;
  border: 2px solid rgba(0,168,255,0.4);
  animation: glow-pulse 2.5s ease infinite;
  pointer-events: none;
}

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

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,168,255,0.07);
  color: var(--silver);
  padding: 18px 32px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(0,168,255,0.2);
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background: rgba(0,168,255,0.12);
  border-color: var(--blue-glow);
  color: var(--blue-glow);
  transform: translateY(-2px);
}

.btn-hero-secondary i { color: var(--blue-glow); font-size: 20px; }

.hero-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  animation: fadeInUp 0.7s ease 0.55s both;
}

.guarantee-shield {
  width: 34px;
  height: 34px;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.hero-guarantee span {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
}

/* Hero Visual / Mascot */
.hero-visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

.hero-char-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mascot {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(0,168,255,0.4)) drop-shadow(0 20px 60px rgba(0,0,0,0.8));
  animation: mascot-float 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

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

.char-glow-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,168,255,0.15);
  animation: ring-pulse 3s ease infinite;
}

.ring-1 { width: 450px; height: 450px; animation-delay: 0s; }
.ring-2 { width: 550px; height: 550px; animation-delay: 1s; }

@keyframes ring-pulse {
  0%,100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0; transform: scale(1.05); }
}

/* Scroll Cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.hero-scroll-cue span {
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 18px;
  height: 32px;
  border: 1.5px solid rgba(0,168,255,0.4);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.scroll-dot-inner {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  background: var(--blue-glow);
  border-radius: 2px;
  animation: scroll-bounce 2s ease infinite;
  box-shadow: 0 0 6px var(--blue-glow);
}

@keyframes scroll-bounce {
  0%,100% { top: 4px; opacity: 1; }
  100% { top: 18px; opacity: 0; }
}

/* ── Social Bar ───────────────────────────────────────────────── */
.social-bar {
  background: var(--charcoal-2);
  border-top: 1px solid rgba(0,168,255,0.1);
  border-bottom: 1px solid rgba(0,168,255,0.1);
  padding: 30px 0;
}

.social-bar .container { text-align: center; }

.social-bar-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.social-bar-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.social-platform {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 40px;
  color: var(--text-dim);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition);
}

.social-platform:hover { color: var(--blue-glow); }

.social-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all var(--transition);
}

.social-icon-wrap.fb { background: rgba(24,119,242,0.1); border: 1px solid rgba(24,119,242,0.2); color: #1877F2; }
.social-icon-wrap.ig { background: rgba(225,48,108,0.1); border: 1px solid rgba(225,48,108,0.2); color: #E1306C; }
.social-icon-wrap.gg { background: rgba(234,67,53,0.1); border: 1px solid rgba(234,67,53,0.2); color: #EA4335; }

.social-platform:hover .social-icon-wrap { box-shadow: 0 0 20px rgba(0,168,255,0.3); transform: translateY(-2px); }

.social-divider { width: 1px; height: 40px; background: rgba(0,168,255,0.12); }

/* ── Stats ─────────────────────────────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, var(--blue-royal), #071030, var(--blue-royal));
  padding: 60px 0;
  border-top: 1px solid rgba(0,168,255,0.2);
  border-bottom: 1px solid rgba(0,168,255,0.2);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,168,255,0.1) 0%, transparent 70%);
}

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

.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(0,168,255,0.15);
}

.stat-item:last-child { border-right: none; }

.stat-icon {
  font-size: 26px;
  color: var(--blue-glow);
  margin-bottom: 12px;
  filter: drop-shadow(0 0 8px rgba(0,168,255,0.5));
}

.stat-value {
  font-family: var(--font-cond);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(0,168,255,0.4);
}

.stat-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(199,209,218,0.6);
}

/* ── Portfolio ─────────────────────────────────────────────────── */
.portfolio-section {
  padding: 100px 0;
  background: var(--charcoal);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.portfolio-card {
  background: var(--charcoal-3);
  border: 1px solid rgba(0,168,255,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
  cursor: pointer;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,168,255,0.5);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(0,168,255,0.1);
}

.portfolio-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,168,255,0.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.portfolio-card:hover .portfolio-glow { opacity: 1; }

/* Device Mockups */
.portfolio-mockup {
  position: relative;
  padding: 30px 20px 20px;
  background: linear-gradient(180deg, rgba(10,26,58,0.6) 0%, var(--charcoal-3) 100%);
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
}

.mockup-screen { position: relative; }

.desktop-mock {
  width: 200px;
  background: var(--charcoal-4);
  border: 1.5px solid rgba(0,168,255,0.2);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
  z-index: 2;
}

.mock-browser-bar {
  background: rgba(0,168,255,0.1);
  padding: 6px 10px;
  display: flex;
  gap: 5px;
  align-items: center;
}

.mock-browser-bar span {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(0,168,255,0.3);
}

.mock-browser-bar:not(.small) span:nth-child(1) { background: #ff5f57; }
.mock-browser-bar:not(.small) span:nth-child(2) { background: #ffbd2e; }
.mock-browser-bar:not(.small) span:nth-child(3) { background: #28c940; }

.mock-content { padding: 10px; }
.mock-hero-bar {
  height: 50px;
  background: linear-gradient(135deg, rgba(0,168,255,0.2), rgba(10,26,58,0.8));
  border-radius: 4px;
  margin-bottom: 8px;
}

.mock-nav-bar {
  height: 8px;
  background: rgba(0,168,255,0.1);
  border-radius: 2px;
  margin-bottom: 8px;
}

.mock-body { display: flex; flex-direction: column; gap: 4px; }
.mock-line { height: 4px; border-radius: 2px; background: rgba(199,209,218,0.15); }
.mock-line.wide { width: 90%; }
.mock-line.medium { width: 70%; }
.mock-line.short { width: 50%; }
.mock-btn-area { height: 12px; width: 60px; background: rgba(0,168,255,0.3); border-radius: 6px; margin-top: 6px; }

.laptop-mock {
  width: 140px;
  position: relative;
  margin-bottom: 16px;
  z-index: 1;
}

.mock-laptop-lid {
  background: var(--charcoal-4);
  border: 1px solid rgba(0,168,255,0.15);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 2px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

.mock-laptop-lid.small .mock-hero-bar.small { height: 30px; }
.mock-laptop-lid.small .mock-body.small { padding: 4px; }

.mock-content.small { padding: 6px; }
.mock-hero-bar.small { height: 30px; margin-bottom: 5px; }
.mock-line { height: 3px; }

.mock-laptop-base {
  height: 8px;
  background: rgba(0,168,255,0.1);
  border-radius: 0 0 4px 4px;
}

.portfolio-info { padding: 22px 24px 26px; }
.portfolio-category {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-glow);
  background: rgba(0,168,255,0.08);
  border: 1px solid rgba(0,168,255,0.2);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.portfolio-info h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.portfolio-info p { font-size: 13px; color: var(--text-dim); line-height: 1.7; }

/* ── Services ──────────────────────────────────────────────────── */
.services-section {
  padding: 100px 0;
  background: var(--charcoal-2);
}

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

.service-card {
  background: var(--charcoal-3);
  border: 1px solid rgba(0,168,255,0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-glow), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,168,255,0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 40px rgba(0,168,255,0.08);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0,168,255,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

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

.service-icon-wrap {
  width: 62px;
  height: 62px;
  background: rgba(0,168,255,0.08);
  border: 1px solid rgba(0,168,255,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--blue-glow);
  margin-bottom: 22px;
  transition: all var(--transition);
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon-wrap {
  background: var(--blue-glow);
  color: var(--white);
  box-shadow: 0 0 30px rgba(0,168,255,0.5);
}

.service-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* ── Compare / Problem vs Solution ─────────────────────────────── */
.compare-section {
  padding: 100px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.compare-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,168,255,0.04) 0%, transparent 70%);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  position: relative;
}

.compare-card {
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid;
}

.compare-card.problem { border-color: rgba(239,68,68,0.2); }
.compare-card.solution { border-color: rgba(0,168,255,0.25); }

.compare-card:hover { transform: translateY(-4px); }
.compare-card.problem:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(239,68,68,0.08); }
.compare-card.solution:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(0,168,255,0.1); }

.compare-card-glow { position: absolute; inset: 0; pointer-events: none; }
.problem-glow { background: radial-gradient(circle at 50% 0%, rgba(239,68,68,0.06) 0%, transparent 60%); }
.solution-glow { background: radial-gradient(circle at 50% 0%, rgba(0,168,255,0.06) 0%, transparent 60%); }

.compare-header { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }

.compare-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.problem-icon { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2); color: #f87171; }
.solution-icon { background: rgba(0,168,255,0.1); border: 1px solid rgba(0,168,255,0.2); color: var(--blue-glow); box-shadow: 0 0 20px rgba(0,168,255,0.2); }

.compare-header h3 { font-size: 20px; font-weight: 800; color: var(--white); }

.compare-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.6;
}

.compare-card.problem .compare-list li i { color: #f87171; flex-shrink: 0; margin-top: 3px; }
.compare-card.solution .compare-list li i { color: var(--blue-glow); flex-shrink: 0; margin-top: 3px; filter: drop-shadow(0 0 5px rgba(0,168,255,0.5)); }

.compare-vs { text-align: center; }
.vs-badge {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-royal));
  border: 2px solid rgba(0,168,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cond);
  font-size: 16px;
  font-weight: 900;
  color: var(--blue-glow);
  box-shadow: 0 0 30px rgba(0,168,255,0.2);
}

/* ── About ─────────────────────────────────────────────────────── */
.about-section {
  padding: 100px 0;
  background: var(--charcoal-2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 70px;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-frame {
  border-radius: var(--radius-lg);
  overflow: visible;
  position: relative;
  max-width: 380px;
}

.about-img-inner {
  background: linear-gradient(135deg, var(--blue-royal), var(--charcoal-3));
  border: 1px solid rgba(0,168,255,0.2);
  border-radius: var(--radius-lg);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.about-img-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(0,168,255,0.1) 0%, transparent 60%);
}

.about-img-inner i { font-size: 80px; color: rgba(0,168,255,0.2); }
.about-img-inner strong { font-family: var(--font-cond); font-size: 22px; font-weight: 800; color: var(--white); letter-spacing: 2px; }
.about-img-inner span { font-size: 13px; color: var(--blue-glow); }

.about-frame-glow {
  position: absolute;
  inset: -2px;
  border: 2px solid rgba(0,168,255,0.3);
  border-radius: var(--radius-lg);
  pointer-events: none;
  box-shadow: 0 0 40px rgba(0,168,255,0.15);
}

.about-badge, .about-badge-2 {
  position: absolute;
  background: var(--blue-royal);
  border: 1px solid rgba(0,168,255,0.3);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5), 0 0 20px rgba(0,168,255,0.1);
  backdrop-filter: blur(10px);
}

.about-badge { bottom: -16px; right: -20px; }
.about-badge-2 { top: -16px; right: -20px; }

.about-badge i, .about-badge-2 i { color: var(--blue-glow); font-size: 20px; }
.about-badge strong, .about-badge-2 strong { display: block; font-family: var(--font-cond); font-size: 18px; font-weight: 900; color: var(--white); line-height: 1; }
.about-badge span, .about-badge-2 span { display: block; font-size: 11px; color: var(--text-muted); margin-top: 2px; }

.about-content h2 { font-family: var(--font-cond); font-size: clamp(30px, 3.5vw, 46px); font-weight: 900; text-transform: uppercase; letter-spacing: 2px; color: var(--white); margin-bottom: 8px; }
.about-subtitle { font-family: var(--font-head); font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue-glow); margin-bottom: 28px; }

.about-text p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.9;
  margin-bottom: 18px;
}

.about-text strong { color: var(--white); }

.about-signature {
  padding: 20px 0;
  border-top: 1px solid rgba(0,168,255,0.1);
  border-bottom: 1px solid rgba(0,168,255,0.1);
  margin: 28px 0;
}

.sig-line { font-family: var(--font-cond); font-size: 26px; font-weight: 900; color: var(--blue-glow); text-shadow: 0 0 20px rgba(0,168,255,0.4); letter-spacing: 2px; }
.sig-title { font-size: 12px; color: var(--text-muted); margin-top: 4px; letter-spacing: 1px; }

/* ── Testimonials ──────────────────────────────────────────────── */
.testimonials-section {
  padding: 100px 0;
  background: var(--charcoal);
}

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

.testimonial-card {
  background: var(--charcoal-3);
  border: 1px solid rgba(0,168,255,0.1);
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(0,168,255,0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(0,168,255,0.08);
}

.testimonial-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(0,168,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.testimonial-stars { color: var(--gold); font-size: 17px; letter-spacing: 2px; margin-bottom: 16px; }

.testimonial-text {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.9;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.author-avatar {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--blue-glow), var(--blue-mid));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-cond);
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(0,168,255,0.3);
}

.author-info strong { display: block; font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--white); }
.author-info span { display: block; font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.platform-tag { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; color: var(--blue-glow); margin-top: 4px; }

/* ── FAQ ───────────────────────────────────────────────────────── */
.faq-section {
  padding: 100px 0;
  background: var(--charcoal-2);
}

.faq-list { max-width: 840px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--charcoal-3);
  border: 1px solid rgba(0,168,255,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open { border-color: rgba(0,168,255,0.4); box-shadow: 0 0 30px rgba(0,168,255,0.08); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}

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

.faq-icon {
  width: 34px; height: 34px;
  background: rgba(0,168,255,0.08);
  border: 1px solid rgba(0,168,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.faq-icon i { color: var(--blue-glow); font-size: 12px; transition: transform var(--transition); }
.faq-item.open .faq-icon { background: var(--blue-glow); border-color: var(--blue-glow); }
.faq-item.open .faq-icon i { color: var(--white); transform: rotate(180deg); }

.faq-answer {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.9;
  padding: 0 26px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 400px; padding: 0 26px 24px; }

/* ── CTA / Contact Section ────────────────────────────────────── */
.cta-section {
  padding: 100px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.cta-bg { position: absolute; inset: 0; }

.cta-glow-left {
  position: absolute;
  left: -200px; top: 0;
  width: 600px; height: 100%;
  background: radial-gradient(ellipse at left, rgba(10,26,58,0.7) 0%, transparent 60%);
}

.cta-glow-right {
  position: absolute;
  right: -200px; top: 0;
  width: 600px; height: 100%;
  background: radial-gradient(ellipse at right, rgba(0,168,255,0.06) 0%, transparent 60%);
}

.cta-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0,168,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(0,168,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.cta-title {
  font-family: var(--font-cond);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--white);
}

.cta-desc {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 30px;
}

.cta-bullets { list-style: none; margin-bottom: 40px; display: flex; flex-direction: column; gap: 14px; }
.cta-bullets li {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-head); font-size: 15px; font-weight: 600; color: var(--silver);
}
.cta-bullets li i { color: var(--blue-glow); font-size: 16px; filter: drop-shadow(0 0 6px rgba(0,168,255,0.5)); }

.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-line {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: var(--text-dim);
  transition: color var(--transition);
}
.contact-line i { color: var(--blue-glow); width: 18px; }
.contact-line:hover { color: var(--blue-glow); }

/* Contact Form */
.cta-form-card {
  background: rgba(10,26,58,0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,168,255,0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 0 60px rgba(0,168,255,0.08), 0 30px 60px rgba(0,0,0,0.4);
}

.cta-form-card h3 {
  font-family: var(--font-cond);
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-form-card p { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }

.cta-form { display: flex; flex-direction: column; gap: 14px; }

.input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.input-group i {
  position: absolute;
  left: 16px;
  color: rgba(0,168,255,0.5);
  font-size: 14px;
  z-index: 1;
}

.input-group.textarea-group { align-items: flex-start; }
.input-group.textarea-group i { top: 14px; }

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 14px 16px 14px 44px;
  background: rgba(0,168,255,0.04);
  border: 1px solid rgba(0,168,255,0.15);
  border-radius: 10px;
  color: var(--white);
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  transition: all var(--transition);
  resize: vertical;
}

.input-group input::placeholder,
.input-group textarea::placeholder { color: rgba(199,209,218,0.3); }

.input-group input:focus,
.input-group textarea:focus {
  border-color: rgba(0,168,255,0.5);
  background: rgba(0,168,255,0.08);
  box-shadow: 0 0 0 3px rgba(0,168,255,0.08);
}

.btn-form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--blue-glow), var(--blue-mid));
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 0 40px rgba(0,168,255,0.3);
  overflow: visible;
}

.btn-form-submit:hover { transform: translateY(-2px); box-shadow: 0 0 60px rgba(0,168,255,0.5); }

.form-secure {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-secure i { color: var(--gold); }

/* ── Footer ───────────────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal-2);
  border-top: 1px solid rgba(0,168,255,0.1);
  position: relative;
}

.footer-glow-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-glow), transparent);
  opacity: 0.4;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding: 60px 0 50px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 18px 0 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px; height: 40px;
  background: rgba(0,168,255,0.08);
  border: 1px solid rgba(0,168,255,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-glow);
  font-size: 16px;
  transition: all var(--transition);
}

.footer-social a:hover { background: var(--blue-glow); color: var(--white); box-shadow: 0 0 20px rgba(0,168,255,0.4); transform: translateY(-2px); }

.footer-links-col h4 {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-glow);
  margin-bottom: 20px;
}

.footer-links-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links-col li, .footer-links-col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.footer-links-col a:hover { color: var(--blue-glow); }
.footer-links-col li i { color: var(--blue-glow); font-size: 12px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 22px 0;
}

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

.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: var(--text-muted); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--blue-glow); }

/* ── Back to Top ──────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--blue-glow), var(--blue-mid));
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: all var(--transition);
  z-index: 999;
  box-shadow: 0 0 25px rgba(0,168,255,0.4);
}

.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 0 40px rgba(0,168,255,0.6); }

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

[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-visual { position: relative; width: 100%; display: none; }
  .hero-content { max-width: 100%; text-align: center; }
  .hero-checklist { align-items: center; }
  .hero-actions { justify-content: center; }
  .hero-guarantee { justify-content: center; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .compare-grid { grid-template-columns: 1fr; }
  .compare-vs { display: none; }
  .cta-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; position: fixed; inset: 0; background: rgba(11,11,13,0.98); z-index: 999; padding: 100px 30px 30px; }
  .main-nav.open { display: flex; flex-direction: column; }
  .main-nav ul { flex-direction: column; gap: 6px; }
  .nav-link { font-size: 18px; display: block; padding: 14px; }
  .header-cta { display: none; }
  .mobile-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .social-bar-icons { gap: 0; flex-wrap: wrap; }
  .about-badge, .about-badge-2 { position: static; margin-top: 16px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 32px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
  .cta-form-card { padding: 24px 20px; }
}


/* ═══════════════════════════════════════════════════════════════
   TITAN v2.0 — New Component Styles
   Two-layer Header, iMac Portfolio, Testimonial Carousel,
   About-King Layout, Gold Ticker, New Footer, Logo Handling
═══════════════════════════════════════════════════════════════ */

/* ── Hero Layout (left/right split) ─────────────────────────── */
.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.hero-left {
  flex: 1;
  max-width: 580px;
  z-index: 3;
}

.hero-right {
  flex-shrink: 0;
  width: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* Hero Social Proof */
.hero-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(10,26,58,0.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0,168,255,0.2);
  border-radius: 50px;
  padding: 10px 20px;
  animation: fadeInUp 0.7s ease 0.55s both;
}

.hsp-avatars {
  display: flex;
  align-items: center;
}

.hsp-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 900;
  color: var(--white);
  margin-right: -8px;
  flex-shrink: 0;
}

.hsp-av:last-child { margin-right: 0; }

.hsp-text {
  display: flex;
  flex-direction: column;
  margin-left: 12px;
}

.hsp-stars {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 1px;
}

.hsp-text span {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--silver);
}

.hsp-text strong { color: var(--white); }

/* Hero Guarantee Badge */
.hero-guarantee-badge {
  position: absolute;
  top: 20px;
  right: -20px;
  z-index: 4;
}

.hgb-inner {
  background: linear-gradient(135deg, rgba(212,175,55,0.25), rgba(212,175,55,0.1));
  border: 2px solid var(--gold);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 0 30px rgba(212,175,55,0.3);
  animation: badge-spin 8s linear infinite;
}

.hgb-inner i {
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 2px;
}

.hgb-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
}

.hgb-text strong {
  font-family: var(--font-cond);
  font-size: 18px;
  font-weight: 900;
  color: var(--gold);
  display: block;
}

.hgb-text span {
  font-family: var(--font-head);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

@keyframes badge-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ── Two-Layer Header ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0; right: 0;
  z-index: 1000;
  transition: all var(--transition);
}

/* Top social/phone strip */
.header-top-strip {
  background: #0B0B0D;
  border-bottom: 1px solid rgba(0,168,255,0.12);
  height: 40px;
  display: flex;
  align-items: center;
  transition: all var(--transition);
}

.site-header.scrolled .header-top-strip {
  height: 0;
  overflow: hidden;
  border: none;
}

.hts-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.hts-social {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hts-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--white);
  transition: all var(--transition);
  text-decoration: none;
}

.hts-icon.fb { background: rgba(24,119,242,0.15); }
.hts-icon.ig { background: rgba(225,48,108,0.15); }
.hts-icon.gg { background: rgba(234,67,53,0.15); }
.hts-icon.yt { background: rgba(255,0,0,0.15); }
.hts-icon.fb:hover { background: #1877F2; }
.hts-icon.ig:hover { background: #E1306C; }
.hts-icon.gg:hover { background: #EA4335; }
.hts-icon.yt:hover { background: #FF0000; }

.hts-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--silver);
  letter-spacing: 0.5px;
}

.hts-phone i {
  color: var(--blue-glow);
  font-size: 11px;
}

.hts-phone a {
  color: inherit;
  transition: color var(--transition);
}

.hts-phone a:hover { color: var(--blue-glow); }

/* Main navigation bar */
.header-main-bar {
  background: rgba(11,11,13,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,168,255,0.1);
  padding: 10px 0;
  transition: all var(--transition);
}

.site-header.scrolled .header-main-bar {
  background: rgba(11,11,13,0.98);
  box-shadow: 0 4px 40px rgba(0,0,0,0.6), 0 0 60px rgba(0,168,255,0.05);
  border-bottom-color: rgba(0,168,255,0.2);
}

/* Schedule Call Button */
.btn-schedule-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #c0392b;
  color: #fff !important;
  padding: 11px 22px;
  border-radius: 6px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(192,57,43,0.4);
  border: none;
  text-decoration: none;
}

.btn-schedule-call:hover {
  background: #e74c3c;
  transform: translateY(-1px);
  box-shadow: 0 6px 30px rgba(231,76,60,0.5);
  color: #fff !important;
}

.btn-schedule-call i { font-size: 12px; }

/* ── Logo Image Handling ──────────────────────────────────────── */
.logo-img {
  height: 60px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 10px rgba(0,168,255,0.3));
  transition: filter var(--transition);
}

.logo-img:hover {
  filter: drop-shadow(0 0 18px rgba(0,168,255,0.6));
}

.logo-has-img {
  display: block;
}

.footer-logo-img {
  height: 80px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

/* Adjust hero offset for two-layer header */
.hero-section { padding-top: 120px; }
.ticker-bar { margin-top: 80px; }

/* First ticker (top of page) has no margin */
body > .ticker-bar:first-child { margin-top: 0; }

/* ── Section Title Variants ──────────────────────────────────── */
.section-title-king {
  font-family: var(--font-cond);
  font-size: clamp(32px, 5vw, 62px);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-subtitle-gold {
  font-family: var(--font-cond);
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0;
  text-shadow: 0 0 20px rgba(212,175,55,0.4);
}

.crown-icon {
  color: var(--gold);
  filter: drop-shadow(0 0 10px rgba(212,175,55,0.6));
  font-size: 0.85em;
}

.gold-text {
  color: var(--gold) !important;
  text-shadow: 0 0 20px rgba(212,175,55,0.5);
}

.center-header {
  text-align: center;
  margin-bottom: 50px;
}

/* ── Gold Ticker Variant ─────────────────────────────────────── */
.ticker-gold {
  background: var(--gold) !important;
  border-top: 1px solid rgba(212,175,55,0.5);
  border-bottom: 1px solid rgba(212,175,55,0.5);
}

.ticker-track-gold {
  color: #0B0B0D !important;
  font-weight: 800 !important;
  animation: ticker 22s linear infinite !important;
}

.ticker-sep {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
}

.ticker-logo {
  height: 20px;
  width: auto;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}

/* ── Portfolio — iMac Desktop Mockup ────────────────────────── */
.portfolio-section {
  padding: 100px 0;
  background: #0a0a0f;
}

.portfolio-grid-king {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.port-card {
  position: relative;
  background: var(--charcoal-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid rgba(0,168,255,0.08);
  cursor: default;
}

.port-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,168,255,0.3);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 40px rgba(0,168,255,0.08);
}

/* iMac shape container */
.port-imac {
  position: relative;
  padding: 24px 20px 0;
  background: linear-gradient(180deg, #1a1a2e 0%, #12121a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* iMac screen (the monitor body) */
.port-imac-screen {
  width: 100%;
  background: #000;
  border-radius: 8px 8px 4px 4px;
  border: 3px solid #2a2a3a;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 8px 30px rgba(0,0,0,0.8),
    inset 0 0 0 1px rgba(255,255,255,0.03);
  position: relative;
  aspect-ratio: 16 / 10;
}

.port-imac-screen::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 20px;
  background: linear-gradient(180deg, #1e1e2e 0%, #0a0a12 100%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 8px;
}

.port-imac-screen::after {
  content: '● ● ●';
  position: absolute;
  top: 4px;
  left: 8px;
  font-size: 7px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 2px;
  z-index: 3;
}

.port-screen-inner {
  position: absolute;
  top: 20px; left: 0; right: 0; bottom: 0;
  overflow: hidden;
}

.port-screen-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* iMac stand — neck */
.port-imac-stand-neck {
  width: 24px;
  height: 36px;
  background: linear-gradient(180deg, #2a2a3a, #1a1a26);
  margin: 0 auto;
  border-radius: 0 0 2px 2px;
}

/* iMac stand — base */
.port-imac-stand-base {
  width: 120px;
  height: 10px;
  background: linear-gradient(180deg, #2a2a3a, #1a1a26);
  border-radius: 0 0 8px 8px;
  margin: 0 auto 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

/* Procedural mock UI inside screen */
.port-mock-ui {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  height: 100%;
  background: linear-gradient(135deg, #0d1117 0%, #0a1628 100%);
}

.pm-nav {
  height: 10px;
  background: linear-gradient(90deg, rgba(0,168,255,0.3), rgba(0,168,255,0.1));
  border-radius: 3px;
}

.pm-hero {
  height: 40px;
  background: linear-gradient(135deg, rgba(0,168,255,0.2), rgba(10,26,58,0.8));
  border-radius: 4px;
  flex-shrink: 0;
}

.pm-row {
  display: flex;
  gap: 6px;
  flex: 1;
}

.pm-block {
  background: rgba(0,168,255,0.07);
  border: 1px solid rgba(0,168,255,0.1);
  border-radius: 3px;
  flex: 1;
}

.pm-block.w60 { flex: 0 0 60%; }
.pm-block.w30 { flex: 0 0 30%; }
.pm-block.w40 { flex: 0 0 40%; }
.pm-block.w50 { flex: 0 0 50%; }

.pm-btn-row {
  display: flex;
  padding: 4px 0;
}

.pm-btn {
  width: 50px;
  height: 12px;
  background: rgba(0,168,255,0.4);
  border-radius: 6px;
}

/* Portfolio info below iMac */
.port-info {
  padding: 20px 22px 24px;
}

.port-cat {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-glow);
  background: rgba(0,168,255,0.08);
  border: 1px solid rgba(0,168,255,0.2);
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.port-info h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.port-info p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}

.port-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 10%, rgba(0,168,255,0.04) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}

.port-card:hover .port-glow { opacity: 1; }

/* ── Testimonial Carousel ────────────────────────────────────── */
.testimonials-section {
  padding: 80px 0 100px;
  background: var(--charcoal);
}

.testi-count-label {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dim);
  margin-top: 6px;
  letter-spacing: 0.5px;
}

.tcarousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.tcarousel-btn {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: #0B0B0D;
  border: none;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(212,175,55,0.4);
  z-index: 2;
  flex-shrink: 0;
}

.tcarousel-btn:hover:not(:disabled) {
  background: #e6c840;
  transform: scale(1.08);
  box-shadow: 0 6px 30px rgba(212,175,55,0.6);
}

.tcarousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

.tcarousel-viewport {
  flex: 1;
  overflow: hidden;
}

.tcarousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Testimonial card */
.tcard {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 280px;
  background: var(--charcoal-3);
  border: 1px solid rgba(0,168,255,0.1);
  border-radius: var(--radius);
  padding: 26px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.tcard:hover {
  border-color: rgba(0,168,255,0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 30px rgba(0,168,255,0.08);
}

.tcard-platform {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.tcard-plat-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.tcard-plat-icon.facebook {
  background: rgba(24,119,242,0.15);
  color: #1877F2;
  border: 1px solid rgba(24,119,242,0.3);
}

.tcard-plat-icon.google {
  background: rgba(234,67,53,0.15);
  color: #EA4335;
  border: 1px solid rgba(234,67,53,0.3);
}

.tcard-rating {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 1px;
  flex: 1;
}

.tcard-plat-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
}

.tcard-review {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
  flex: 1;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.tcard-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-glow), var(--blue-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cond);
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(0,168,255,0.3);
}

.tcard-author strong {
  display: block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
}

.tcard-author span {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── About King Layout ───────────────────────────────────────── */
.about-section {
  padding: 100px 0;
  background: var(--charcoal-2);
}

.about-king-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 70px;
  align-items: center;
}

.about-king-content { }

.about-king-title {
  font-family: var(--font-cond);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.05;
  margin-bottom: 28px;
}

.about-king-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.about-king-body p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.85;
}

.about-king-body strong { color: var(--white); }

.about-promise {
  font-size: 16px !important;
  font-style: italic;
  color: var(--gold) !important;
}

/* Signature block */
.about-king-sig-block {
  padding: 18px 0;
  border-top: 1px solid rgba(0,168,255,0.1);
  border-bottom: 1px solid rgba(0,168,255,0.1);
  margin-bottom: 28px;
}

.about-sig-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-mini-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #b8960a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cond);
  font-size: 18px;
  font-weight: 900;
  color: #0B0B0D;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(212,175,55,0.4);
}

.about-sig-name {
  font-family: 'Rajdhani', var(--font-cond);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

.about-sig-title {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* Photo frame (right side) */
.about-king-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.about-photo-frame {
  width: 100%;
  max-width: 380px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.about-photo-inner {
  background: linear-gradient(135deg, var(--blue-royal) 0%, var(--charcoal-4) 50%, #1a1a2e 100%);
  border: 1px solid rgba(0,168,255,0.2);
  border-radius: var(--radius-lg);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.about-photo-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(0,168,255,0.12) 0%, transparent 65%);
}

.about-photo-icon {
  font-size: 90px;
  color: rgba(0,168,255,0.18);
  position: relative;
  z-index: 1;
}

.about-photo-name {
  font-family: var(--font-cond);
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

.about-photo-role {
  font-family: var(--font-head);
  font-size: 12px;
  color: var(--blue-glow);
  letter-spacing: 1px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.about-photo-glow {
  position: absolute;
  inset: -2px;
  border: 2px solid rgba(0,168,255,0.25);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 40px rgba(0,168,255,0.12);
  pointer-events: none;
}

/* Money-back guarantee badge */
.about-king-badge {
  position: absolute;
  top: 16px;
  right: -24px;
  z-index: 4;
}

.akb-inner {
  background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.08));
  border: 2px solid var(--gold);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 0 30px rgba(212,175,55,0.35);
  padding: 10px;
  text-align: center;
}

.akb-inner i { color: var(--gold); font-size: 18px; }

.akb-inner strong {
  font-family: var(--font-cond);
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.akb-inner span {
  font-family: var(--font-head);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.2;
}

.akb-ring {
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 50%;
  animation: ring-pulse 3s ease infinite;
}

/* ── Footer — 4-Column King Layout ──────────────────────────── */
.site-footer {
  background: #0B0B0D;
  border-top: 1px solid rgba(0,168,255,0.1);
}

.footer-main {
  padding: 60px 0;
}

.footer-inner-king {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-col { }

.footer-col-title {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

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

.footer-col-links li,
.footer-col-links a {
  font-size: 14px;
  color: rgba(199,209,218,0.65);
  transition: color var(--transition);
}

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

.footer-col-links span {
  font-size: 13px;
  color: rgba(199,209,218,0.5);
  line-height: 1.6;
}

/* Center column */
.footer-col-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer-logo-link {
  display: block;
}

.footer-tagline {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(199,209,218,0.6);
  text-align: center;
  line-height: 1.6;
  max-width: 220px;
}

.footer-cta-btn {
  margin-top: 4px;
  width: auto;
}

/* Social icons in footer */
.footer-social-icons {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.fsi {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--white);
  transition: all var(--transition);
  text-decoration: none;
}

.fsi.fb { background: rgba(24,119,242,0.15); border: 1px solid rgba(24,119,242,0.2); }
.fsi.ig { background: rgba(225,48,108,0.15); border: 1px solid rgba(225,48,108,0.2); }
.fsi.gg { background: rgba(234,67,53,0.15);  border: 1px solid rgba(234,67,53,0.2); }
.fsi.yt { background: rgba(255,0,0,0.15);    border: 1px solid rgba(255,0,0,0.2); }

.fsi.fb:hover { background: #1877F2; border-color: #1877F2; transform: translateY(-2px); }
.fsi.ig:hover { background: #E1306C; border-color: #E1306C; transform: translateY(-2px); }
.fsi.gg:hover { background: #EA4335; border-color: #EA4335; transform: translateY(-2px); }
.fsi.yt:hover { background: #FF0000; border-color: #FF0000; transform: translateY(-2px); }

.footer-hours {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: rgba(199,209,218,0.7);
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Legal bar */
.footer-legal-bar {
  background: rgba(0,0,0,0.4);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 18px 0;
}

.footer-legal-bar p {
  font-size: 12px;
  color: rgba(199,209,218,0.4);
  text-align: center;
  line-height: 1.6;
}

/* Red bottom strip */
.footer-bottom-strip {
  background: #c0392b;
  padding: 12px 0;
}

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

.footer-bottom-strip p,
.footer-bottom-inner p {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.3px;
}

.footer-bottom-strip a { color: #fff; text-decoration: underline; }
.footer-bottom-strip a:hover { color: rgba(255,255,255,0.8); }

.footer-admin-link {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.5) !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color var(--transition);
}

.footer-admin-link:hover { color: rgba(255,255,255,0.9) !important; }

/* ── Responsive Updates (v2) ─────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-right { width: 360px; }
  .portfolio-grid-king { grid-template-columns: repeat(2, 1fr); }
  .footer-inner-king { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-col-center { grid-column: span 2; }
  .about-king-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-king-badge { right: 10px; }
  .tcard { flex: 0 0 calc(50% - 10px); }
}

@media (max-width: 900px) {
  .portfolio-grid-king { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 768px) {
  .header-top-strip { display: none; }
  .hero-section { padding-top: 100px; }
  .hero-content { flex-direction: column; gap: 40px; }
  .hero-left { max-width: 100%; text-align: center; }
  .hero-left .hero-checklist { align-items: center; }
  .hero-left .hero-actions { justify-content: center; }
  .hero-left .hero-social-proof { display: none; }
  .hero-right { width: 100%; max-width: 340px; }
  .hero-guarantee-badge { top: -10px; right: 10px; }
  .hgb-inner { width: 80px; height: 80px; }
  .hgb-text strong { font-size: 14px; }

  .portfolio-grid-king { grid-template-columns: 1fr; }

  .tcard { flex: 0 0 calc(100% - 0px); }
  .tcarousel-btn { width: 40px; height: 40px; font-size: 14px; }

  .footer-inner-king { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-col-center { grid-column: span 2; }

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

  .btn-schedule-call { font-size: 11px; padding: 9px 16px; }

  .about-king-grid { grid-template-columns: 1fr; }
  .about-king-badge { position: static; margin: 0 auto; }
  .about-king-title { font-size: 34px; }
}

@media (max-width: 480px) {
  .footer-inner-king { grid-template-columns: 1fr; }
  .footer-col-center { grid-column: span 1; }
  .portfolio-grid-king { grid-template-columns: 1fr; }
  .section-title-king { font-size: 28px; }
  .logo-img { height: 48px; }
}

/* ═══════════════════════════════════════════════════════════════════
   HERO KING-CONTRACTOR STYLE — v2.1
   ═══════════════════════════════════════════════════════════════════ */

/* Hero section dynamic background */
.hero-section {
  background: var(--dyn-hero-from, #0B0B0D) !important;
  background-image: radial-gradient(ellipse at 30% 50%, rgba(0,168,255,0.08) 0%, transparent 55%),
                    radial-gradient(ellipse at 75% 30%, rgba(10,26,58,0.7) 0%, transparent 60%) !important;
}

/* King-style main hero title */
.hero-title-king {
  font-family: var(--font-head);
  font-size: clamp(36px, 5.5vw, 78px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.5px;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0 0 14px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

/* Gold highlighted industry word inside title */
.hero-gold-word {
  color: #D4AF37;
  text-shadow: 0 0 30px rgba(212,175,55,0.55), 0 2px 12px rgba(212,175,55,0.3);
  display: inline-block;
}

/* "Recognized and featured by" subtitle */
.hero-recognized {
  font-family: var(--font-head);
  font-size: clamp(12px, 1.4vw, 15px);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(199,209,218,0.55);
  margin: 0 0 28px;
}

.hero-recognized strong {
  color: rgba(199,209,218,0.85);
  letter-spacing: 3px;
}

/* King-style checklist */
.hero-checklist-king {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-checklist-king li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-checklist-king li span:last-child {
  font-family: var(--font-head);
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
}

/* Icon badge for checklist items */
.hck-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0,168,255,0.12);
  border: 1.5px solid rgba(0,168,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #00A8FF;
  font-size: 15px;
  box-shadow: 0 0 14px rgba(0,168,255,0.18);
  transition: all 0.25s ease;
}

.hck-icon:hover,
.hero-checklist-king li:hover .hck-icon {
  background: rgba(0,168,255,0.22);
  border-color: rgba(0,168,255,0.6);
  box-shadow: 0 0 22px rgba(0,168,255,0.3);
  transform: scale(1.05);
}

/* Guarantee icon — gold variant */
.guarantee-icon {
  background: rgba(212,175,55,0.12);
  border-color: rgba(212,175,55,0.4);
  color: #D4AF37;
  box-shadow: 0 0 14px rgba(212,175,55,0.18);
}

.guarantee-icon:hover,
.hero-checklist-king li:hover .guarantee-icon {
  background: rgba(212,175,55,0.22);
  border-color: rgba(212,175,55,0.65);
  box-shadow: 0 0 22px rgba(212,175,55,0.3);
}

/* Header top strip: LinkedIn icon — purple */
.hts-icon.li {
  background: #0A66C2 !important;
  border-color: #0A66C2 !important;
}

.hts-icon.li:hover {
  background: #0077b5 !important;
  border-color: #0077b5 !important;
  box-shadow: 0 4px 18px rgba(10,102,194,0.5) !important;
}

/* ═══════════════════════════════════════════════════════════════════
   DYNAMIC CSS VARIABLE OVERRIDES — wires --dyn-* to sections
   ═══════════════════════════════════════════════════════════════════ */

/* Main background */
body {
  background-color: var(--dyn-primary-bg, #0B0B0D) !important;
}

/* Header main bar */
.header-main-bar {
  background: var(--dyn-header-bg, rgba(11,11,13,0.92)) !important;
}

/* Header top strip */
.header-top-strip {
  background: var(--dyn-header-top-bg, #0B0B0D) !important;
}

/* Stats section */
.stats-section {
  background: var(--dyn-stats-bg, #0A1A3A) !important;
}

/* Services section */
.services-section {
  background: var(--dyn-section-alt, #111116) !important;
}

/* Footer main */
.footer-main {
  background: var(--dyn-footer-bg, #0B0B0D) !important;
}

/* Footer bottom red strip */
.footer-bottom-strip {
  background: var(--dyn-footer-strip, #c0392b) !important;
}

/* FAQ section */
.faq-section {
  background: var(--dyn-section-alt, #111116) !important;
}

/* Schedule Intro Call / CTA buttons */
.btn-schedule-call {
  background: var(--dyn-cta-btn, #c0392b) !important;
  border-color: var(--dyn-cta-btn, #c0392b) !important;
}

.btn-schedule-call:hover {
  filter: brightness(1.12);
  box-shadow: 0 6px 24px rgba(0,0,0,0.4) !important;
}

/* Primary body text */
body,
.nav-link,
.footer-col-links a,
.footer-hours {
  color: var(--dyn-text-primary, #C7D1DA);
}

/* Accent blue glow elements */
.service-icon-wrap i,
.stat-icon i,
.hck-icon {
  color: var(--dyn-accent-blue, #00A8FF);
}

/* Accent gold elements */
.hero-gold-word,
.gold-text,
.about-king-title .gold-text,
.section-subtitle-gold,
.hck-icon.guarantee-icon {
  color: var(--dyn-accent-gold, #D4AF37);
}

/* Compare / problem-solution section */
.compare-section {
  background: var(--dyn-primary-bg, #0B0B0D) !important;
}

/* Portfolio section */
.portfolio-section {
  background: var(--dyn-secondary-bg, #111116) !important;
}

/* Testimonials section */
.testimonials-section {
  background: var(--dyn-primary-bg, #0B0B0D) !important;
}

/* About section */
.about-section {
  background: var(--dyn-secondary-bg, #111116) !important;
}

/* Footer legal bar */
.footer-legal-bar {
  background: var(--dyn-footer-bg, #0B0B0D) !important;
  border-top-color: rgba(255,255,255,0.06) !important;
}

/* ═══════════════════════════════════════════════════════════════════
   HERO RESPONSIVE — King style
   ═══════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .hero-title-king {
    font-size: clamp(30px, 9vw, 48px);
    text-align: center;
  }
  .hero-recognized {
    text-align: center;
    font-size: 11px;
    letter-spacing: 1.5px;
  }
  .hero-checklist-king {
    align-items: flex-start;
    padding: 0 8px;
  }
  .hero-checklist-king li {
    gap: 10px;
  }
  .hck-icon {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
  .hero-checklist-king li span:last-child {
    font-size: 12px;
    letter-spacing: 1px;
  }
}

@media (max-width: 480px) {
  .hero-title-king {
    font-size: clamp(26px, 8vw, 38px);
  }
  .hero-recognized {
    font-size: 10px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   HEADER TOP STRIP — Circular social icons (King Contractor style)
   ═══════════════════════════════════════════════════════════════════ */

/* Make header top strip icons circular & slightly larger */
.hts-icon {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  font-size: 13px !important;
  border: 1.5px solid rgba(255,255,255,0.08) !important;
}

/* Tighten gap between icons */
.hts-social {
  gap: 6px !important;
}

/* Header top strip golden/dark background like reference */
.header-top-strip {
  background: #0a0a0c !important;
  border-bottom: 1px solid rgba(212,175,55,0.15) !important;
}

/* Phone number styling — gold tint */
.hts-phone {
  font-size: 13px !important;
  letter-spacing: 0.8px;
}

.hts-phone i {
  color: #D4AF37 !important;
}

.hts-phone a {
  color: var(--silver) !important;
}

.hts-phone a:hover {
  color: #D4AF37 !important;
}

/* SCHEDULE button — uppercase, red pill like reference */
.btn-schedule-call {
  font-family: var(--font-head) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  padding: 11px 20px !important;
  border-radius: 6px !important;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════════
   HEADER v2.2 — Gold top strip, phone only, bigger logo
   ═══════════════════════════════════════════════════════════════════ */

/* Gold/tan top strip — King Contractor reference */
.header-top-strip {
  background: linear-gradient(90deg, #c8a415 0%, #e8bc1a 40%, #c8a415 100%) !important;
  border-bottom: none !important;
  height: 38px !important;
}

.hts-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end !important;
  width: 100%;
}

.hts-empty { flex: 1; }

/* Phone on right — dark text on gold bg */
.hts-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #1a0f00 !important;
  letter-spacing: 0.6px;
}

.hts-phone i {
  color: #1a0f00 !important;
  font-size: 13px !important;
}

.hts-phone a {
  color: #1a0f00 !important;
  text-decoration: none;
  transition: color 0.2s;
}

.hts-phone a:hover { color: #3d2800 !important; }

/* Header main bar — sits below gold strip */
.header-main-bar {
  background: #0d0d0f !important;
  border-bottom: 2px solid rgba(212,175,55,0.2) !important;
}

/* ── Bigger Logo in Header ─────────────────────────────────── */
.logo-xl .logo-img {
  height: 80px !important;
  max-width: 220px !important;
  object-fit: contain;
}

.logo-xl .logo-emblem svg {
  width: 60px !important;
  height: 60px !important;
}

.logo-xl .logo-main {
  font-size: 28px !important;
  letter-spacing: 4px;
}

.logo-xl .logo-sub {
  font-size: 10px !important;
  letter-spacing: 3px;
}

/* ── Bigger Logo in Footer ─────────────────────────────────── */
.footer-logo-xl .footer-logo-img {
  height: 100px !important;
  max-width: 260px !important;
  object-fit: contain;
}

.footer-logo-xl .logo-emblem svg {
  width: 72px !important;
  height: 72px !important;
}

.footer-logo-xl .logo-main {
  font-size: 32px !important;
}

.footer-logo-xl .logo-sub {
  font-size: 11px !important;
}

/* Header inner — taller to accommodate big logo */
.header-inner {
  padding: 10px 0 !important;
  min-height: 80px;
}

/* ═══════════════════════════════════════════════════════════════════
   HERO v2.2 — Inline checklist + pill + device mockups
   ═══════════════════════════════════════════════════════════════════ */

/* Hero section — dark textured background like reference */
.hero-section {
  background: #0d0d0f !important;
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px !important;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Noise/grain texture overlay */
.hero-noise-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* Hero content sits above overlays */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-left {
  flex: 0 0 52%;
  max-width: 52%;
}

.hero-right {
  flex: 0 0 48%;
  max-width: 48%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero title */
.hero-title-king {
  font-size: clamp(36px, 5vw, 72px) !important;
  line-height: 1.0 !important;
  margin-bottom: 10px !important;
}

/* Recognized line */
.hero-recognized {
  margin-bottom: 22px !important;
}

/* ── Inline checklist row (3 across) ──────────────────────── */
.hero-checklist-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 12px;
}

.hck-item {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hck-icon {
  width: 34px !important;
  height: 34px !important;
  border-radius: 6px !important;
  background: rgba(0,168,255,0.12) !important;
  border: 1.5px solid rgba(0,168,255,0.3) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #00A8FF !important;
  font-size: 14px !important;
  box-shadow: 0 0 12px rgba(0,168,255,0.15) !important;
  transition: all 0.2s;
}

.hck-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
}

/* Guarantee row — full width below */
.hck-guarantee {
  margin-top: 0;
  margin-bottom: 24px;
}

.hck-guarantee .hck-label {
  font-size: 13px;
  color: #D4AF37;
  letter-spacing: 1.5px;
}

.guarantee-icon {
  background: rgba(212,175,55,0.12) !important;
  border-color: rgba(212,175,55,0.4) !important;
  color: #D4AF37 !important;
  box-shadow: 0 0 12px rgba(212,175,55,0.18) !important;
  border-radius: 50% !important;
}

/* ── Social Proof Pill ────────────────────────────────────── */
.hero-social-proof-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(30,30,36,0.85);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 10px 20px 10px 10px;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
  width: fit-content;
  max-width: 360px;
}

.hspp-avatars {
  display: flex;
  align-items: center;
}

.hspp-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2.5px solid #0d0d0f;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  margin-left: -12px;
  flex-shrink: 0;
}

.hspp-av:first-child { margin-left: 0; }

.hspp-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hspp-row1 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hspp-score {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.hspp-stars {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 1px;
}

.hspp-row2 {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(199,209,218,0.75);
}

/* ═══════════════════════════════════════════════════════════════════
   HERO DEVICE MOCKUPS — Laptop + Phone CSS
   ═══════════════════════════════════════════════════════════════════ */

.hero-device-stack {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 420px;
  margin: 0 auto;
}

/* ── Laptop ─────────────────────────────────────────────── */
.hero-laptop {
  position: absolute;
  top: 20px;
  left: 0;
  width: 88%;
  z-index: 3;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}

.laptop-screen {
  background: #1a1a2e;
  border-radius: 10px 10px 0 0;
  border: 3px solid #2a2a3e;
  border-bottom: none;
  padding: 6px;
  aspect-ratio: 16/10;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05),
              0 0 0 1px rgba(0,0,0,0.8);
  overflow: hidden;
}

.laptop-screen-inner {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
  background: #0f1a2e;
}

.laptop-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.laptop-hinge {
  height: 6px;
  background: linear-gradient(180deg, #1e1e2e 0%, #2d2d3d 100%);
  border-radius: 0 0 2px 2px;
  width: 100%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.laptop-base {
  height: 22px;
  background: linear-gradient(180deg, #2a2a3a 0%, #1a1a2a 100%);
  border-radius: 0 0 6px 6px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 4px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
}

.laptop-trackpad {
  width: 60px;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.08);
}

/* ── Phone ──────────────────────────────────────────────── */
.hero-phone {
  position: absolute;
  right: 0;
  bottom: 20px;
  width: 28%;
  z-index: 5;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.7));
}

.phone-frame {
  background: #1a1a2e;
  border-radius: 18px;
  border: 3px solid #2a2a3e;
  padding: 8px 4px;
  position: relative;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.8),
              inset 0 0 0 1px rgba(255,255,255,0.04);
  aspect-ratio: 9/18;
  overflow: hidden;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #0f1a2e;
}

.phone-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 5px;
  background: #0d0d0f;
  border-radius: 0 0 4px 4px;
  z-index: 10;
}

/* ── Gold seal badge ────────────────────────────────────── */
.hero-seal-badge {
  position: absolute;
  bottom: 10px;
  left: 12%;
  z-index: 6;
  width: 90px;
  height: 90px;
}

.hsb-ring {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #f9d668, #c8960a 60%, #7a5800);
  border: 3px solid rgba(255,220,80,0.5);
  box-shadow: 0 0 20px rgba(212,175,55,0.5), 0 4px 12px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  text-align: center;
  padding: 8px;
  animation: badge-spin-slow 12s linear infinite;
}

@keyframes badge-spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hsb-ring i {
  font-size: 18px;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
  animation: badge-spin-slow 12s linear infinite reverse;
}

.hsb-ring strong {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
  animation: badge-spin-slow 12s linear infinite reverse;
}

.hsb-ring span {
  font-family: var(--font-head);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.9);
  line-height: 1;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
  animation: badge-spin-slow 12s linear infinite reverse;
}

/* ── Device glow rings ──────────────────────────────────── */
.device-glow-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.device-glow-ring.r1 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0,168,255,0.08) 0%, transparent 70%);
  z-index: 1;
}

.device-glow-ring.r2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 5%;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════════
   HERO RESPONSIVE v2.2
   ═══════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero-device-stack { height: 340px; max-width: 420px; }
  .hero-laptop { width: 85%; }
  .hero-left { flex: 0 0 55%; max-width: 55%; }
  .hero-right { flex: 0 0 45%; max-width: 45%; }
}

@media (max-width: 768px) {
  .hero-section { padding: 90px 0 40px !important; min-height: auto; }
  .hero-content { flex-direction: column; gap: 36px; }
  .hero-left,
  .hero-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .hero-right { display: none; }
  .hero-title-king { font-size: clamp(28px, 9vw, 44px) !important; text-align: center; }
  .hero-recognized { text-align: center; }
  .hero-checklist-row { justify-content: center; }
  .hck-guarantee { justify-content: center; }
  .hero-social-proof-pill { margin: 0 auto; }
  .header-top-strip { display: none !important; }
  .logo-xl .logo-img { height: 60px !important; }
}

@media (max-width: 480px) {
  .hero-title-king { font-size: clamp(24px, 8vw, 36px) !important; }
  .hero-checklist-row { gap: 8px 10px; }
  .hck-label { font-size: 10px; letter-spacing: 0.8px; }
}

/* ── Ticker offset for taller header (gold strip 38px + main bar ~90px) ── */
.ticker-bar {
  margin-top: 0 !important;
}

/* Hero section top padding compensates for fixed header */
.hero-section {
  padding-top: 140px !important;
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 90px !important;
  }
}

/* ╔══════════════════════════════════════════════════════════════════╗
   ║   MASTER OVERRIDE v2.3 — King Contractor Header + Hero          ║
   ║   Pixel-accurate match to reference image                        ║
   ╚══════════════════════════════════════════════════════════════════╝ */

/* ── Reset old conflicting rules ──────────────────────────────────── */
.site-header, .header-top-strip, .header-main-bar,
.hts-inner, .hts-social, .hts-phone,
.hero-section, .hero-bg, .hero-content, .hero-left, .hero-right { all: unset; }

/* ══════════════════════════════════════════════════════════════════
   HEADER LAYOUT — fixed, full-width, two-row
   ══════════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

/* ── GOLD TOP STRIP ──────────────────────────────────────────────── */
.hdr-gold-strip {
  width: 100%;
  background: linear-gradient(90deg, #bf9a12 0%, #e8b918 35%, #f0c520 55%, #e8b918 75%, #bf9a12 100%);
  height: 44px;
  display: flex;
  align-items: center;
}

.hgs-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Social icons inside gold strip */
.hgs-social {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hgs-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
  background: rgba(0,0,0,0.25);
  border: 1.5px solid rgba(0,0,0,0.15);
}

.hgs-icon:hover { transform: scale(1.12); opacity: 0.9; }
.hgs-fb { background: rgba(24,119,242,0.9)  !important; }
.hgs-ig { background: rgba(225,48,108,0.9)  !important; }
.hgs-gg { background: rgba(234,67,53,0.9)   !important; }
.hgs-yt { background: rgba(255,0,0,0.85)    !important; }
.hgs-li { background: rgba(10,102,194,0.9)  !important; }

/* Phone — right side of gold strip */
.hgs-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0d0900;
  letter-spacing: 0.4px;
  text-decoration: none;
}

.hgs-phone i {
  font-size: 13px;
  color: #0d0900;
}

.hgs-phone a {
  color: #0d0900;
  text-decoration: none;
}

.hgs-phone a:hover { color: #2a1800; }

/* ── MAIN BAR — dark, logo + nav + CTA ──────────────────────────── */
.hdr-main-bar {
  width: 100%;
  background: #111113;
  border-bottom: 1.5px solid rgba(212,175,55,0.18);
}

.hdr-bar-inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 78px;
}

/* Logo */
.hdr-logo-link { text-decoration: none; flex-shrink: 0; display: flex; }
.hdr-logo { display: flex; align-items: center; gap: 12px; }
.hdr-logo .logo-img { object-fit: contain; display: block; }
.hdr-logo .logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.hdr-logo .logo-main {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  color: #00A8FF;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.hdr-logo .logo-sub {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  color: #C7D1DA;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Nav — centered */
.hdr-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hdr-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 2px;
}

.hdr-nav ul li a,
.hdr-nav ul li a.nav-link {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #C7D1DA;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  display: block;
  white-space: nowrap;
}

.hdr-nav ul li a:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
}

/* CTA button */
.hdr-cta-wrap { flex-shrink: 0; margin-left: 16px; }

.btn-schedule-call {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 11px 20px !important;
  background: #b83030 !important;
  color: #fff !important;
  font-family: 'Barlow', sans-serif !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  border: 1.5px solid rgba(255,255,255,0.15) !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
  box-shadow: 0 4px 16px rgba(184,48,48,0.35) !important;
  white-space: nowrap;
  cursor: pointer;
}

.btn-schedule-call:hover {
  background: #c93535 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 24px rgba(184,48,48,0.5) !important;
}

/* Mobile toggle */
.hdr-mobile-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 12px;
}

.hdr-mobile-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s;
}

/* ══════════════════════════════════════════════════════════════════
   HERO SECTION — kc-hero — King Contractor exact match
   ══════════════════════════════════════════════════════════════════ */
.kc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 122px; /* 44px gold strip + 78px main bar */
  padding-bottom: 60px;
  background: #131313;
}

/* Dark textured background layers */
.kc-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.kc-noise {
  position: absolute;
  inset: 0;
  /* subtle noise/grain via repeating SVG pattern */
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiDAAAAUVBMVEWFhYWDg4N3d3dtbW17e3t1dXWBgYGHh4t5eXlzc3OLi4ubm5uVlZWPj4+NjY19fX2JiYl/f39ra2uRkZGZmZlpaWmXl5dvb29xcXGTk5NnZ2c8TV1mAAAAG3RSTlNAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAvEOwtAAAFVklEQVR4XpWWB67c2BUFb3g557T/hRo9/WUMZHlgr4Bg8Z4qQgQJlHI4A8SzFVrapvmTF9O7dmYRFZ60YiBhJRCgh1FYhiLAmdvX0CzTOpNE77ME0Zty/nWWzchDtiqrmQDeuv3powQ5ta2eN0FY0InkqDD73lT9c9lEzwUNqgFHs9VQce3TVClFCQrSTfOiYkVJQBmpbq2L6iZavPnAPcoU0dSw0SUTqz/GtrGuXfbyyBniKykOWQWGqwwma7ikVKDHBLAXmebsvSL/2Ygfp9L4l3MirzSYdcsTj8sMBH3fxdSqxMkNiJ5fL7baxHMuUiLM0jMvJycNhVyDwwMtbkwQGPWcxYebcEKE8wQ5b2J7eqiMSKhOVoCtPLDlGV1WcQCkMHJHmHKdQkO6ZHAU9hSFBwlllM7B2n6Sl28mJPRCMRHG66ROHvpGfCnUWJJJFuvB55FaYk1hBPrS+nBBiVoAjf+3j5gDXF+jcONGPMR2X4Z0m+0HZe1mR");
  opacity: 0.08;
}

.kc-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.55) 100%);
}

/* Hero inner layout */
.kc-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── LEFT COLUMN ──────────────────────────────────────────────── */
.kc-left {
  flex: 0 0 50%;
  max-width: 50%;
}

/* Main headline */
.kc-title {
  font-family: 'Barlow', 'Barlow Condensed', sans-serif;
  font-size: clamp(38px, 4.8vw, 70px);
  font-weight: 900;
  line-height: 1.0;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin: 0 0 12px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.7);
}

/* Gold word */
.kc-gold {
  color: #e8b918;
  text-shadow: 0 0 24px rgba(232,185,24,0.5), 0 2px 8px rgba(0,0,0,0.4);
}

/* Recognized line */
.kc-recognized {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(199,209,218,0.65);
  margin: 0 0 22px;
}

.kc-feat-brand {
  color: rgba(255,255,255,0.88);
  letter-spacing: 2px;
}

/* Inline checks row */
.kc-checks-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 10px;
}

.kc-check {
  display: flex;
  align-items: center;
  gap: 8px;
}

.kc-check-icon {
  width: 32px;
  height: 32px;
  border-radius: 5px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #e8b918;
  flex-shrink: 0;
}

.kc-icon-gold {
  background: rgba(232,185,24,0.1) !important;
  border-color: rgba(232,185,24,0.3) !important;
  color: #e8b918 !important;
  border-radius: 50% !important;
}

.kc-check-txt {
  font-family: 'Barlow', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
}

.kc-txt-gold {
  color: #e8b918 !important;
  font-size: 12.5px !important;
}

.kc-guarantee-row {
  margin-top: 4px;
  margin-bottom: 26px;
}

/* Social proof pill */
.kc-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(25,25,30,0.88);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 60px;
  padding: 10px 22px 10px 10px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
}

.kc-pill-avatars {
  display: flex;
  align-items: center;
}

.kc-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2.5px solid #131313;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  margin-left: -14px;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.kc-av:first-child { margin-left: 0; }

.kc-pill-text { display: flex; flex-direction: column; gap: 1px; }

.kc-pill-top {
  display: flex;
  align-items: center;
  gap: 6px;
}

.kc-pill-top strong {
  font-family: 'Barlow', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.kc-stars {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1;
}

.kc-pill-bot {
  font-family: 'Barlow', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(199,209,218,0.6);
}

/* ── RIGHT COLUMN — Devices ───────────────────────────────────── */
.kc-right {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kc-devices {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 400px;
}

/* Laptop */
.kc-laptop {
  position: absolute;
  left: 0;
  top: 0;
  width: 80%;
  z-index: 3;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.7));
  transform: perspective(600px) rotateY(-4deg);
}

.kc-laptop-lid {
  background: #1c1c28;
  border-radius: 10px 10px 0 0;
  border: 3px solid #2e2e3e;
  border-bottom: none;
  padding: 8px;
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.kc-laptop-screen {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  background: #0f172a;
}

.kc-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.kc-laptop-camera {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}

.kc-laptop-hinge {
  height: 5px;
  background: linear-gradient(180deg, #222232, #303040);
  width: 100%;
}

.kc-laptop-deck {
  height: 22px;
  background: linear-gradient(180deg, #2c2c3c 0%, #1a1a26 100%);
  border-radius: 0 0 6px 6px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 3px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
}

.kc-laptop-pad {
  width: 55px;
  height: 5px;
  background: rgba(255,255,255,0.04);
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.07);
}

/* Phone */
.kc-phone {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 26%;
  z-index: 5;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,0.7));
}

.kc-phone-body {
  background: #1c1c28;
  border-radius: 20px;
  border: 3px solid #2e2e3e;
  aspect-ratio: 9/19.5;
  padding: 10px 4px 6px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.8);
}

.kc-phone-notch {
  position: absolute;
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 28%;
  height: 5px;
  background: #0d0d0f;
  border-radius: 0 0 5px 5px;
  z-index: 2;
}

.kc-phone-display {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #0f172a;
}

/* Gold seal badge — upper right */
.kc-seal {
  position: absolute;
  z-index: 7;
  width: 86px;
  height: 86px;
}

.kc-seal-ur {
  top: -10px;
  right: 6%;
}

.kc-seal-inner {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #7a5600, #f0c040 20%, #ffe066 50%, #f0c040 80%, #7a5600 100%);
  border: 2px solid rgba(255,220,80,0.4);
  box-shadow: 0 0 22px rgba(212,175,55,0.55), 0 4px 14px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  gap: 0;
}

.kc-seal-inner i {
  font-size: 20px;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  line-height: 1;
  margin-bottom: 2px;
}

.kc-seal-inner strong {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.kc-seal-inner span {
  font-family: 'Barlow', sans-serif;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
  line-height: 1.2;
  text-transform: uppercase;
}

/* Testimonial card — bottom right */
.kc-testi-card {
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 52%;
  background: rgba(15,15,20,0.88);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px 14px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  z-index: 6;
}

.kc-tc-stars {
  color: #f59e0b;
  font-size: 11px;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.kc-tc-quote {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
  font-style: italic;
  margin: 0 0 8px;
}

.kc-tc-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.kc-tc-av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00A8FF, #0A4FD6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
}

.kc-tc-author strong {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1.2;
}

.kc-tc-author span {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  color: rgba(199,209,218,0.55);
  display: block;
}

/* Glow behind devices */
.kc-dev-glow {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,168,255,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ══════════════════════════════════════════════════════════════════
   SECTION OFFSET — all sections push down past fixed header
   ══════════════════════════════════════════════════════════════════ */
.ticker-bar {
  margin-top: 0 !important;
}

/* Stats and all other sections do NOT need offset since kc-hero fills full screen */

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE OVERRIDES v2.3
   ══════════════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .kc-title { font-size: clamp(30px, 4.5vw, 52px); }
  .kc-laptop { width: 82%; }
  .kc-devices { height: 360px; }
}

@media (max-width: 900px) {
  .hdr-bar-inner { height: 64px; }
  .kc-hero { padding-top: 108px; }
  .kc-hero-inner { gap: 28px; }
  .kc-left { flex: 0 0 55%; max-width: 55%; }
  .kc-right { flex: 0 0 45%; max-width: 45%; }
  .kc-devices { height: 320px; max-width: 380px; }
  .kc-testi-card { display: none; }
}

@media (max-width: 768px) {
  .hdr-gold-strip { height: 0 !important; overflow: hidden !important; }
  .hdr-bar-inner { height: 64px; }
  .kc-hero { padding-top: 64px; min-height: auto; padding-bottom: 40px; }
  .kc-hero-inner { flex-direction: column; gap: 32px; }
  .kc-left, .kc-right { flex: 0 0 100%; max-width: 100%; }
  .kc-right { display: none; }
  .kc-title { font-size: clamp(28px, 8vw, 44px); text-align: center; }
  .kc-recognized { text-align: center; }
  .kc-checks-row { justify-content: center; }
  .kc-guarantee-row { justify-content: center; }
  .kc-pill { margin: 0 auto; }
  .hdr-nav { display: none; }
  .hdr-mobile-btn { display: flex !important; }
}

@media (max-width: 480px) {
  .kc-title { font-size: clamp(24px, 7.5vw, 36px); }
  .kc-checks-row { gap: 6px 12px; }
  .kc-check-txt { font-size: 10px; letter-spacing: 0.8px; }
}

/* ═══════════════════════════════════════════════════════════════
   v2.5 CHANGES — Stats black, HVAC blue, icons blue, slider, footer
   ═══════════════════════════════════════════════════════════════ */

/* 1. Stats section — BLACK background, numbers #00A8FF */
.stats-section,
body .stats-section,
section.stats-section {
  background: #000000 !important;
  background-image: none !important;
  background-color: #000000 !important;
  border-top: 1px solid rgba(0,168,255,0.2) !important;
  border-bottom: 1px solid rgba(0,168,255,0.2) !important;
}
.stats-section::before {
  background: none !important;
  display: none !important;
}
.stat-value,
body .stat-value,
.stats-section .stat-value {
  color: #00A8FF !important;
  text-shadow: none !important;
}
.stat-label {
  color: rgba(199,209,218,0.7) !important;
}
.stat-icon i,
.stats-section .stat-icon i {
  color: #00A8FF !important;
  filter: none !important;
}

/* 2. Hero title — HVAC in #00A8FF, no glow */
.kc-blue {
  color: #00A8FF !important;
  text-shadow: none !important;
}
/* Smaller subtitle after headline */
.kc-title-small {
  font-size: 0.52em;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(199,209,218,0.75);
  display: block;
  text-transform: none;
  margin-top: 4px;
}

/* 3. Tagline line (replaces Recognized) */
.kc-tagline-main {
  font-size: 15px !important;
  letter-spacing: 2px !important;
  color: #00A8FF !important;
  text-transform: uppercase !important;
}

/* 4. Check icons — silver background, #00A8FF icon + text */
.kc-icon-blue {
  background: rgba(220,225,235,0.15) !important;
  border: 1px solid rgba(220,225,235,0.25) !important;
  color: #00A8FF !important;
}
.kc-icon-blue-round {
  background: rgba(220,225,235,0.15) !important;
  border: 1px solid rgba(220,225,235,0.25) !important;
  color: #00A8FF !important;
  border-radius: 50% !important;
}
.kc-txt-blue {
  color: #00A8FF !important;
}

/* 5. Clients Logo Slider */
.clients-slider-section {
  background: #000000;
  padding: 36px 0;
  border-top: 1px solid rgba(0,168,255,0.1);
  border-bottom: 1px solid rgba(0,168,255,0.1);
  overflow: hidden;
}
.clients-slider-label {
  text-align: center;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(199,209,218,0.4);
  margin-bottom: 24px;
}
.clients-slider-track-wrap {
  overflow: hidden;
  position: relative;
}
.clients-slider-track-wrap::before,
.clients-slider-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.clients-slider-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, #000 0%, transparent 100%);
}
.clients-slider-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, #000 0%, transparent 100%);
}
.clients-slider-track {
  display: flex;
  gap: 0;
  animation: clientsScroll 28s linear infinite;
  width: max-content;
}
.clients-slider-track:hover {
  animation-play-state: paused;
}
@keyframes clientsScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  border-right: 1px solid rgba(0,168,255,0.12);
  min-width: 200px;
  flex-shrink: 0;
}
.cli-text {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(199,209,218,0.35);
  white-space: nowrap;
  transition: color 0.3s;
}
.client-logo-item:hover .cli-text {
  color: #00A8FF;
}

/* 6. Footer bottom strip — #00A8FF background, BLACK text */
.footer-bottom-blue {
  background: #00A8FF !important;
}
.footer-bottom-blue p,
.footer-bottom-blue .footer-bottom-inner p {
  color: #000000 !important;
  font-weight: 700 !important;
}
.footer-bottom-blue a {
  color: #000000 !important;
  font-weight: 800 !important;
}
.footer-bottom-blue a:hover {
  color: rgba(0,0,0,0.7) !important;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.fbs-left p { margin: 0; }
.fbs-right {
  display: flex;
  align-items: center;
}
.fbs-sig {
  height: 48px;
  width: auto;
  filter: brightness(0);
  opacity: 0.85;
}

/* 7. About section — real photo */
.about-photo-real {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  overflow: hidden;
  border-radius: 16px;
}
.about-real-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
  display: block;
}

/* 8. Footer bottom strip responsive */
@media (max-width: 600px) {
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .fbs-sig { height: 36px; }
  .clients-slider-label { font-size: 10px; }
}

/* ═══════════════════════════════════════════════════════════════
   v2.6 GLOBAL OVERRIDES — Full brand refresh
   • All yellow/gold/red → #00A8FF
   • All glow text-shadows → none
   • Pure black backgrounds where specified
   • FAQ / Compare / Footer / Ticker cleanup
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. GLOBAL: Kill all glow text-shadows ───────────────────── */
*, *::before, *::after {
  text-shadow: none !important;
}
/* Re-allow subtle box-shadows (needed for cards/buttons) */
.service-card, .tcard, .port-card, .cta-form-card,
.about-king-badge, .kc-testi-card, .kc-seal,
.btn-schedule-call, .btn-primary, .btn-form-submit,
.faq-item.open .faq-icon {
  text-shadow: none !important;
}

/* ── 2. GLOBAL: Replace all gold/yellow/red with #00A8FF ─────── */
:root {
  --gold: #00A8FF !important;
}

/* Gold text everywhere → #00A8FF */
.gold-text,
.about-king-title .gold-text,
.section-subtitle-gold,
.hck-icon.guarantee-icon,
.hero-gold-word,
.kc-stars,
.tcard-rating,
.crown-icon,
.ticker-dot {
  color: #00A8FF !important;
  text-shadow: none !important;
  filter: none !important;
}

/* Crown icon no glow */
.crown-icon {
  filter: none !important;
}

/* Ticker crown icons → #00A8FF */
.ticker-bar i.fa-crown,
.ticker-sep i.fa-crown {
  color: #00A8FF !important;
}

/* Gold ticker strip → black bg with white text */
.ticker-gold,
div.ticker-bar.ticker-gold {
  background: #000000 !important;
  border-top: 1px solid rgba(0,168,255,0.25) !important;
  border-bottom: 1px solid rgba(0,168,255,0.25) !important;
}
.ticker-track-gold {
  color: #ffffff !important;
  font-weight: 700 !important;
}

/* Top ticker also black */
.ticker-bar:first-of-type {
  background: #000000 !important;
}

/* ── 3. HERO SECTION — Pure black bg ────────────────────────── */
.kc-hero,
.kc-hero-bg {
  background: #000000 !important;
  background-image: none !important;
}
.kc-noise,
.kc-vignette,
.kc-dev-glow {
  display: none !important;
}

/* Hero numbers / highlighted numbers */
.kc-pill-top strong,
.kc-pill-bot,
.kc-tc-stars,
.kc-stars {
  color: #00A8FF !important;
}

/* Hero tagline supporting text slightly smaller */
.kc-recognized {
  font-size: clamp(11px, 1.4vw, 15px) !important;
}

/* ── 4. HEADER top strip → black, #00A8FF border ────────────── */
.hdr-gold-strip {
  background: #000000 !important;
  border-bottom: 1px solid rgba(0,168,255,0.25) !important;
}
.hdr-gold-strip .hgs-phone a,
.hdr-gold-strip .hgs-phone i {
  color: #00A8FF !important;
}

/* Schedule call button → #00A8FF */
.btn-schedule-call {
  background: #00A8FF !important;
  color: #000000 !important;
  border-color: #00A8FF !important;
}
.btn-schedule-call:hover {
  background: #0090dd !important;
  color: #000000 !important;
}

/* ── 5. STATS SECTION ───────────────────────────────────────── */
.stats-section,
body .stats-section,
section.stats-section {
  background: #000000 !important;
  background-image: none !important;
  background-color: #000000 !important;
}
.stats-section::before {
  display: none !important;
}
.stat-value,
.stats-section .stat-value {
  color: #00A8FF !important;
  text-shadow: none !important;
}
.stat-icon i,
.stats-section .stat-icon i {
  color: #00A8FF !important;
  filter: none !important;
}
.stat-label {
  color: rgba(255,255,255,0.75) !important;
}

/* ── 6. CLIENTS SLIDER SECTION — #00A8FF bg, black text ─────── */
.clients-slider-section {
  background: #00A8FF !important;
  border-top: none !important;
  border-bottom: none !important;
  padding: 0 !important;
}
.clients-slider-label {
  color: #000000 !important;
  font-weight: 800 !important;
  padding: 16px 0 4px !important;
  display: none !important;
}
.client-logo-item {
  background: transparent !important;
  border: none !important;
}
.cli-text {
  color: #000000 !important;
  font-weight: 800 !important;
  font-size: clamp(13px, 1.4vw, 16px) !important;
}
.cli-sep {
  color: #000000 !important;
  opacity: 0.5 !important;
}

/* ── 7. PORTFOLIO section ────────────────────────────────────── */
.section-subtitle-gold {
  color: #00A8FF !important;
}
.port-cat {
  color: #00A8FF !important;
  border-color: rgba(0,168,255,0.3) !important;
  background: rgba(0,168,255,0.08) !important;
}
.port-glow { display: none !important; }

/* Portfolio logo badge */
.port-logo-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 6px 12px;
  background: rgba(0,168,255,0.08);
  border: 1px solid rgba(0,168,255,0.2);
  border-radius: 6px;
  width: fit-content;
}
.port-logo-badge img {
  height: 22px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.port-logo-badge span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #00A8FF;
}

/* ── 8. COMPARE SECTION ──────────────────────────────────────── */
.compare-section { background: #000000 !important; }

/* Remove VS badge */
.compare-vs,
.vs-badge {
  display: none !important;
}

/* Equal width equal height cards */
.compare-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 32px !important;
  align-items: stretch !important;
}
.compare-card {
  flex: 1 !important;
  height: auto !important;
  min-height: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  border: 1px solid rgba(0,168,255,0.2) !important;
}
.compare-card.problem {
  border-color: rgba(0,168,255,0.2) !important;
}
.compare-card.solution {
  border-color: rgba(0,168,255,0.35) !important;
}
.compare-card-glow { display: none !important; }
.problem-icon {
  background: rgba(0,168,255,0.08) !important;
  border-color: rgba(0,168,255,0.2) !important;
  color: #00A8FF !important;
}
.compare-card.problem .compare-list li i {
  color: #00A8FF !important;
}
.compare-card.problem:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(0,168,255,0.08) !important;
}
.solution-icon {
  box-shadow: none !important;
}
.compare-card.solution .compare-list li i {
  filter: none !important;
}

/* Remove dashes from compare list items */
.compare-list li span {
  content: none;
}

/* ── 9. ABOUT SECTION ────────────────────────────────────────── */
.about-king-title .gold-text {
  color: #00A8FF !important;
}
.about-photo-glow { display: none !important; }
.about-frame-glow { display: none !important; }

/* ── 10. TESTIMONIALS ticker ─────────────────────────────────── */
.ticker-bar.ticker-gold {
  background: #00A8FF !important;
  border-top: none !important;
  border-bottom: none !important;
}
.ticker-track.ticker-track-gold {
  color: #000000 !important;
  font-weight: 800 !important;
}
.ticker-bar.ticker-gold .ticker-sep i {
  color: #000000 !important;
}

/* Testimonial stars */
.tcard-rating { color: #00A8FF !important; }

/* ── 11. FAQ SECTION ─────────────────────────────────────────── */
.faq-section .section-title .glow-text,
.faq-section .section-eyebrow {
  display: none !important;
}
.faq-section .section-header { display: none !important; }
.faq-section .faq-list { margin-top: 0 !important; }
.faq-icon {
  background: rgba(0,168,255,0.1) !important;
  border-color: rgba(0,168,255,0.25) !important;
}
.faq-icon i { color: #00A8FF !important; }
.faq-item.open .faq-icon {
  background: #00A8FF !important;
  border-color: #00A8FF !important;
}
.faq-item.open .faq-icon i { color: #000000 !important; }
.faq-question:hover { color: #00A8FF !important; }

/* ── 12. CTA / CONTACT SECTION ───────────────────────────────── */
.cta-title .glow-text,
.cta-title .chrome-text {
  color: #00A8FF !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #00A8FF !important;
  filter: none !important;
}
.cta-glow-left, .cta-glow-right { display: none !important; }
.cta-bullets li i { color: #00A8FF !important; }
.btn-form-submit {
  background: linear-gradient(135deg, #00A8FF, #0070cc) !important;
  color: #000000 !important;
}
.btn-form-submit:hover {
  background: linear-gradient(135deg, #0090dd, #005fb3) !important;
}

/* ── 13. SERVICES SECTION ────────────────────────────────────── */
.services-section .section-title .glow-text {
  color: #00A8FF !important;
}
.service-card-glow { display: none !important; }

/* ── 14. FOOTER ──────────────────────────────────────────────── */
/* Footer strip (formerly red) → #00A8FF */
.footer-bottom-strip,
.footer-bottom-blue,
div.footer-bottom-strip {
  background: #00A8FF !important;
  border-top: none !important;
}
.fbs-left p,
.fbs-left a,
.footer-bottom-inner p,
.footer-bottom-inner a {
  color: #000000 !important;
}
.footer-col-title { color: #00A8FF !important; }
.footer-social-icons .fsi { border-color: rgba(0,168,255,0.25) !important; }
.footer-social-icons .fsi:hover {
  background: #00A8FF !important;
  color: #000000 !important;
  border-color: #00A8FF !important;
}

/* Footer legal bar → black */
.footer-legal-bar {
  background: #000000 !important;
  border-top: 1px solid rgba(0,168,255,0.15) !important;
}

/* ── 15. DEVICE MOCKUP SECTION ───────────────────────────────── */
/* Multi-device showcase */
.device-showcase {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 40px 0;
}
/* Tablet mockup */
.mock-tablet {
  width: 280px;
  background: #1a1a2e;
  border-radius: 16px;
  border: 3px solid rgba(255,255,255,0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  overflow: hidden;
  position: relative;
}
.mock-tablet-screen {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #000;
}
.mock-tablet-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.mock-tablet-btn {
  height: 32px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock-tablet-btn::after {
  content: '';
  width: 32px;
  height: 5px;
  border-radius: 3px;
  background: rgba(255,255,255,0.2);
}
/* Mobile mockup */
.mock-mobile {
  width: 140px;
  background: #1a1a2e;
  border-radius: 24px;
  border: 3px solid rgba(255,255,255,0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  overflow: hidden;
}
.mock-mobile-notch {
  height: 18px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock-mobile-notch::after {
  content: '';
  width: 40px;
  height: 6px;
  border-radius: 3px;
  background: #111;
}
.mock-mobile-screen {
  aspect-ratio: 9/18;
  overflow: hidden;
  background: #000;
}
.mock-mobile-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.mock-mobile-home {
  height: 20px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock-mobile-home::after {
  content: '';
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.2);
}
/* Device showcase responsive */
@media (max-width: 768px) {
  .device-showcase { gap: 12px; }
  .mock-tablet { width: 200px; }
  .mock-mobile { width: 110px; }
}

/* ── 16. TESTIMONIALS section — device mockup row ────────────── */
.testi-mockup-section {
  padding: 60px 0 0;
  background: #000000;
}
.testi-mockup-inner {
  display: flex;
  align-items: stretch;
  gap: 48px;
}
@media (max-width: 900px) {
  .testi-mockup-inner { flex-direction: column; gap: 32px; }
}

/* ── 17. HVAC / TITAN sections — remove dashes, no glow ──────── */
.hck-title { text-shadow: none !important; }
.hck-item-title { text-shadow: none !important; }
.hck-icon { filter: none !important; }

/* ── 18. Remove service-card glow ring ───────────────────────── */
.service-card::before { display: none !important; }

/* ── 19. Compare section — fix responsive for 2-col layout ──── */
@media (max-width: 700px) {
  .compare-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ── 20. Portfolio — logo badge responsive ───────────────────── */
@media (max-width: 600px) {
  .port-logo-badge { padding: 5px 10px; }
  .port-logo-badge img { height: 18px; }
}

/* ── 21. Section titles — remove glow ───────────────────────── */
.section-title, .section-title-king, .cta-title, .hck-title,
.about-king-title, .kc-title {
  text-shadow: none !important;
}

/* ── 22. glow-text class → flat #00A8FF ─────────────────────── */
.glow-text {
  color: #00A8FF !important;
  text-shadow: none !important;
}

/* ── 23. Btn primary → #00A8FF ───────────────────────────────── */
.btn-primary {
  background: linear-gradient(135deg, #00A8FF, #0070cc) !important;
  color: #000000 !important;
  box-shadow: none !important;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #0090dd, #005fb3) !important;
  transform: translateY(-2px);
}

/* ── 24. hdr-gold-strip phone/social icon colors ─────────────── */
.hgs-icon { color: rgba(255,255,255,0.85) !important; }
.hgs-icon:hover { color: #00A8FF !important; }

/* ── 25. About section — COMMITMENT text → #00A8FF ──────────── */
.about-king-title span { color: #00A8FF !important; }


/* ── v2.6 Slider logo image ──────────────────────────────────── */
.cli-logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  /* Keep original color but ensure visibility on blue bg */
  filter: brightness(0) !important;
  opacity: 0.85;
  vertical-align: middle;
}

/* ── v2.6 Slider section full redesign ───────────────────────── */
.v26-slider {
  background: #00A8FF !important;
  padding: 0 !important;
  overflow: hidden !important;
}
.v26-slider .clients-slider-track-wrap {
  padding: 14px 0 !important;
}
.v26-slider .clients-slider-track {
  /* Use CSS animation for smooth infinite scroll */
  display: flex !important;
  gap: 0 !important;
  animation: v26Scroll 32s linear infinite !important;
}
.v26-slider .client-logo-item {
  display: inline-flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 0 24px !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}
.v26-slider .cli-text {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: #000000 !important;
}
.v26-slider .cli-sep {
  color: rgba(0,0,0,0.4) !important;
  font-size: 8px !important;
}

@keyframes v26Scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Pause on hover */
.v26-slider:hover .clients-slider-track {
  animation-play-state: paused !important;
}

/* ═══════════════════════════════════════════════════════════════
   v2.7 OVERRIDES — CHANGES-Final.docx implementation
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. HERO HEADING: TITAN TRADE AGENCY — large bold white ──── */
.kc-title {
  color: #FFFFFF !important;
  font-size: clamp(38px, 6vw, 80px) !important;
  font-weight: 900 !important;
  letter-spacing: 2px !important;
  line-height: 1.1 !important;
  text-transform: uppercase !important;
}

/* ── 2. STATS SECTION — fully hidden (removed from DOM) ──────── */
.stats-section {
  display: none !important;
}

/* ── 3. SERVICES SECTION — white text ────────────────────────── */
.services-section .section-title,
.services-section .section-subtitle,
.services-section .section-eyebrow {
  color: #FFFFFF !important;
}
.services-section .section-eyebrow {
  color: rgba(255,255,255,0.65) !important;
}

/* ── 4. SLIDER #1 — pure tagline only, no company names ──────── */
/* Already handled in HTML — no extra CSS needed */

/* ── 5. SLIDER #2 BLUE STRIP — logo + tagline ────────────────── */
.v26-blue-strip {
  background: #00A8FF !important;
}
.v26-blue-strip .cli-text {
  color: #000000 !important;
  font-weight: 800 !important;
  font-size: clamp(13px, 1.4vw, 16px) !important;
}
.v26-blue-strip .cli-sep {
  color: rgba(0,0,0,0.4) !important;
}
/* Logo in blue strip — remove white background, keep transparent */
.v26-strip-logo {
  height: 30px !important;
  width: auto !important;
  object-fit: contain !important;
  background: transparent !important;
  mix-blend-mode: multiply !important;
  filter: brightness(0) !important;
  opacity: 0.85 !important;
  flex-shrink: 0 !important;
}
.v26-strip-item {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

/* ── 6. CTA SLIDER — ARE YOU READY TO BE THE TITAN OF HVAC? ─── */
.v26-titan-cta-slider {
  background: #000000 !important;
  border-top: 1px solid rgba(0,168,255,0.2) !important;
  border-bottom: 1px solid rgba(0,168,255,0.2) !important;
  padding: 0 !important;
}
.v26-cta-txt {
  color: #00A8FF !important;
  font-size: clamp(14px, 1.8vw, 20px) !important;
  font-weight: 900 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
}
.v26-titan-cta-slider .cli-sep {
  color: rgba(0,168,255,0.5) !important;
}
/* CTA slider uses same animation as v26-slider */
.v26-titan-cta-slider .clients-slider-track {
  animation: v26Scroll 24s linear infinite !important;
}
.v26-titan-cta-slider:hover .clients-slider-track {
  animation-play-state: paused !important;
}

/* ── 7. TESTIMONIAL — company logo + Winstos name styling ────── */
.tcard-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tcard-company-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 3px 0 2px;
}
.tcard-company-row img {
  height: 18px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
}

/* ── 8. SERVICES VALUE PROPOSITION — Bigger Jobs in blue ─────── */
.services-section .section-title {
  font-size: clamp(26px, 3.5vw, 44px) !important;
}

/* ── 9. COMPARE SECTION — mobile responsive ──────────────────── */
@media (max-width: 768px) {
  .compare-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

/* ── 10. DEVICE MOCKUP — use ibb.co winstos images ───────────── */
/* Already in HTML — no extra CSS needed */

/* ── 11. FOUNDER SECTION — photo + signature already ibb.co ──── */
/* No changes needed */

/* ── 12. FAQ SECTION HEADER — restore visibility ────────────────── */
.faq-section .section-header {
  display: block !important;
}

/* ── 13. HERO title responsive sizing ────────────────────────── */
@media (max-width: 768px) {
  .kc-title {
    font-size: clamp(28px, 8vw, 48px) !important;
    letter-spacing: 1px !important;
  }
}
@media (max-width: 480px) {
  .kc-title {
    font-size: clamp(24px, 9vw, 40px) !important;
  }
}


/* ═══════════════════════════════════════════════════════════════
   v2.7.1 OVERRIDES — Image updates + Compare section + Portfolio mobile
   ═══════════════════════════════════════════════════════════════ */

/* ── SLIDER #1 TAG LOGO — logo on blue bg (black tinted) ────── */
.v26-slider-tagline .v26-tag-logo {
  height: 28px !important;
  width: auto !important;
  object-fit: contain !important;
  filter: brightness(0) !important;
  opacity: 0.75 !important;
  flex-shrink: 0 !important;
  background: transparent !important;
}
.v26-tag-item {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  white-space: nowrap !important;
}

/* ── PORTFOLIO CARD WITH MOBILE MOCKUP ──────────────────────── */
.port-devices-row {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
}
.port-card-with-mobile .port-devices-row {
  min-height: 200px;
}
/* Phone mockup alongside iMac in portfolio */
.port-phone-mockup {
  position: absolute;
  right: -16px;
  bottom: 0;
  z-index: 10;
}
.port-phone-inner {
  width: 90px;
  background: #1a1a1a;
  border-radius: 14px;
  border: 2px solid rgba(255,255,255,0.18);
  box-shadow: 0 12px 40px rgba(0,0,0,0.7), 0 0 0 1px rgba(0,168,255,0.15);
  overflow: hidden;
}
.port-phone-notch {
  height: 12px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.port-phone-notch::after {
  content: '';
  width: 28px;
  height: 5px;
  background: #111;
  border-radius: 3px;
}
.port-phone-screen {
  aspect-ratio: 9/16;
  overflow: hidden;
  background: #000;
}
.port-phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.port-phone-home {
  height: 14px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.port-phone-home::after {
  content: '';
  width: 28px;
  height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
}
@media (max-width: 768px) {
  .port-phone-mockup {
    right: -8px;
  }
  .port-phone-inner {
    width: 70px;
  }
}

/* ── COMPARE SECTION — restored ─────────────────────────────── */
.compare-section {
  background: #000000 !important;
  padding: 80px 0 !important;
}
.compare-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 32px !important;
  align-items: stretch !important;
  position: relative !important;
}
.compare-card {
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(0,168,255,0.2) !important;
  border-radius: 20px !important;
  padding: 36px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
  transition: box-shadow 0.3s ease !important;
}
.compare-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(0,168,255,0.08) !important;
}
.compare-card.solution {
  border-color: rgba(0,168,255,0.35) !important;
  background: rgba(0,168,255,0.04) !important;
}
.compare-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
}
.compare-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,168,255,0.08);
  border: 1px solid rgba(0,168,255,0.2);
  flex-shrink: 0;
}
.compare-card-title {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin: 0;
}
.compare-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
}
.compare-list li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  color: rgba(255,255,255,0.75) !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}
.compare-list li i {
  flex-shrink: 0 !important;
  margin-top: 2px !important;
  color: #00A8FF !important;
}
.compare-card-glow {
  display: none !important;
}
/* VS badge — still hidden */
.compare-vs, .vs-badge {
  display: none !important;
}
/* Mobile: stack cards */
@media (max-width: 768px) {
  .compare-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .compare-card {
    padding: 24px !important;
  }
}


/* ════════════════════════════════════════════════════════════════
   v2.7.2 OVERRIDES
   ════════════════════════════════════════════════════════════════ */

/* ── 1. COMPARE — "Frustrated" card → RED styling ───────────── */
.compare-card.problem {
  border-color: rgba(239,68,68,0.4) !important;
  background: rgba(239,68,68,0.04) !important;
}
.compare-card.problem:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(239,68,68,0.12) !important;
}
.problem-icon {
  background: rgba(239,68,68,0.12) !important;
  border: 1px solid rgba(239,68,68,0.4) !important;
  color: #ef4444 !important;
}
.compare-card.problem .compare-list li i {
  color: #ef4444 !important;
}

/* ── 2. LOGO SIZE — header logo increased to 165px ───────────── */
.hdr-logo img,
.logo-img,
.kc-logo-img,
.header-logo img,
.nav-logo img {
  height: 165px !important;
  width: auto !important;
  max-height: 165px !important;
}

/* ── 3. PORTFOLIO — remove port-card-with-mobile overflow fix ── */
.port-card {
  overflow: visible !important;
}
.port-devices-row {
  display: block !important;
}
/* Clean up any lingering phone mockup if present */
.port-phone-mockup {
  display: none !important;
}

/* ── 4. PORTFOLIO iMac — ensure screen image fills correctly ─── */
.port-imac {
  width: 100% !important;
  position: relative !important;
}
.port-imac-screen {
  width: 100% !important;
  aspect-ratio: 16 / 10 !important;
  overflow: hidden !important;
  border-radius: 8px 8px 0 0 !important;
}
.port-screen-inner {
  width: 100% !important;
  height: 100% !important;
}
.port-screen-inner img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: top center !important;
  display: block !important;
}


/* ── v2.7.4 — Device showcase solo laptop (tablet+mobile removed) ── */
.device-showcase-solo {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0 !important;
}
.device-showcase-solo .kc-laptop {
  width: 100% !important;
  max-width: 860px !important;
}
.device-showcase-solo .kc-laptop-screen {
  overflow: hidden !important;
}
.device-showcase-solo .kc-screen-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: top !important;
  display: block !important;
}
/* Hide tablet and mobile mockups if any remain */
.mock-tablet,
.mock-mobile {
  display: none !important;
}

/* ════════════════════════════════════════════════════════════════
   v2.7.5 — Hero headline + white feature badges
   ════════════════════════════════════════════════════════════════ */

/* ── 1. Hero headline — Barlow Black, reference-matched styling ── */
.kc-title-agency {
  font-family: 'Barlow', 'Barlow Condensed', sans-serif !important;
  font-size: clamp(42px, 5.5vw, 78px) !important;
  font-weight: 900 !important;
  line-height: 1.0 !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  letter-spacing: -1px !important;
  text-shadow:
    0 2px 0 rgba(0,0,0,0.6),
    0 4px 20px rgba(0,0,0,0.5) !important;
  margin-bottom: 14px !important;
}

/* The blue "HVAC" word */
.kc-blue-word {
  color: #00A8FF !important;
  font-weight: 900 !important;
  text-shadow:
    0 2px 0 rgba(0,0,0,0.5),
    0 0 32px rgba(0,168,255,0.35) !important;
  display: inline !important;
}

/* ── 2. Check icons — white background + white text ─────────── */
.kc-icon-white {
  background: rgba(255,255,255,0.12) !important;
  border: 1px solid rgba(255,255,255,0.30) !important;
  color: #ffffff !important;
}
.kc-icon-white-round {
  background: rgba(255,255,255,0.12) !important;
  border: 1px solid rgba(255,255,255,0.30) !important;
  color: #ffffff !important;
  border-radius: 50% !important;
}
.kc-txt-white {
  color: #ffffff !important;
  font-weight: 700 !important;
  letter-spacing: 1.2px !important;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .kc-title-agency { font-size: clamp(34px, 5.5vw, 56px) !important; }
}
@media (max-width: 600px) {
  .kc-title-agency { font-size: clamp(28px, 9vw, 44px) !important; letter-spacing: -0.5px !important; }
}

