/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #161616;
  --bg-4: #1e1e1e;
  --orange: #E8742A;
  --orange-light: #f08238;
  --text: #e8e6e2;
  --text-muted: #888480;
  --border: #1f1f1f;
  --border-2: #2a2a2a;
  --white: #ffffff;
  --red: #e74c3c;
  --green: #2ecc71;
}

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

body {
  font-family: 'Inter', -apple-system, sans-serif;
  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 { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

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

/* ===== TYPOGRAPHY ===== */
.display-xl {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.display-lg {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

/* ===== BUTTONS ===== */
.btn-p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--orange);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.btn-p:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 116, 42, 0.3);
}

.btn-o {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 6px;
  border: 1px solid var(--border-2);
  transition: all 0.3s ease;
}
.btn-o:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-lg { padding: 18px 36px; font-size: 1rem; width: 100%; justify-content: center; }

/* ===== CHIP ===== */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(232, 116, 42, 0.1);
  border: 1px solid rgba(232, 116, 42, 0.2);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
}
.chip-dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-glow 2s infinite;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.logo-accent { color: var(--orange); }

.nav { display: flex; gap: 32px; }
.nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s;
}
.nav a:hover { color: var(--white); }

.header-actions { display: flex; align-items: center; gap: 20px; }
.phone-link {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.phone-link:hover { color: var(--orange); }
.header-actions .btn-p { padding: 10px 20px; font-size: 0.8rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span {
  width: 24px; height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--bg-2);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a { font-size: 1rem; padding: 8px 0; }
.mobile-nav .btn-p { text-align: center; margin-top: 8px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--orange), transparent);
  top: 10%; left: 20%;
  animation: float 8s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #7a2f00, transparent);
  bottom: 10%; right: 20%;
  animation: float 10s ease-in-out infinite reverse;
}
.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 24px auto 40px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== TICKER ===== */
.ticker {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 40px;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
}
.ticker-track span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ===== TRUST / LOGOS ===== */
.trust-section {
  background: #7a2f00;
  padding: 40px 0;
  text-align: center;
}
.trust-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}
.logo-carousel { overflow: hidden; position: relative; }
.logo-carousel::before, .logo-carousel::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.logo-carousel::before { left: 0; background: linear-gradient(90deg, #7a2f00, transparent); }
.logo-carousel::after { right: 0; background: linear-gradient(270deg, #7a2f00, transparent); }
.logo-track {
  display: flex;
  gap: 60px;
  animation: scroll 20s linear infinite;
}
.logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.logo-item:hover { opacity: 1; }
.logo-item img {
  height: 36px;
  width: auto;
  object-fit: contain;
  /* original colors */
}
.logo-item.logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
}

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-dark { background: var(--bg-2); }
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.section-header .chip { margin-bottom: 16px; }
.section-header .display-lg { margin-bottom: 16px; }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== WHO WE SERVE ===== */
.serve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.serve-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.serve-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.serve-card:hover::after { transform: scaleX(1); }
.serve-card:hover { border-color: var(--border-2); }
.serve-icon {
  width: 56px; height: 56px;
  background: rgba(232, 116, 42, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.4s ease;
}
.serve-card:hover .serve-icon { transform: rotate(5deg) scale(1.05); }
.serve-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.serve-card > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.7;
}
.serve-benefits { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.serve-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.arrow { color: var(--orange); font-weight: 600; }

/* ===== PROBLEM / SOLUTION ===== */
.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.problems { display: flex; flex-direction: column; gap: 20px; }
.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-3);
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 0.95rem;
  line-height: 1.6;
}
.x-icon {
  color: var(--red);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.solution-box {
  position: sticky;
  top: 100px;
  background: var(--bg-3);
  border-left: 3px solid var(--orange);
  border-radius: 8px;
  padding: 36px;
}
.solution-box blockquote {
  font-size: 1.2rem;
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.6;
}
.solution-list { display: flex; flex-direction: column; gap: 16px; }
.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.check-icon {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== SERVICES (Full Stack) ===== */
.services-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 24px;
  flex-wrap: wrap;
}
.services-header-row .chip { margin-bottom: 16px; }
.services-header-row .display-lg { margin: 0; }

.svc-list { display: flex; flex-direction: column; gap: 12px; }
.svc-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.svc-item.active { border-color: var(--orange); }
.svc-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 32px;
  width: 100%;
  text-align: left;
}
.svc-icon {
  width: 48px; height: 48px;
  background: rgba(232, 116, 42, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
  font-size: 1.2rem;
}
.svc-info { flex: 1; }
.svc-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  display: block;
}
.svc-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}
.svc-toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: all 0.3s;
  flex-shrink: 0;
}
.svc-item.active .svc-toggle {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: rotate(45deg);
}
.svc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.svc-body-inner { padding: 0 32px 32px; }
.svc-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.svc-box {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}
.svc-box-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 12px;
}
.svc-box-label-green { color: var(--orange); }
.svc-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.svc-impact {
  background: rgba(232, 116, 42, 0.06);
  border: 1px solid rgba(232, 116, 42, 0.2);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}
.svc-impact-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 12px;
}
.svc-impact p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
}

@media (max-width: 600px) {
  .svc-header { padding: 20px; gap: 14px; }
  .svc-body-inner { padding: 0 20px 24px; }
  .svc-boxes { grid-template-columns: 1fr; }
  .services-header-row { flex-direction: column; align-items: flex-start; }
}

/* ===== CASE STUDIES ===== */
.tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.tab {
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 100px;
  border: 1px solid var(--border-2);
  transition: all 0.3s;
  background: transparent;
}
.tab:hover, .tab.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.cases-list { display: flex; flex-direction: column; gap: 24px; }
.cs-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  transition: all 0.3s;
}
.cs-card:hover { border-color: var(--border-2); }
.cs-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.cs-top-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.cs-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
}
.cs-duration {
  font-size: 0.75rem;
  padding: 4px 14px;
  border: 1px solid var(--border-2);
  border-radius: 100px;
  color: var(--text-muted);
}
.cs-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 20px;
}
.cs-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.cs-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cs-box {
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}
.cs-box-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 12px;
}
.cs-box-label-green { color: var(--orange); }
.cs-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.cs-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cs-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.cs-metric {
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 16px;
  text-align: center;
}
.cs-metric-highlight {
  background: rgba(232, 116, 42, 0.08);
  border-color: rgba(232, 116, 42, 0.3);
}
.cs-metric-val {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.2;
  color: var(--white);
}
.cs-accent { color: var(--orange); }
.cs-metric-lbl {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-top: 8px;
}
.cs-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 16px;
}
.cs-cta {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orange);
  margin-top: 16px;
  transition: color 0.3s;
}
.cs-cta:hover { color: var(--orange-light); }

@media (max-width: 960px) {
  .cs-inner { grid-template-columns: 1fr; gap: 32px; }
  .cs-card { padding: 32px; }
  .cs-boxes { grid-template-columns: 1fr; }
  .cs-metrics-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .cs-card { padding: 24px; }
  .cs-metrics-grid { grid-template-columns: 1fr 1fr; }
  .cs-metrics-row { grid-template-columns: 1fr; }
}

/* ===== PROCESS ===== */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.process-step {
  text-align: center;
  padding: 32px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.process-step::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.process-step:hover::after { transform: scaleX(1); }
.process-step:hover { border-color: var(--border-2); }
.step-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 4rem;
  color: var(--orange);
  opacity: 0.1;
  line-height: 1;
  margin-bottom: -16px;
}
.step-icon { margin: 12px auto 16px; }
.process-step h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-3);
}
.testimonial-video {
  aspect-ratio: 9/16;
  max-height: 400px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--bg-4);
}
.testimonial-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-video::after {
  content: '';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: opacity 0.3s;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 24 24' fill='white'%3E%3Cpolygon points='5 3 19 12 5 21 5 3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 48px;
}
.testimonial-video.playing::after { opacity: 0; }
.testimonial-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-company { font-size: 0.8rem; color: var(--orange); }

/* ===== FAQ ===== */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.faq-left h2 { margin: 16px 0; }
.faq-left p {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--orange); }
.faq-icon {
  font-size: 1.3rem;
  transition: transform 0.3s;
  color: var(--text-muted);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  padding-bottom: 20px;
}

/* ===== CTA (legacy - kept for any remaining elements) ===== */

/* ===== BOOKING / CTA ===== */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.booking-left h2 { margin: 16px 0 32px; }
.booking-expectations { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.booking-expect {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.booking-expect strong { display: block; margin-bottom: 4px; color: var(--white); }
.booking-expect p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; margin: 0; }
.booking-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.booking-stat { text-align: center; }
.stat-value {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--orange);
}
.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.booking-form-wrapper {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}
.booking-form-wrapper h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.booking-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.booking-trust {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (max-width: 960px) {
  .booking-layout { grid-template-columns: 1fr; }
  .booking-stats { justify-content: center; }
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 24px;
  background: var(--bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 12px;
}
.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 4px 0;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.status-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-glow 2s infinite;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

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

@keyframes pulse-glow {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(232, 116, 42, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(232, 116, 42, 0); }
}

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

.fade-up {
  animation: fadeUp 0.9s ease forwards;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .phone-link { display: none; }

  .serve-grid,
  .ps-grid,
  .cta-grid,
  .faq-layout { grid-template-columns: 1fr; }

  .process-timeline { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: 1fr; }
  .case-featured { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .acc-benefits { grid-template-columns: 1fr; }

  .solution-box { position: static; }
}

@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .process-timeline { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn-p, .hero-ctas .btn-o { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 400px) {
  .process-timeline { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
}
