/* ================================================================
   Multiple Builders Inc. — Global Stylesheet
   Brand: Light professional, Bebas Neue + Inter
   ================================================================ */

/* ── CSS Variables ── */
:root {
  --ink-black:   #0E1117;
  --steel-dark:  #F3F4F6;
  --card-bg:     #FFFFFF;
  --amber:       #D4820A;
  --gold-light:  #F5A623;
  --blue:        #1E4FC9;
  --green:       #16A85F;
  --white:       #FFFFFF;
  --slate:       #64748B;
  --slate-light: #475569;
  --border:      rgba(0,0,0,0.09);
  --border-amber:rgba(212,130,10,0.3);

  --nav-height:  80px;
  --max-w:       1200px;
  --section-py:  96px;

  --transition:  200ms ease;
  --radius:      4px;

  --z-nav:    100;
  --z-mobile: 200;
  --z-sticky: 300;
  --z-overlay:400;
}

/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: 'Inter', sans-serif;
  background: #FFFFFF;
  color: var(--ink-black);
  line-height: 1.65;
  font-size: 1rem;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Bebas Neue', sans-serif;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: 0.04em;
}
h1 { font-size: clamp(2.75rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.375rem; letter-spacing: 0.06em; }

p { max-width: 68ch; line-height: 1.7; }

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; }

/* ── Container ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }
@media (min-width: 1024px) { .container { padding: 0 60px; } }

/* ── Section ── */
.section { padding: var(--section-py) 0; }
.section-sm { padding: 64px 0; }
.section-dark  { background: #FFFFFF; }
.section-mid   { background: var(--steel-dark); }
.section-light { background: #F8F7F4; color: var(--ink-black); }

.section-header { margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(212,130,10,0.1);
  border: 1px solid var(--border-amber);
  padding: 4px 14px;
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.section-title { color: var(--ink-black); margin-bottom: 16px; }
.section-light .section-title { color: var(--ink-black); }
.section-desc {
  font-size: 1.0625rem;
  color: var(--slate);
  max-width: 560px;
}
.section-light .section-desc { color: #4A5568; }

/* ── Accent Line ── */
.accent-line {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--gold-light));
  border-radius: 2px;
  margin-bottom: 20px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
  min-height: 44px;
}
.btn:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }

.btn-primary {
  background: var(--amber);
  color: var(--ink-black);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--ink-black);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212,130,10,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--ink-black);
  border: 1.5px solid rgba(0,0,0,0.25);
}
.btn-secondary:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-1px);
}

.btn-outline-amber {
  background: transparent;
  color: var(--amber);
  border: 1.5px solid var(--amber);
}
.btn-outline-amber:hover {
  background: var(--amber);
  color: var(--ink-black);
}

.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }

/* ── Badges ── */
.badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius);
}
.badge-amber  { background: var(--amber);  color: var(--ink-black); }
.badge-green  { background: var(--green);  color: var(--ink-black); }
.badge-blue   { background: var(--blue);   color: var(--white); }
.badge-slate  { background: rgba(122,140,168,0.2); color: var(--slate); border: 1px solid rgba(122,140,168,0.3); }

/* ── Cards ── */
.card {
  background: var(--card-bg);
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.card:hover {
  border-color: var(--border-amber);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.card-link { cursor: pointer; }
.card-amber {
  background: rgba(212,130,10,0.08);
  border: 1px solid rgba(212,130,10,0.25);
}
.card-light {
  background: var(--white);
  border: 1px solid #E2E8F0;
  color: var(--ink-black);
}
.card-light:hover {
  border-color: var(--amber);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* ── Service Card Icon ── */
.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(212,130,10,0.12);
  border: 1px solid rgba(212,130,10,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.service-icon svg { width: 24px; height: 24px; color: var(--amber); fill: none; stroke: currentColor; stroke-width: 1.5; }

/* ── Grids ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

@media (max-width: 1023px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* ── ═══════════════════════════
   NAVIGATION
   ═══════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
@media (min-width: 1024px) { .nav-inner { padding: 0 60px; } }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo img { height: 42px; width: auto; display: block; }
@media (min-width: 1024px) { .nav-logo img { height: 54px; } }
.nav-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink-black);
  line-height: 1.2;
}
.nav-logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--ink-black); background: rgba(0,0,0,0.05); }

/* Dropdown */
.nav-item-dropdown { position: relative; }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: var(--radius);
  padding: 8px 0;
  padding-top: 16px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: var(--z-overlay);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.875rem;
  color: var(--slate);
  border-radius: 0;
  background: transparent;
}
.nav-dropdown a:hover { color: var(--ink-black); background: rgba(0,0,0,0.04); }

.nav-cta {
  flex-shrink: 0;
  font-size: 0.875rem;
  padding: 10px 20px;
}

/* Hamburger */
/* ── Hamburger ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink-black);
  border-radius: 2px;
  transition: transform 300ms cubic-bezier(0.22,0.61,0.36,1), opacity 300ms ease;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Backdrop ── */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(3px);
  z-index: 190;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}
.nav-backdrop.open { opacity: 1; pointer-events: auto; }

/* ── Mobile Panel (slide from right) ── */
.nav-mobile {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(85vw, 340px);
  background: #0E1117;
  border-left: 1px solid rgba(212,130,10,0.25);
  z-index: 210;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 340ms cubic-bezier(0.22,0.61,0.36,1);
  overflow-y: auto;
  overflow-x: hidden;
}
.nav-mobile.open { transform: translateX(0); }

.nav-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.nav-mobile-close {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease;
}
.nav-mobile-close:hover { background: rgba(255,255,255,0.14); }

.nav-mobile-links { padding: 24px 24px 0; flex: 1; }

.nav-mobile-section-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}
.nav-mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  transition: color 200ms ease, padding-left 200ms ease;
  opacity: 0;
  transform: translateX(20px);
}
.nav-mobile-link svg { flex-shrink: 0; opacity: 0.4; transition: opacity 200ms ease, transform 200ms ease; }
.nav-mobile-link:hover { color: #fff; padding-left: 4px; }
.nav-mobile-link:hover svg { opacity: 1; transform: translateX(3px); }

.nav-mobile.open .nav-mobile-link {
  animation: mobileNavIn 320ms cubic-bezier(0.22,0.61,0.36,1) both;
}
.nav-mobile.open .nav-mobile-links .nav-mobile-link:nth-of-type(1) { animation-delay: 60ms; }
.nav-mobile.open .nav-mobile-links .nav-mobile-link:nth-of-type(2) { animation-delay: 100ms; }
.nav-mobile.open .nav-mobile-links .nav-mobile-link:nth-of-type(3) { animation-delay: 140ms; }
.nav-mobile.open .nav-mobile-links .nav-mobile-link:nth-of-type(4) { animation-delay: 180ms; }
.nav-mobile.open .nav-mobile-links .nav-mobile-link:nth-of-type(5) { animation-delay: 220ms; }
.nav-mobile.open .nav-mobile-links .nav-mobile-link:nth-of-type(6) { animation-delay: 270ms; }
.nav-mobile.open .nav-mobile-links .nav-mobile-link:nth-of-type(7) { animation-delay: 310ms; }
.nav-mobile.open .nav-mobile-links .nav-mobile-link:nth-of-type(8) { animation-delay: 350ms; }
.nav-mobile.open .nav-mobile-links .nav-mobile-link:nth-of-type(9) { animation-delay: 390ms; }

@keyframes mobileNavIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.nav-mobile-footer {
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}
.nav-mobile-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 200ms ease;
}
.nav-mobile-phone:hover { color: var(--amber); }

@media (max-width: 1023px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── Page Top Padding ── */
.page-top { padding-top: var(--nav-height); }

/* ── ═══════════════════════════
   HERO SECTION
   ═══════════════════════════ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #FFFFFF;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(212,130,10,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(30,79,201,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-height) + 36px) 60px 60px;
  width: 100%;
}
@media (max-width: 767px) {
  .hero-inner { padding: calc(var(--nav-height) + 28px) 24px 48px; }
  .hero { min-height: auto; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
}

.hero-title {
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 400;
  color: var(--ink-black);
  line-height: 1.0;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  max-width: 900px;
}
.hero-title span { color: var(--amber); }

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.1875rem);
  color: var(--slate);
  max-width: 560px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--slate-light);
  font-weight: 500;
}
.hero-trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--green);
  flex-shrink: 0;
}

/* ── ═══════════════════════════
   TRUST BAR
   ═══════════════════════════ */
.trust-bar {
  background: #F3F4F6;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 20px 0;
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
@media (min-width: 1024px) { .trust-bar-inner { padding: 0 60px; } }

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-black);
  white-space: nowrap;
}
.trust-item svg {
  width: 20px; height: 20px;
  color: var(--amber);
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

/* ── ═══════════════════════════
   STATS ROW
   ═══════════════════════════ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
}
@media (max-width: 767px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}
.stat-box {
  background: var(--card-bg);
  padding: 32px 24px;
  text-align: center;
}
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--amber);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.8125rem;
  color: var(--slate);
  font-weight: 500;
  line-height: 1.4;
}

/* ── ═══════════════════════════
   SERVICES SECTION
   ═══════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 1023px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 599px) {
  .services-grid { grid-template-columns: 1fr; }
}
.service-card {
  background: var(--card-bg);
  padding: 36px 32px;
  transition: background var(--transition);
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}
.service-card:hover { background: #F9FAFB; }
.service-card:hover .service-icon { background: rgba(212,130,10,0.2); border-color: var(--amber); }
.service-card h3 { margin-bottom: 10px; font-size: 1.125rem; }
.service-card p { font-size: 0.875rem; color: var(--slate); line-height: 1.6; }
.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--amber);
  margin-top: 16px;
}
.service-arrow svg { width: 14px; height: 14px; transition: transform var(--transition); }
.service-card:hover .service-arrow svg { transform: translateX(4px); }

/* ── ═══════════════════════════
   PROJECTS / PORTFOLIO
   ═══════════════════════════ */
.project-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.project-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,0.12); }
.project-img {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #E5E7EB 0%, #F3F4F6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.project-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.45) 100%);
}
.project-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--slate);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.project-img-placeholder svg { width: 48px; height: 48px; color: rgba(212,130,10,0.3); }
.project-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.project-info { padding: 24px; }
.project-type {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}
.project-card h3 { margin-bottom: 8px; font-size: 1.125rem; }
.project-card p  { font-size: 0.875rem; color: var(--slate); }
.project-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 0.8125rem;
  color: var(--slate);
}
.project-meta svg { width: 14px; height: 14px; }

/* ── ═══════════════════════════
   TESTIMONIALS
   ═══════════════════════════ */
.testimonial-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: rgba(212,130,10,0.15);
  position: absolute;
  top: 16px; left: 24px;
  line-height: 1;
}
.stars { color: var(--gold-light); font-size: 0.875rem; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-text {
  font-size: 0.9375rem;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.9375rem; }
.author-role { font-size: 0.8125rem; color: var(--slate); }

/* ── ═══════════════════════════
   CTA SECTION
   ═══════════════════════════ */
.cta-section {
  background: var(--ink-black);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,130,10,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-inner h2 { margin-bottom: 16px; color: #FFFFFF; }
.cta-inner p { color: #A8B5C8; margin: 0 auto 40px; font-size: 1.0625rem; }
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.cta-trust {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: #A8B5C8;
}
.cta-trust-item svg { width: 14px; height: 14px; color: var(--green); }

/* Secondary button override for dark CTA section */
.cta-section .btn-secondary {
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.35);
}
.cta-section .btn-secondary:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: transparent;
}

/* ── ═══════════════════════════
   ABOUT SECTION
   ═══════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 767px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--card-bg);
  border: 1px solid var(--border);
}
.about-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--slate);
}
.about-img-placeholder svg { width: 64px; height: 64px; color: rgba(212,130,10,0.3); }
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-text .accent-line { margin-bottom: 24px; }
.about-text p { color: var(--slate); margin-bottom: 20px; max-width: 100%; }
.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

/* ── ═══════════════════════════
   FORMS
   ═══════════════════════════ */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-black);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #FFFFFF;
  border: 1.5px solid #CBD5E0;
  border-radius: var(--radius);
  color: var(--ink-black);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  padding: 12px 16px;
  transition: border-color var(--transition), background var(--transition);
  min-height: 44px;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9AABBC; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--amber);
  background: rgba(212,130,10,0.02);
}
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}
.form-group select {
  cursor: pointer;
  color: var(--slate);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237A8CA8' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}
.form-group select option { background: #FFFFFF; color: var(--ink-black); }
.form-group textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
@media (max-width: 599px) { .form-grid { grid-template-columns: 1fr; } }
.form-error { font-size: 0.8125rem; color: #FF6B6B; margin-top: 4px; display: none; }
.form-error.visible { display: block; }
.form-success {
  display: none;
  background: rgba(34,201,122,0.1);
  border: 1px solid rgba(34,201,122,0.3);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  color: var(--green);
  font-weight: 500;
}
.form-success.visible { display: block; }

/* ── Multi-step (Typeform-style) forms ── */
.form-hp { position: absolute; left: -9999px; }
.form-progress { margin-bottom: 24px; }
.form-progress__meta {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--slate); margin-bottom: 8px;
}
.form-progress__pct { color: var(--amber); }
.form-progress__track {
  height: 6px; border-radius: 999px; overflow: hidden;
  background: rgba(148,163,184,0.22);
}
.form-progress__bar {
  height: 100%; border-radius: 999px; width: 25%;
  background: linear-gradient(90deg, var(--amber), var(--gold-light, #F0B44B));
  transition: width 420ms cubic-bezier(0.22, 1, 0.36, 1);
}
.form-step {
  border: 0; padding: 0; margin: 0; min-inline-size: auto;
  display: none;
}
.form-step.is-active {
  display: block;
  animation: formStepIn 380ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.form-step__q {
  display: block; padding: 0; margin: 0 0 20px;
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem); line-height: 1.15;
  letter-spacing: 0.01em; color: var(--white);
}
.form-light .form-step__q, .form-step--light .form-step__q { color: var(--ink-black); }
@keyframes formStepIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.form-nav { display: flex; gap: 12px; align-items: center; margin-top: 24px; }
.btn-ghost {
  background: transparent; color: var(--slate);
  border: 1px solid var(--border);
  padding: 16px 22px; border-radius: var(--radius);
  font-weight: 600; cursor: pointer; transition: border-color 200ms ease, color 200ms ease;
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }
@media (prefers-reduced-motion: reduce) {
  .form-step.is-active { animation: none; }
  .form-progress__bar { transition: none; }
}

/* Ensure [hidden] wins over component display rules (e.g. .btn) */
[hidden] { display: none !important; }

/* ── Selectable option cards (project type) ── */
.opt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 480px) { .opt-grid { grid-template-columns: 1fr; } }
.opt-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  padding: 14px 16px;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.opt-card input { position: absolute; opacity: 0; width: 0; height: 0; }
.opt-card__ico {
  flex-shrink: 0;
  color: var(--slate);
  transition: color 180ms ease;
}
.opt-card__label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink-black);
  line-height: 1.2;
}
.opt-card:hover {
  border-color: var(--amber);
  box-shadow: 0 6px 18px -10px rgba(212,130,10,0.5);
  transform: translateY(-1px);
}
.opt-card:has(input:checked) {
  border-color: var(--amber);
  background: rgba(212,130,10,0.06);
  box-shadow: 0 0 0 1px var(--amber) inset;
}
.opt-card:has(input:checked) .opt-card__ico { color: var(--amber); }
.opt-card:has(input:focus-visible) { outline: 2px solid var(--amber); outline-offset: 2px; }
/* Check badge on selected card */
.opt-card:has(input:checked)::after {
  content: "";
  position: absolute;
  top: 10px; right: 10px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--amber) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%230E1117' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
}

/* ── Selectable chips (timeline) ── */
.chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; cursor: pointer; }
.chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 16px;
  border: 1.5px solid #E2E8F0;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-light);
  background: #FFFFFF;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}
.chip:hover span { border-color: var(--amber); color: var(--amber); }
.chip input:checked + span {
  border-color: var(--amber);
  background: var(--amber);
  color: var(--ink-black);
}
.chip input:focus-visible + span { outline: 2px solid var(--amber); outline-offset: 2px; }

/* Light form variant */
.form-light .form-group input,
.form-light .form-group select,
.form-light .form-light .form-group textarea {
  background: var(--white);
  border-color: #CBD5E0;
  color: var(--ink-black);
}
.form-light .form-group label { color: var(--ink-black); }

/* ── ═══════════════════════════
   FAQ SECTION
   ═══════════════════════════ */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-black);
  user-select: none;
  min-height: 44px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-question:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; border-radius: 2px; }
.faq-question svg {
  width: 20px; height: 20px;
  color: var(--amber);
  flex-shrink: 0;
  transition: transform 250ms ease;
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease, padding 200ms ease;
  padding: 0;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding-bottom: 20px;
}
.faq-answer p { font-size: 0.9375rem; color: var(--slate-light); line-height: 1.75; }

/* ── ═══════════════════════════
   COST TABLE
   ═══════════════════════════ */
.cost-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
table.cost-table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; }
.cost-table thead th {
  background: #F3F4F6;
  padding: 14px 20px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  border-bottom: 1px solid var(--border-amber);
  white-space: nowrap;
}
.cost-table tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  color: var(--slate);
  vertical-align: middle;
}
.cost-table tbody tr:last-child td { border-bottom: none; }
.cost-table tbody tr:hover td { background: rgba(0,0,0,0.02); }
.cost-table td:first-child { font-weight: 600; color: var(--ink-black); }
.cost-table .price { color: var(--amber); font-weight: 700; font-family: 'Bebas Neue', sans-serif; }

/* ── ═══════════════════════════
   BLOG
   ═══════════════════════════ */
.blog-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  border-color: var(--border-amber);
}
.blog-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #E5E7EB 0%, #F3F4F6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-body { padding: 24px; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.8125rem;
  color: var(--slate);
}
.blog-category {
  color: var(--amber);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.blog-card h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
  color: var(--ink-black);
  line-height: 1.35;
}
.blog-card p { font-size: 0.875rem; color: var(--slate); line-height: 1.65; }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--amber);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 16px;
}
.blog-read-more svg { width: 14px; height: 14px; transition: transform var(--transition); }
.blog-card:hover .blog-read-more svg { transform: translateX(4px); }

/* Article body */
.article-body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--slate);
}
.article-body h2 { color: var(--ink-black); margin: 48px 0 16px; font-size: 1.75rem; }
.article-body h3 { color: var(--ink-black); margin: 32px 0 12px; font-size: 1.25rem; }
.article-body p  { margin-bottom: 20px; max-width: 100%; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 20px; }
.article-body li { margin-bottom: 8px; color: var(--slate-light); }
.article-body strong { color: var(--ink-black); }
.article-body .highlight-box {
  background: rgba(212,130,10,0.07);
  border-left: 4px solid var(--amber);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0;
}
.article-body .highlight-box p { color: var(--white); margin: 0; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--slate);
  padding: 16px 0;
}
.breadcrumb a { color: var(--slate); }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb .sep { color: rgba(0,0,0,0.2); }
.breadcrumb .current { color: var(--ink-black); }

/* ── ═══════════════════════════
   PROCESS STEPS
   ═══════════════════════════ */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: rgba(0,0,0,0.07); border: 1px solid rgba(0,0,0,0.09); border-radius: var(--radius); overflow: hidden; }
@media (max-width: 1023px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 599px) { .process-steps { grid-template-columns: 1fr; } }
.process-step { background: var(--card-bg); padding: 32px; }
.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(212,130,10,0.3);
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h4 { margin-bottom: 8px; font-size: 1rem; }
.process-step p { font-size: 0.875rem; color: var(--slate); }

/* ── ═══════════════════════════
   FOOTER
   ═══════════════════════════ */
.footer {
  background: #080B10;
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 1023px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 599px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
.footer-brand h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-brand p { font-size: 0.875rem; color: var(--slate); margin-bottom: 20px; max-width: 280px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--slate-light);
  margin-bottom: 10px;
  font-weight: 500;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--amber); flex-shrink: 0; }
.footer-contact-item a:hover { color: var(--amber); }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--slate);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.8125rem; color: var(--slate); }
.footer-licenses {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ── ═══════════════════════════
   STICKY MOBILE CALL BAR
   ═══════════════════════════ */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: var(--z-sticky);
  background: var(--amber);
  color: var(--ink-black);
  text-align: center;
  padding: 14px 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background var(--transition);
  safe-area-inset-bottom: env(safe-area-inset-bottom);
  padding-bottom: calc(14px + env(safe-area-inset-bottom));
}
.mobile-call-bar:hover { background: var(--gold-light); color: var(--ink-black); }
@media (max-width: 767px) {
  .mobile-call-bar { display: block; }
  body { padding-bottom: 56px; }
}

/* ── ═══════════════════════════
   PAGE HERO (Inner Pages)
   ═══════════════════════════ */
.page-hero {
  background: #F3F4F6;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: calc(var(--nav-height) + 36px) 0 48px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(212,130,10,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .breadcrumb { margin-bottom: 20px; }
.page-hero h1 { margin-bottom: 16px; max-width: 800px; color: var(--ink-black); }
.page-hero .subtitle { font-size: 1.0625rem; color: var(--slate); max-width: 560px; margin-bottom: 28px; }
.page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

/* ── ═══════════════════════════
   UTILITY
   ═══════════════════════════ */
.text-amber  { color: var(--amber); }
.text-slate  { color: var(--slate); }
.text-white  { color: var(--white); }
.text-green  { color: var(--green); }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-amber), transparent);
  margin: 64px 0;
  opacity: 0.6;
}

.checklist { list-style: none; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--slate-light);
}
.checklist li:last-child { border-bottom: none; }
.check-icon {
  width: 20px; height: 20px;
  background: rgba(34,201,122,0.12);
  border: 1px solid rgba(34,201,122,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-icon svg { width: 11px; height: 11px; color: var(--green); }

/* ── Free Quote LP ── */
.lp-page { background: var(--ink-black); min-height: 100vh; }
.lp-header {
  background: var(--steel-dark);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lp-hero {
  padding: 64px 24px;
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
}
.lp-logo { height: 30px; width: auto; display: block; }
@media (min-width: 600px) { .lp-logo { height: 34px; } }

.lp-form-wrap {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
  max-width: 540px;
  margin: 0 auto;
  box-shadow: 0 24px 70px -28px rgba(0,0,0,0.55), 0 2px 8px -2px rgba(0,0,0,0.12);
  overflow: hidden;
}
/* Premium accent bar along the top of the card */
.lp-form-wrap::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--gold-light));
}
@media (max-width: 599px) { .lp-form-wrap { padding: 32px 22px; border-radius: 14px; } }
.lp-trust {
  max-width: 540px;
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  text-align: center;
}
.lp-trust-item {
  font-size: 0.75rem;
  color: var(--slate);
  line-height: 1.4;
}
.lp-trust-icon { color: var(--green); margin-bottom: 4px; font-size: 1rem; }

/* ═══════════════════════════
   ANIMATIONS
   ═══════════════════════════ */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulseRing {
  0%   { transform: scale(1);   box-shadow: 0 0 0 0   rgba(212,130,10,0.5); }
  70%  { transform: scale(1.02); box-shadow: 0 0 0 12px rgba(212,130,10,0); }
  100% { transform: scale(1);   box-shadow: 0 0 0 0   rgba(212,130,10,0); }
}
@keyframes gradientSlide {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Scroll-triggered classes (JS sets opacity/transform initially) ── */
.animate-up    { animation: fadeInUp   0.65s cubic-bezier(0.22,0.61,0.36,1) both; }
.animate-left  { animation: fadeInLeft 0.65s cubic-bezier(0.22,0.61,0.36,1) both; }
.animate-right { animation: fadeInRight 0.65s cubic-bezier(0.22,0.61,0.36,1) both; }
.animate-scale { animation: scaleIn    0.55s cubic-bezier(0.22,0.61,0.36,1) both; }

/* ── Delay helpers ── */
.delay-1  { animation-delay: 0.10s; }
.delay-2  { animation-delay: 0.20s; }
.delay-3  { animation-delay: 0.30s; }
.delay-4  { animation-delay: 0.40s; }
.delay-5  { animation-delay: 0.50s; }
.delay-6  { animation-delay: 0.60s; }

/* ── Staggered children (applied via JS on service-card, testimonial-card) ── */
.stagger-children > *:nth-child(1) { animation-delay: 0.05s; }
.stagger-children > *:nth-child(2) { animation-delay: 0.15s; }
.stagger-children > *:nth-child(3) { animation-delay: 0.25s; }
.stagger-children > *:nth-child(4) { animation-delay: 0.35s; }
.stagger-children > *:nth-child(5) { animation-delay: 0.45s; }
.stagger-children > *:nth-child(6) { animation-delay: 0.55s; }

/* ── Pulsing CTA button ── */
.btn-pulse { animation: pulseRing 2.2s ease-out infinite; }

/* ── Floating element ── */
.float { animation: float 4s ease-in-out infinite; }

/* ── Shimmer on stat numbers ── */
.stat-number {
  background: linear-gradient(90deg, var(--amber) 30%, var(--gold-light) 50%, var(--amber) 70%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Image hover zoom ── */
.img-zoom {
  overflow: hidden;
  border-radius: var(--radius);
}
.img-zoom img {
  transition: transform 0.55s cubic-bezier(0.22,0.61,0.36,1);
  width: 100%;
  display: block;
}
.img-zoom:hover img { transform: scale(1.05); }

/* ── Page hero visual upgrade ── */
.page-hero {
  background: linear-gradient(135deg, #0E1117 0%, #1a2235 40%, #0f1824 100%);
  border-bottom: 2px solid rgba(212,130,10,0.3);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(212,130,10,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero h1 { color: #FFFFFF; }
.page-hero .subtitle { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb { color: rgba(255,255,255,0.45); }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.45); }
.page-hero .breadcrumb a:hover { color: var(--amber); }

/* ── Accent bar ── */
.section-accent-bar {
  width: 48px;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
  margin-bottom: 20px;
}

/* ── Gradient section divider ── */
.section-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0.25;
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .animate-up, .animate-left, .animate-right, .animate-scale,
  .btn-pulse, .float, .stat-number {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    -webkit-text-fill-color: var(--amber) !important;
  }
}

/* ── Promo Bar ── */
.promo-bar {
  background: var(--amber);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 48px 10px 20px;
  font-size: 0.875rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 150;
}
.promo-bar__text { flex: 1; min-width: 200px; text-align: center; }
.promo-bar__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.promo-bar__btn {
  background: #fff;
  color: var(--amber);
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.8125rem;
  white-space: nowrap;
  transition: opacity var(--transition);
}
.promo-bar__btn:hover { opacity: 0.85; color: var(--amber); }
.promo-bar__btn--phone {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.promo-bar__btn--phone:hover { background: rgba(255, 255, 255, 0.3); color: #fff; }
.promo-bar__close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 1.375rem;
  line-height: 1;
  cursor: pointer;
  padding: 2px 6px;
  opacity: 0.8;
}
.promo-bar__close:hover { opacity: 1; }
@media (max-width: 600px) {
  .promo-bar { flex-direction: column; gap: 8px; padding: 12px 40px 12px 16px; }
  .promo-bar__text { font-size: 0.8125rem; }
  .promo-bar__close { top: 10px; transform: none; }
}
