/* ============================================
   Titan Kustoms — Premium Static Stylesheet
   ============================================ */

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

:root {
  --bg: #0a0a0c;
  --bg-2: #111114;
  --bg-3: #17171c;
  --surface: #1c1c22;
  --border: #26262e;
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --dim: #71717a;
  --accent: #d4a24c;        /* warm titanium gold */
  --accent-2: #f4c87a;
  --accent-soft: rgba(212,162,76,.12);
  --danger: #ef4444;
  --success: #10b981;
  --max: 1200px;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 10px 40px rgba(0,0,0,.4);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }


/* =========================
   PRELOADER
========================= */

#preloader{
  position: fixed;
  inset: 0;
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  overflow: hidden;
}

.logo-sphere{
  width: 220px;
  height: 220px;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-sphere img{
  width: 100%;
  height: auto;
  object-fit: contain;

  animation:
    sphereRotate 2s cubic-bezier(.22,.61,.36,1),
    glowPulse 2s ease-in-out;

  transform-style: preserve-3d;
  backface-visibility: hidden;

  filter:
    drop-shadow(0 0 12px rgba(255,0,0,.4))
    drop-shadow(0 0 24px rgba(0,102,255,.3));
}

/* 3D spherical rotation */
@keyframes sphereRotate{
  0%{
    opacity: 0;
    transform:
      rotateY(-720deg)
      rotateX(35deg)
      scale(0.2);
  }

  40%{
    opacity: 1;
  }

  70%{
    transform:
      rotateY(-180deg)
      rotateX(10deg)
      scale(1.08);
  }

  100%{
    opacity: 1;
    transform:
      rotateY(0deg)
      rotateX(0deg)
      scale(1);
  }
}

/* subtle glow */
@keyframes glowPulse{
  0%{
    filter:
      drop-shadow(0 0 0 rgba(255,0,0,0))
      drop-shadow(0 0 0 rgba(0,102,255,0));
  }

  50%{
    filter:
      drop-shadow(0 0 25px rgba(255,0,0,.7))
      drop-shadow(0 0 45px rgba(0,102,255,.6));
  }

  100%{
    filter:
      drop-shadow(0 0 12px rgba(255,0,0,.4))
      drop-shadow(0 0 24px rgba(0,102,255,.3));
  }
}

/* ============== TYPOGRAPHY ============== */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.1;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.4rem; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid var(--accent-soft);
  border-radius: 100px;
  background: var(--accent-soft);
}

.section-title { text-align: center; margin-bottom: 12px; }
.section-subtitle {
  text-align: center;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 56px;
  font-size: 1.05rem;
}

/* ============== NAV ============== */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(10,10,12,.85);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: .02em;
}
.brand__mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #000;
  font-weight: 800;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 0 4px 14px rgba(212,162,76,.35);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__link {
  padding: 10px 16px;
  font-size: 14.5px;
  color: var(--muted);
  font-weight: 500;
  transition: color .2s;
  border-radius: var(--radius);
}
.nav__link:hover { color: var(--text); }
.nav__link.is-active { color: var(--accent); }
.nav__cta { margin-left: 8px; }

.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.nav__toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--text);
  position: relative;
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: ''; position: absolute; left: 0;
  width: 18px; height: 2px; background: var(--text);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }

/* ============== BUTTONS ============== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: .01em;
  border-radius: var(--radius);
  transition: transform .15s, background .2s, box-shadow .2s, border-color .2s;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0a0a0c;
  box-shadow: 0 6px 20px rgba(212,162,76,.25);
}
.btn--primary:hover {
  box-shadow: 0 10px 28px rgba(212,162,76,.4);
  transform: translateY(-1px);
}
.btn--ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--lg { padding: 18px 32px; font-size: 15.5px; }
.btn--block { width: 100%; }





/* ============== HERO ============== */

.hero {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 70% 20%, rgba(212,162,76,.15), transparent 60%),
    radial-gradient(600px 300px at 20% 80%, rgba(212,162,76,.08), transparent 60%);
  z-index: 0;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,162,76,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,162,76,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  z-index: 0;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  z-index: 1;
}
.hero__title {
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  margin-bottom: 24px;
}
.hero__title .accent { color: var(--accent); display: block; }
.hero__lead {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 540px;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero__trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero__trust > div { font-size: 13px; color: var(--dim); }
.hero__trust strong { display: block; color: var(--text); font-size: 1.6rem; font-family: var(--font-display); margin-bottom: 4px; }

.hero__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow), 0 0 60px rgba(212,162,76,.08);
  aspect-ratio: 16/12;
}
.hero__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(10,10,12,.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  padding: 12px 18px;
  border-radius: var(--radius);
  font-size: 13px;
  display: flex; align-items: center; gap: 10px;
}
.hero__badge .dot {
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--success);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.2); }
}

/* ============== SECTIONS ============== */

.section {
  padding: 100px 0;
  position: relative;
}
.section--alt { background: var(--bg-2); }

/* ============== SERVICES OVERVIEW ============== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform .2s, border-color .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.service-card:hover { border-color: var(--accent-soft); transform: translateY(-3px); }
.service-card:hover::before { opacity: 1; }
.service-card__icon {
  width: 52px; height: 52px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  border-radius: 10px;
  margin-bottom: 24px;
  font-size: 22px;
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--muted); margin-bottom: 20px; font-size: 15px; }
.service-card ul { list-style: none; }
.service-card li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-card li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
}
.service-card li:last-child { border-bottom: none; }

/* ============== BUILDS ============== */

.builds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.build-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.build-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-soft);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.build-card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-3);
}
.build-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.build-card:hover .build-card__media img { transform: scale(1.05); }
.build-card__tier {
  position: absolute;
  top: 16px; left: 16px;
  padding: 5px 12px;
  background: rgba(10,10,12,.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
}
.build-card__body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.build-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.build-card__tagline {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 20px;
}
.build-card__specs {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}
.build-card__specs li {
  padding: 8px 0;
  font-size: 13.5px;
  color: var(--muted);
  border-bottom: 1px dashed var(--border);
  display: flex; align-items: center; gap: 10px;
}
.build-card__specs li::before {
  content: '›';
  color: var(--accent);
  font-weight: 700;
}
.build-card__specs li:last-child { border-bottom: none; }
.build-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.build-card__price small {
  display: block;
  font-size: 11px;
  color: var(--dim);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.build-card__price strong {
  font-size: 1.4rem;
  font-family: var(--font-display);
  color: var(--accent);
}

/* ============== TESTIMONIALS ============== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}
.testimonial__quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--accent);
  opacity: .25;
  position: absolute;
  top: 12px; right: 22px;
}
.testimonial__stars {
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial__text {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.7;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #000;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 15px;
}
.testimonial__name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}
.testimonial__role {
  font-size: 12.5px;
  color: var(--dim);
}

/* ============== STATS ============== */

.stats {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 50px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--accent);
  margin-bottom: 4px;
}
.stat span {
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ============== CTA STRIP ============== */

.cta-strip {
  background:
    radial-gradient(600px 300px at 80% 50%, rgba(212,162,76,.18), transparent),
    var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  margin: 60px 0;
}
.cta-strip h2 { margin-bottom: 16px; }
.cta-strip p { color: var(--muted); margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-strip__buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============== FORMS ============== */

.form-wrap {
  max-width: 880px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.form-field label .req { color: var(--accent); }
.input,
.select,
.textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color .2s, background .2s;
}
.input:focus,
.select:focus,
.textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-2);
}
.textarea { resize: vertical; min-height: 110px; }
.select { cursor: pointer; }

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.choice-grid--3 { grid-template-columns: repeat(3, 1fr); }
.choice {
  position: relative;
  padding: 22px;
  background: var(--bg-3);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .2s;
  text-align: left;
}
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice:hover { border-color: var(--accent-soft); background: var(--bg-2); }
.choice.is-selected,
.choice input:checked + .choice__inner,
.choice:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.choice__title {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
  display: block;
}
.choice__sub {
  font-size: 12.5px;
  color: var(--muted);
}
.choice__icon {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 8px;
  margin-bottom: 14px;
  font-size: 18px;
}

/* Quote wizard */
.wizard__steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}
.wizard__steps::before {
  content: '';
  position: absolute;
  top: 14px; left: 0; right: 0;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.wizard__steps::after {
  content: '';
  position: absolute;
  top: 14px; left: 0;
  width: var(--progress, 0%);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  z-index: 1;
  transition: width .35s ease;
}
.wizard__step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--dim);
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
}
.wizard__dot {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 2px solid var(--border);
  display: grid; place-items: center;
  font-size: 12px;
  color: var(--muted);
  transition: all .2s;
}
.wizard__step.is-active .wizard__dot,
.wizard__step.is-done .wizard__dot {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}
.wizard__step.is-active { color: var(--accent); }

.wizard__panel { display: none; animation: fadeIn .3s ease; }
.wizard__panel.is-active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.wizard__panel h3 {
  font-family: var(--font-display);
  margin-bottom: 8px;
}
.wizard__panel-sub {
  color: var(--muted);
  margin-bottom: 28px;
}

.wizard__nav {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  gap: 14px;
  flex-wrap: wrap;
}

.success-screen {
  text-align: center;
  padding: 32px 0;
}
.success-screen__icon {
  width: 84px; height: 84px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 24px;
  font-size: 38px;
}
.success-screen h3 { margin-bottom: 12px; font-size: 1.8rem; }
.success-screen p { color: var(--muted); margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }
.success-screen__buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Inline status messages */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 20px;
  border: 1px solid;
}
.alert--error { background: rgba(239,68,68,.08); border-color: rgba(239,68,68,.3); color: #fca5a5; }
.alert--success { background: rgba(16,185,129,.08); border-color: rgba(16,185,129,.3); color: #6ee7b7; }

/* ============== PAGE HEADER ============== */

.page-header {
  padding: 80px 0 40px;
  text-align: center;
  background:
    radial-gradient(600px 250px at 50% 0%, rgba(212,162,76,.12), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}
.page-header h1 { margin-bottom: 16px; font-size: clamp(2rem, 4vw, 3.4rem); }
.page-header p { color: var(--muted); max-width: 640px; margin: 0 auto; font-size: 1.05rem; }

/* ============== FILTERS ============== */

.filter-bar {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 22px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  background: var(--surface);
  transition: all .2s;
}
.filter-btn:hover { border-color: var(--accent-soft); color: var(--text); }
.filter-btn.is-active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

/* ============== SERVICES PAGE ============== */

.svc-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}
.svc-block:last-child { margin-bottom: 0; }
.svc-block--reverse > div:first-child { order: 2; }
.svc-block__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
}
.svc-block__media img { width: 100%; height: 100%; object-fit: cover; }
.svc-block ul { list-style: none; margin: 24px 0; }
.svc-block li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.svc-block li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  margin-top: 2px;
}
.svc-block li:last-child { border-bottom: none; }
.svc-block h2 { margin-bottom: 12px; }
.svc-block p { color: var(--muted); }

/* ============== FOOTER ============== */

.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
  margin-top: 100px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer h4 {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  font-family: var(--font);
}
.footer__brand p { color: var(--muted); font-size: 14px; margin-top: 16px; max-width: 320px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer li a { color: var(--muted); font-size: 14px; transition: color .2s; }
.footer li a:hover { color: var(--accent); }
.footer__contact p { color: var(--muted); font-size: 14px; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--dim);
}

/* ============== WHATSAPP FAB ============== */

.wa-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: grid; place-items: center;
  color: white;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}
.wa-fab:hover { transform: scale(1.08); box-shadow: 0 12px 30px rgba(37,211,102,.6); }
.wa-fab svg { width: 30px; height: 30px; }
.wa-fab::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: .6;
  animation: waPulse 2s infinite;
}
@keyframes waPulse {
  0% { transform: scale(.85); opacity: .8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ============== RESPONSIVE ============== */

@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .builds-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .svc-block { grid-template-columns: 1fr; gap: 30px; }
  .svc-block--reverse > div:first-child { order: 0; }
}

@media (max-width: 720px) {
  .nav__links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; padding: 20px; background: var(--bg-2); border-bottom: 1px solid var(--border); align-items: stretch; }
  .nav__links.is-open { display: flex; }
  .nav__cta { margin-left: 0; }
  .nav__toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .builds-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .choice-grid--3 { grid-template-columns: 1fr 1fr; }
  .form-wrap { padding: 28px 22px; }
  .cta-strip { padding: 40px 24px; }
  .footer__grid { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .hero { padding: 50px 0 70px; }
  .wizard__step { font-size: 0; }
  .wizard__step.is-active { font-size: 11px; }
}

/* =========================
   BRAND LOGO
========================= */

.brand__logo{
  width: 90px !important;
  height: auto !important;

  max-width: 90px !important;
  min-width: 90px !important;

  object-fit: contain;
  display: block;

  flex-shrink: 0;
}

/* NAVBAR */
.nav .brand__logo{
  width: 90px !important;
  max-width: 90px !important;
}

/* FOOTER */
.footer .brand__logo{
  width: 110px !important;
  max-width: 110px !important;
}

/* MOBILE */
@media(max-width:768px){

  .nav .brand__logo{
    width: 70px !important;
    max-width: 70px !important;
  }

  .footer .brand__logo{
    width: 85px !important;
    max-width: 85px !important;
  }

}

/* =========================
   FORCE LOGO SIZE
========================= */