
/* ──────────────────────────────────────────────
   CSS CUSTOM PROPERTIES
   ────────────────────────────────────────────── */
:root {
  --accent:         #E07B2A;
  --accent-light:   #F5A05A;
  --accent-pale:    #FEF3EA;
  --accent-glow:    rgba(224,123,42,0.25);
  --dark:           #141414;
  --dark2:          #1E1E1E;
  --mid:            #4A4A4A;
  --muted:          #909090;
  --border:         #EAEAEA;
  --bg:             #FFFFFF;
  --bg-soft:        #F8F6F4;
  --r-sm:           10px;
  --r-md:           16px;
  --r-lg:           22px;
  --r-xl:           30px;
  --r-2xl:          40px;
  --shadow-xs:      0 1px 6px   rgba(0,0,0,0.05);
  --shadow-sm:      0 4px 18px  rgba(0,0,0,0.08);
  --shadow-md:      0 10px 36px rgba(0,0,0,0.13);
  --shadow-lg:      0 24px 64px rgba(0,0,0,0.16);
  --shadow-accent:  0 6px 28px  rgba(224,123,42,0.35);
  --max-w:          1380px;
}

/* ──────────────────────────────────────────────
   BASE
   ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
}

/* ──────────────────────────────────────────────
   UTILITY
   ────────────────────────────────────────────── */
.w-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; }

.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.eyebrow span { font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); }
.eyebrow-line { width: 24px; height: 2px; background: var(--accent); border-radius: 2px; }

.sec-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(30px, 3.6vw, 52px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.025em; color: var(--dark);
}
.sec-title span { color: var(--accent); }
.sec-sub { font-size: 16px; line-height: 1.8; color: var(--muted); max-width: 560px; margin-top: 14px; }

.sec       { padding: 108px 48px; }
.sec-soft  { background: var(--bg-soft); }

/* ──────────────────────────────────────────────
   BUTTONS
   ────────────────────────────────────────────── */
.btn-accent {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--accent); color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700;
  padding: 15px 32px; border-radius: 50px; text-decoration: none;
  box-shadow: var(--shadow-accent);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-accent:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(224,123,42,0.45); color: #fff; }

.btn-white {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; color: var(--dark);
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700;
  padding: 14px 30px; border-radius: 50px; text-decoration: none; width: fit-content;
  box-shadow: 0 4px 24px rgba(0,0,0,0.22);
  transition: background .2s, transform .2s;
}
.btn-white:hover { background: var(--accent-pale); transform: translateY(-2px); color: var(--dark); }

.btn-white-solid {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--accent);
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 800;
  padding: 16px 34px; border-radius: 50px; text-decoration: none;
  box-shadow: 0 6px 28px rgba(0,0,0,0.2);
  transition: transform .2s, box-shadow .2s;
}
.btn-white-solid:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,0.28); color: var(--accent); }

.btn-white-outline {
  display: inline-flex; align-items: center; gap: 9px;
  border: 2px solid rgba(255,255,255,0.5); color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700;
  padding: 14px 28px; border-radius: 50px; text-decoration: none;
  transition: border-color .2s, background .2s;
}
.btn-white-outline:hover { border-color: #fff; background: rgba(255,255,255,0.12); color: #fff; }

/* ──────────────────────────────────────────────
   NAVIGATION
   ────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px;
  transition: background .35s, box-shadow .35s, border-color .35s, height .35s;
  border-bottom: 1px solid transparent;
}

/* Transparent state (over hero) */
.site-nav.nav-top { background: transparent; }

/* Solid state (on scroll) */
.site-nav.nav-scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-color: var(--border);
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
  height: 68px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.nav-logo-mark {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(224,123,42,0.4);
  font-size: 18px; color: #fff;
  transition: transform .2s;
}
.nav-logo:hover .nav-logo-mark { transform: rotate(-6deg) scale(1.06); }

.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 17px; letter-spacing: -0.02em;
  transition: color .3s;
}
.nav-top      .nav-logo-name { color: #fff; }
.nav-scrolled .nav-logo-name { color: var(--dark); }

.nav-logo-sub {
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  transition: color .3s;
}
.nav-top      .nav-logo-sub { color: rgba(255,255,255,0.55); }
.nav-scrolled .nav-logo-sub { color: var(--muted); }

/* Links */
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500;
  text-decoration: none; padding: 8px 14px; border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-top      .nav-links a { color: rgba(255,255,255,0.82); }
.nav-top      .nav-links a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav-scrolled .nav-links a { color: var(--mid); }
.nav-scrolled .nav-links a:hover { color: var(--accent); background: var(--accent-pale); }

/* Right side */
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700;
  text-decoration: none; transition: color .3s;
}
.nav-top      .nav-phone { color: rgba(255,255,255,0.8); }
.nav-scrolled .nav-phone { color: var(--dark); }
.nav-phone i { font-size: 13px; color: var(--accent); }

.nav-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 700;
  padding: 11px 22px; border-radius: 50px; text-decoration: none;
  background: var(--accent); color: #fff;
  box-shadow: 0 4px 20px rgba(224,123,42,0.4);
  transition: transform .2s, box-shadow .2s, background .2s;
}
.nav-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(224,123,42,0.5); background: var(--accent-light); color: #fff; }

/* ──────────────────────────────────────────────
   HERO
   ────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: stretch;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover !important; background-position: center !important;
  transform: scale(1.05);
  animation: hZoom 10s cubic-bezier(.25,.46,.45,.94) forwards;
}
@keyframes hZoom { to { transform: scale(1); } }

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg,
      rgba(10,10,10,0.88) 0%,
      rgba(10,10,10,0.65) 42%,
      rgba(10,10,10,0.30) 70%,
      rgba(10,10,10,0.55) 100%
    );
}

.hero-grid {
  position: relative; z-index: 2;
  width: 100%; max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  padding: 140px 56px 100px;
}

/* Left */
.hero-left { padding-right: 64px; animation: hLeft .9s .1s ease both; }
@keyframes hLeft { from { opacity:0; transform:translateX(-32px); } to { opacity:1; transform:translateX(0); } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(224,123,42,0.15);
  border: 1px solid rgba(224,123,42,0.4);
  color: #FFBA7B;
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 50px; margin-bottom: 32px;
  backdrop-filter: blur(8px);
}
.badge-pulse {
  width: 7px; height: 7px; background: var(--accent); border-radius: 50%;
  animation: bPulse 2s ease infinite;
}
@keyframes bPulse {
  0%,100% { opacity:1; transform:scale(1); box-shadow: 0 0 0 0 rgba(224,123,42,0.4); }
  50%      { opacity:.7; transform:scale(.8); }
  70%      { box-shadow: 0 0 0 8px rgba(224,123,42,0); }
}

.hero-h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(50px, 6vw, 88px);
  font-weight: 800; line-height: 1.02; letter-spacing: -0.035em;
  color: #fff; margin-bottom: 26px;
}
.hero-h1 .accent  { color: var(--accent); }
.hero-h1 .outline { -webkit-text-stroke: 2.5px rgba(255,255,255,0.6); color: transparent; display: block; }
.hero-h1 .outline .accent { -webkit-text-stroke: 2.5px var(--accent); color: transparent; }

.hero-sub {
  font-size: 17px; line-height: 1.78;
  color: rgba(255,255,255,0.58);
  max-width: 460px; margin-bottom: 44px;
}

.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 48px; }
.htrust {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50px; padding: 7px 15px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.65);
  backdrop-filter: blur(6px);
}
.htrust i { color: var(--accent); font-size: 11px; }

.hero-stats-row { display: flex; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 36px; }
.hstat { flex: 1; padding-right: 28px; border-right: 1px solid rgba(255,255,255,0.1); margin-right: 28px; }
.hstat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hstat-n {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px; font-weight: 800; line-height: 1;
  color: var(--accent); letter-spacing: -0.03em;
}
.hstat-l { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.45); margin-top: 3px; }

/* Right — quote form */
.hero-right { animation: hRight .9s .25s ease both; }
@keyframes hRight { from { opacity:0; transform:translateX(32px); } to { opacity:1; transform:translateX(0); } }

.quote-form-wrap {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px) saturate(180%);
  border-radius: 28px; padding: 44px 40px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.2);
}

.qf-header { margin-bottom: 28px; }
.qf-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent-pale); color: var(--accent);
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 50px; margin-bottom: 14px;
}
.qf-header h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px; font-weight: 800; color: var(--dark);
  letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 6px;
}
.qf-header p { font-size: 13.5px; color: var(--muted); line-height: 1.5; }

.qf-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.qf-field { display: flex; flex-direction: column; gap: 6px; }
.qf-field.full { grid-column: 1 / -1; }
.qf-field label {
  font-size: 12px; font-weight: 700; color: var(--mid);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.qf-field input,
.qf-field select,
.qf-field textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 12px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--dark);
  background: #FAFAFA; outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  -webkit-appearance: none; appearance: none;
}
.qf-field input:focus,
.qf-field select:focus,
.qf-field textarea:focus {
  border-color: var(--accent); background: #fff;
  box-shadow: 0 0 0 3px rgba(224,123,42,0.12);
}
.qf-field textarea { resize: none; height: 90px; }
.qf-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23909090' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 38px;
}

.qf-submit {
  width: 100%; margin-top: 16px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 800;
  padding: 16px 28px; border-radius: 50px; border: none; cursor: pointer;
  box-shadow: 0 6px 28px rgba(224,123,42,0.45);
  transition: transform .2s, box-shadow .2s, filter .2s;
  letter-spacing: -0.01em;
}
.qf-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(224,123,42,0.55); filter: brightness(1.05); }

.qf-footer {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-top: 16px;
}
.qf-footer-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 11.5px; font-weight: 600; color: var(--muted);
}
.qf-footer-item i { color: var(--accent); font-size: 11px; }
.qf-sep { width: 3px; height: 3px; background: #D0D0D0; border-radius: 50%; }

/* ──────────────────────────────────────────────
   TICKER
   ────────────────────────────────────────────── */
.ticker-wrap { background: var(--accent); height: 48px; overflow: hidden; display: flex; align-items: center; }
.ticker { display: flex; animation: tick 32s linear infinite; white-space: nowrap; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tick-item {
  display: flex; align-items: center; gap: 10px; padding: 0 32px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #fff;
}
.tick-sep { width: 5px; height: 5px; background: rgba(255,255,255,0.4); border-radius: 50%; }

/* ──────────────────────────────────────────────
   DARK INTRO
   ────────────────────────────────────────────── */
.dark-intro {
  background: var(--dark); padding: 100px 48px;
  position: relative; overflow: hidden;
}
.dark-intro::before {
  content: ''; position: absolute; top: -160px; right: -160px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(224,123,42,0.13) 0%, transparent 65%);
  pointer-events: none;
}
.dark-intro::after {
  content: ''; position: absolute; bottom: -100px; left: -100px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(224,123,42,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.dark-intro-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center;
  position: relative; z-index: 1;
}
.dark-intro-left h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px,3.6vw,50px); font-weight: 800;
  color: #fff; line-height: 1.1; letter-spacing: -0.025em; margin-bottom: 18px;
}
.dark-intro-left h2 span { color: var(--accent); }
.dark-intro-left p { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.48); margin-bottom: 36px; max-width: 440px; }

.dark-trust-row { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-chip {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px; padding: 9px 18px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.62);
  transition: background .2s, border-color .2s, color .2s;
}
.trust-chip:hover { background: rgba(224,123,42,0.18); border-color: rgba(224,123,42,0.45); color: var(--accent-light); }
.trust-chip i { color: var(--accent); font-size: 11px; }

.dark-intro-imgs { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 210px 210px; gap: 16px; }
.di-img { border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.5); transition: transform .35s; }
.di-img:hover { transform: scale(1.02); }
.di-img:first-child { grid-row: 1 / 3; border-radius: var(--r-xl); }
.di-img > div { width: 100%; height: 100%; background-size: cover !important; background-position: center !important; transition: transform .5s; }
.di-img:hover > div { transform: scale(1.06); }

/* ──────────────────────────────────────────────
   SERVICES
   ────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 56px; }
.svc-card {
  background: #fff; border-radius: var(--r-lg);
  border: 1.5px solid var(--border); padding: 38px 34px;
  box-shadow: var(--shadow-xs); position: relative; overflow: hidden;
  transition: transform .28s, box-shadow .28s, border-color .28s;
}
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform .32s; border-radius: 0 0 var(--r-lg) var(--r-lg);
}
.svc-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-card:hover::after { transform: scaleX(1); }
.svc-num {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 58px; font-weight: 800;
  color: var(--accent); opacity: .055; position: absolute; top: 14px; right: 18px;
  letter-spacing: -0.05em; line-height: 1;
}
.svc-icon {
  width: 54px; height: 54px; background: var(--accent-pale); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--accent); margin-bottom: 22px;
  transition: background .3s, transform .3s, color .3s;
}
.svc-card:hover .svc-icon { background: var(--accent); color: #fff; transform: scale(1.08) rotate(-4deg); }
.svc-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 19px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.svc-desc  { font-size: 14px; line-height: 1.72; color: var(--muted); margin-bottom: 22px; }
.svc-link  { font-size: 13px; font-weight: 700; color: var(--accent); text-decoration: none; display: inline-flex; align-items: center; gap: 7px; transition: gap .2s; }
.svc-link:hover { gap: 13px; }

/* ──────────────────────────────────────────────
   PANORAMA IMAGE BREAK
   ────────────────────────────────────────────── */
.img-panorama {
  width: 100%; height: 480px;
  background-size: cover !important; background-position: center 40% !important;
  position: relative; overflow: hidden;
}
.img-panorama::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(108deg, rgba(10,10,10,0.76) 0%, rgba(10,10,10,0.22) 55%, transparent 100%);
}
.panorama-text {
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  z-index: 2; max-width: 680px; padding: 0 48px;
}
.panorama-text h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(30px,3.8vw,52px); font-weight: 800; color: #fff;
  line-height: 1.1; letter-spacing: -0.025em; margin-bottom: 16px;
}
.panorama-text p { font-size: 17px; line-height: 1.74; color: rgba(255,255,255,0.72); margin-bottom: 32px; }

/* ──────────────────────────────────────────────
   WHY US
   ────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: var(--max-w); margin: 0 auto; }
.why-images { position: relative; }
.why-img-tall { width: 100%; aspect-ratio: 3/4; background-size: cover !important; background-position: center !important; border-radius: var(--r-2xl); box-shadow: var(--shadow-lg); }
.why-img-sm   { position: absolute; bottom: -28px; right: -28px; width: 54%; aspect-ratio: 1; background-size: cover !important; background-position: center !important; border-radius: var(--r-xl); border: 7px solid var(--bg-soft); box-shadow: var(--shadow-md); }
.why-accent-pill {
  position: absolute; top: 30px; left: -22px;
  background: var(--accent); color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 700;
  padding: 12px 22px; border-radius: 50px; box-shadow: var(--shadow-accent); white-space: nowrap;
}
.why-features { display: flex; flex-direction: column; gap: 13px; margin-top: 40px; }
.why-feat {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 20px; border-radius: var(--r-md);
  border: 1.5px solid var(--border); background: #fff; box-shadow: var(--shadow-xs);
  transition: border-color .22s, box-shadow .22s, transform .22s;
}
.why-feat:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); transform: translateX(5px); }
.feat-icon { width: 42px; height: 42px; flex-shrink: 0; background: var(--accent-pale); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--accent); }
.feat-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.feat-desc  { font-size: 13px; line-height: 1.65; color: var(--muted); }

/* ──────────────────────────────────────────────
   PROCESS
   ────────────────────────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-top: 56px; }
.process-card {
  background: #fff; border-radius: var(--r-lg); border: 1.5px solid var(--border);
  padding: 34px 28px; text-align: center; box-shadow: var(--shadow-xs);
  position: relative; transition: border-color .28s, box-shadow .28s, transform .28s;
}
.process-card:not(:last-child)::after {
  content: '→'; position: absolute; right: -18px; top: 50%; transform: translateY(-50%);
  color: var(--accent); font-size: 20px; font-weight: 700; z-index: 1;
}
.process-card:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); transform: translateY(-5px); }
.process-step {
  width: 56px; height: 56px; margin: 0 auto 20px;
  background: var(--accent-pale); color: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 800;
  transition: background .28s, color .28s;
}
.process-card:hover .process-step { background: var(--accent); color: #fff; }
.process-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.process-desc  { font-size: 13px; line-height: 1.7; color: var(--muted); }

/* ──────────────────────────────────────────────
   PROJECTS MOSAIC
   ────────────────────────────────────────────── */
.img-mosaic {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 300px 300px; gap: 16px; margin-top: 56px;
}
.mosaic-card { border-radius: var(--r-lg); overflow: hidden; position: relative; box-shadow: var(--shadow-sm); transition: box-shadow .3s, transform .3s; }
.mosaic-card:hover { box-shadow: var(--shadow-md); transform: scale(1.015); }
.mosaic-card:first-child { grid-row: 1 / 3; border-radius: var(--r-xl); }
.mosaic-img { width: 100%; height: 100%; background-size: cover !important; background-position: center !important; transition: transform .55s ease; }
.mosaic-card:hover .mosaic-img { transform: scale(1.06); }
.mosaic-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.82) 0%, transparent 52%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 26px; border-radius: inherit;
}
.mosaic-tag  { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-light); margin-bottom: 5px; }
.mosaic-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 700; color: #fff; }
.mosaic-card:first-child .mosaic-name { font-size: 26px; }

/* ──────────────────────────────────────────────
   SPLIT DARK PANEL
   ────────────────────────────────────────────── */
.split-img-section { display: grid; grid-template-columns: 1fr 1fr; }
.split-img { background-size: cover !important; background-position: center !important; min-height: 520px; position: relative; overflow: hidden; }
.split-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, transparent 60%, rgba(30,30,30,0.4)); }
.split-content { background: var(--dark2); padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; }
.split-content .eyebrow span { color: var(--accent-light); }
.split-content .eyebrow-line { background: var(--accent-light); }
.split-content h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(28px,3vw,44px); font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -0.025em; margin-bottom: 18px; }
.split-content > p { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.5); margin-bottom: 36px; }
.split-stats { display: flex; gap: 36px; margin-bottom: 40px; }
.split-stat-n { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 38px; font-weight: 800; color: var(--accent); letter-spacing: -0.025em; line-height: 1; }
.split-stat-l { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 4px; }

/* ──────────────────────────────────────────────
   TESTIMONIALS
   ────────────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 56px; }
.testi-card {
  background: #fff; border-radius: var(--r-lg); border: 1.5px solid var(--border);
  padding: 34px 30px; box-shadow: var(--shadow-xs); position: relative;
  transition: border-color .28s, box-shadow .28s, transform .28s;
}
.testi-card:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); transform: translateY(-6px); }
.testi-quote { font-size: 64px; line-height: 1; color: var(--accent); opacity: .14; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; position: absolute; top: 14px; left: 22px; }
.testi-stars { color: var(--accent); font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-text  { font-size: 14.5px; line-height: 1.78; color: var(--mid); margin-bottom: 26px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 13px; padding-top: 18px; border-top: 1px solid var(--border); }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--accent-pale); color: var(--accent); display: flex; align-items: center; justify-content: center; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 800; }
.testi-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700; color: var(--dark); }
.testi-loc  { font-size: 12px; color: var(--muted); }

/* ──────────────────────────────────────────────
   CTA BANNER
   ────────────────────────────────────────────── */
.cta-banner {
  position: relative; overflow: hidden;
  background-size: cover !important; background-position: center !important;
  min-height: 520px; display: flex; align-items: center;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(224,123,42,0.9) 0%, rgba(15,15,15,0.78) 100%);
}
.cta-banner-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; text-align: center; padding: 90px 48px; }
.cta-banner h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(34px,4.2vw,58px); font-weight: 800; color: #fff; line-height: 1.08; letter-spacing: -0.028em; margin-bottom: 18px; }
.cta-banner-inner > p { font-size: 18px; color: rgba(255,255,255,0.82); line-height: 1.74; margin-bottom: 40px; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ──────────────────────────────────────────────
   SCROLL REVEAL
   ────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ──────────────────────────────────────────────
   FOOTER — TOP BAND
   ────────────────────────────────────────────── */
.footer-top-band {
  background: var(--accent);
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}
.footer-top-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 120% at 0% 50%, rgba(255,255,255,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 80% at 100% 50%, rgba(0,0,0,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.ftb-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative; z-index: 1;
}
.ftb-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
.ftb-dot {
  width: 7px; height: 7px; background: #fff; border-radius: 50%;
  animation: bPulse 2s ease infinite;
}
.ftb-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.025em;
  color: #fff;
}
.ftb-heading span {
  -webkit-text-stroke: 2px rgba(255,255,255,0.7);
  color: transparent;
}
.ftb-sub {
  font-size: 15px; line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px; max-width: 400px;
}
.ftb-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.ftb-btn-solid {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--accent);
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 800;
  padding: 14px 28px; border-radius: 50px; text-decoration: none;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  transition: transform .2s, box-shadow .2s, background .2s;
}
.ftb-btn-solid:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,0.28); background: var(--accent-pale); color: var(--accent); }
.ftb-btn-outline {
  display: inline-flex; align-items: center; gap: 9px;
  border: 2px solid rgba(255,255,255,0.55); color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700;
  padding: 12px 24px; border-radius: 50px; text-decoration: none;
  transition: border-color .2s, background .2s;
}
.ftb-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.12); color: #fff; }
.ftb-btn-outline i { font-size: 12px; transition: transform .2s; }
.ftb-btn-outline:hover i { transform: translateX(4px); }

/* ──────────────────────────────────────────────
   FOOTER — MAIN BODY
   ────────────────────────────────────────────── */
.footer-body {
  background: var(--dark);
  padding: 80px 48px 56px;
}
.footer-body-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 56px;
}

/* Brand col */
.footer-logo {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; margin-bottom: 20px;
}
.footer-logo-mark {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #fff;
  box-shadow: 0 4px 16px rgba(224,123,42,0.4);
  flex-shrink: 0;
}
.footer-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.footer-logo-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 16px; letter-spacing: -0.01em; color: #fff;
}
.footer-logo-sub {
  font-size: 10px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-top: 1px;
}
.footer-brand-desc {
  font-size: 14px; line-height: 1.78;
  color: rgba(255,255,255,0.42);
  margin-bottom: 24px; max-width: 280px;
}

/* Badges */
.footer-badges {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px;
}
.footer-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px; padding: 6px 14px;
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.5);
  transition: background .2s, border-color .2s, color .2s;
}
.footer-badge:hover { background: rgba(224,123,42,0.15); border-color: rgba(224,123,42,0.4); color: var(--accent-light); }
.footer-badge i { color: var(--accent); font-size: 10px; }

/* Socials */
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 15px; text-decoration: none;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.footer-social:hover {
  background: var(--accent); border-color: var(--accent);
  color: #fff; transform: translateY(-3px);
}

/* Column headings */
.footer-col-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Links */
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.footer-links a {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: rgba(255,255,255,0.45);
  text-decoration: none; padding: 6px 0;
  transition: color .2s, gap .2s;
}
.footer-links a i { font-size: 9px; color: var(--accent); opacity: 0; transition: opacity .2s; }
.footer-links a:hover { color: #fff; gap: 12px; }
.footer-links a:hover i { opacity: 1; }

/* Contact items */
.footer-contact-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  text-decoration: none;
  transition: opacity .2s;
}
a.footer-contact-item:hover { opacity: .8; }
.fci-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(224,123,42,0.12);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--accent);
  transition: background .2s;
}
a.footer-contact-item:hover .fci-icon { background: var(--accent); color: #fff; }
.fci-text { display: flex; flex-direction: column; }
.fci-label { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 2px; }
.fci-value { font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,0.65); line-height: 1.5; }

/* Rating block */
.footer-rating {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-md);
  padding: 14px 18px;
}
.footer-rating-stars { display: flex; gap: 3px; color: var(--accent); font-size: 14px; }
.footer-rating-text { font-size: 12.5px; color: rgba(255,255,255,0.5); line-height: 1.4; }
.footer-rating-text strong { color: #fff; font-weight: 700; }

/* ──────────────────────────────────────────────
   FOOTER — BOTTOM BAR
   ────────────────────────────────────────────── */
.footer-bottom-bar {
  background: #0A0A0A;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 48px;
}
.fbb-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.fbb-copy { font-size: 12.5px; color: rgba(255,255,255,0.28); }
.fbb-links { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.fbb-links a { font-size: 12.5px; color: rgba(255,255,255,0.35); text-decoration: none; transition: color .2s; }
.fbb-links a:hover { color: var(--accent-light); }
.fbb-sep { width: 3px; height: 3px; background: rgba(255,255,255,0.2); border-radius: 50%; }

/* ──────────────────────────────────────────────
   BACK TO TOP BUTTON
   ────────────────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 400;
  width: 46px; height: 46px;
  background: var(--accent); color: #fff;
  border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  box-shadow: 0 6px 24px rgba(224,123,42,0.45);
  opacity: 0; transform: translateY(16px);
  transition: opacity .3s, transform .3s, background .2s, box-shadow .2s;
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--accent-light); box-shadow: 0 10px 32px rgba(224,123,42,0.55); transform: translateY(-3px); }

/* ──────────────────────────────────────────────
   FOOTER RESPONSIVE — added into mobile breakpoints below
   ────────────────────────────────────────────── */

/* ──────────────────────────────────────────────
   MOBILE NAV — hamburger
   ────────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; cursor: pointer;
  background: none; border: none; padding: 4px;
  border-radius: 8px;
  transition: background .2s;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.1); }
.nav-top      .nav-hamburger span { background: #fff; }
.nav-scrolled .nav-hamburger span { background: var(--dark); }
.nav-hamburger span {
  display: block; height: 2px; border-radius: 2px;
  transition: transform .3s, opacity .3s, width .3s;
}
.nav-hamburger span:nth-child(1) { width: 22px; }
.nav-hamburger span:nth-child(2) { width: 16px; }
.nav-hamburger span:nth-child(3) { width: 22px; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 22px; }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 22px; }

/* Mobile drawer */
.nav-mobile-drawer {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 290;
  background: var(--dark);
  flex-direction: column;
  padding: 100px 36px 48px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.nav-mobile-drawer.open { transform: translateX(0); }

.nav-mobile-drawer a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px; font-weight: 800;
  color: rgba(255,255,255,0.7);
  text-decoration: none; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  letter-spacing: -0.02em;
  transition: color .2s, padding-left .2s;
  display: block;
}
.nav-mobile-drawer a:hover { color: var(--accent); padding-left: 8px; }

.nav-mobile-bottom {
  margin-top: auto; display: flex; flex-direction: column; gap: 12px;
}
.nav-mobile-bottom .nav-btn { justify-content: center; font-size: 15px; padding: 15px 28px; }
.nav-mobile-phone {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  color: rgba(255,255,255,0.5); font-size: 15px; font-weight: 600;
  text-decoration: none;
}
.nav-mobile-phone i { color: var(--accent); }

/* ──────────────────────────────────────────────
   RESPONSIVE — 1200px (large tablets / small laptops)
   ────────────────────────────────────────────── */
@media (max-width: 1200px) {
  :root { --max-w: 100%; }

  .hero-grid { padding: 130px 48px 90px; gap: 40px; }
  .hero-h1 { font-size: clamp(44px, 5.5vw, 72px); }

  .dark-intro-inner { gap: 56px; }

  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .svc-card { padding: 30px 24px; }

  .img-mosaic { grid-template-columns: 1.3fr 1fr 1fr; }

  .testi-grid { gap: 16px; }
}

/* ──────────────────────────────────────────────
   RESPONSIVE — 1024px (tablets landscape)
   ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  /* Nav */
  .site-nav { padding: 0 28px; }
  .nav-links,
  .nav-phone   { display: none; }
  .nav-hamburger { display: flex; }

  .nav-mobile-drawer { display: flex; }

  /* Layout */
  .w-inner    { padding: 0 32px; }
  .sec        { padding: 80px 32px; }
  .dark-intro { padding: 80px 32px; }

  /* Hero — stack vertically, show form below */
  .hero { min-height: auto; }
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 110px 32px 60px;
    gap: 48px;
  }
  .hero-left  { padding-right: 0; }
  .hero-right { display: block; } /* show form on tablet */
  .quote-form-wrap { padding: 36px 32px; }

  /* Dark intro */
  .dark-intro-inner { grid-template-columns: 1fr; gap: 40px; }
  .dark-intro-imgs  { display: none; }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Why us */
  .why-grid   { grid-template-columns: 1fr; gap: 40px; }
  .why-images { display: none; }

  /* Process */
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .process-card::after { display: none; }

  /* Projects */
  .img-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 240px 240px 240px; }
  .mosaic-card:first-child { grid-row: auto; grid-column: 1 / -1; }
  .mosaic-img { height: 240px; }

  /* Split */
  .split-img-section { grid-template-columns: 1fr; }
  .split-img         { min-height: 320px; }
  .split-content     { padding: 64px 40px; }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; }

  /* Panorama */
  .img-panorama { height: 380px; }
  .panorama-text { padding: 0 32px; max-width: 520px; }

  /* CTA */
  .cta-banner-inner { padding: 72px 32px; }

  /* Footer */
  .footer-top-band   { padding: 56px 32px; }
  .ftb-inner         { grid-template-columns: 1fr; gap: 32px; }
  .footer-body       { padding: 64px 32px 48px; }
  .footer-body-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand-col  { grid-column: 1 / -1; }
  .footer-brand-desc { max-width: 100%; }
  .footer-bottom-bar { padding: 18px 32px; }
  .fbb-inner         { flex-direction: column; align-items: flex-start; gap: 8px; }
  .back-to-top       { bottom: 20px; right: 20px; width: 42px; height: 42px; font-size: 14px; }
}

/* ──────────────────────────────────────────────
   RESPONSIVE — 768px (tablets portrait)
   ────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Nav */
  .site-nav { padding: 0 20px; height: 68px; }
  .nav-scrolled { height: 60px; }
  .nav-logo-name { font-size: 15px; }
  .nav-logo-mark { width: 36px; height: 36px; font-size: 15px; border-radius: 10px; }

  /* Layout */
  .w-inner    { padding: 0 20px; }
  .sec        { padding: 64px 20px; }
  .dark-intro { padding: 64px 20px; }

  /* Hero */
  .hero-grid  { padding: 96px 20px 48px; gap: 36px; }
  .hero-h1    { font-size: clamp(38px, 8vw, 56px); }
  .hero-sub   { font-size: 15px; max-width: 100%; }
  .hero-badge { font-size: 10px; padding: 7px 14px; }

  /* Hero stats */
  .hero-stats-row { gap: 0; }
  .hstat          { padding-right: 20px; margin-right: 20px; }
  .hstat-n        { font-size: 28px; }
  .hstat-l        { font-size: 11px; }

  /* Trust chips */
  .hero-trust { gap: 8px; }
  .htrust     { font-size: 11px; padding: 6px 12px; }

  /* Form */
  .quote-form-wrap { padding: 28px 20px; border-radius: 20px; }
  .qf-row { grid-template-columns: 1fr; gap: 10px; }
  .qf-header h3 { font-size: 20px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .svc-card      { padding: 28px 22px; }

  /* Process */
  .process-grid  { grid-template-columns: 1fr 1fr; gap: 12px; }
  .process-card  { padding: 24px 18px; }
  .process-step  { width: 48px; height: 48px; font-size: 18px; margin-bottom: 14px; }
  .process-title { font-size: 14px; }

  /* Projects */
  .img-mosaic    { grid-template-columns: 1fr; grid-template-rows: auto; gap: 12px; }
  .mosaic-card:first-child { grid-column: auto; }
  .mosaic-img    { height: 220px; }
  .mosaic-card:first-child .mosaic-name { font-size: 20px; }

  /* Split */
  .split-content { padding: 48px 24px; }
  .split-stats   { gap: 24px; }
  .split-stat-n  { font-size: 30px; }

  /* Panorama */
  .img-panorama  { height: 300px; }
  .panorama-text { padding: 0 20px; }
  .panorama-text h2 { font-size: clamp(22px, 5vw, 34px); }
  .panorama-text p  { font-size: 14px; margin-bottom: 20px; }

  /* Why us */
  .why-feat { padding: 14px 16px; gap: 12px; }
  .feat-icon { width: 36px; height: 36px; font-size: 14px; }

  /* Testimonials */
  .testi-card  { padding: 28px 22px; }
  .testi-text  { font-size: 13.5px; }

  /* Dark intro */
  .dark-trust-row { gap: 8px; }
  .trust-chip     { padding: 7px 14px; font-size: 11px; }

  /* CTA */
  .cta-banner { min-height: 420px; }
  .cta-banner-inner { padding: 56px 20px; }
  .cta-btns   { flex-direction: column; align-items: center; gap: 12px; }
  .btn-white-solid,
  .btn-white-outline { width: 100%; max-width: 300px; justify-content: center; }

  /* Sections */
  .sec-title { font-size: clamp(26px, 6vw, 38px); }
  .sec-sub   { font-size: 14px; }

  /* Footer-like eyebrows */
  .eyebrow span { font-size: 10px; }

  /* Footer */
  .footer-top-band   { padding: 48px 20px; }
  .ftb-heading       { font-size: clamp(22px, 5vw, 32px); }
  .ftb-actions       { flex-direction: column; align-items: stretch; gap: 10px; }
  .ftb-btn-solid,
  .ftb-btn-outline   { justify-content: center; }
  .footer-body       { padding: 52px 20px 40px; }
  .footer-body-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand-col  { grid-column: auto; }
  .footer-bottom-bar { padding: 16px 20px; }
  .footer-contact-items { gap: 12px; }
  .fci-icon          { width: 32px; height: 32px; font-size: 13px; }
  .footer-rating     { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* ──────────────────────────────────────────────
   RESPONSIVE — 480px (mobile phones)
   ────────────────────────────────────────────── */
@media (max-width: 480px) {
  /* Nav */
  .site-nav    { padding: 0 16px; }
  .nav-logo-sub { display: none; }

  /* Layout */
  .w-inner    { padding: 0 16px; }
  .sec        { padding: 52px 16px; }
  .dark-intro { padding: 52px 16px; }

  /* Hero */
  .hero-grid  { padding: 88px 16px 40px; gap: 28px; }
  .hero-h1    { font-size: clamp(34px, 9vw, 48px); margin-bottom: 18px; }
  .hero-h1 .outline { -webkit-text-stroke: 2px rgba(255,255,255,0.6); }
  .hero-sub   { font-size: 14px; line-height: 1.65; margin-bottom: 28px; }
  .hero-badge { font-size: 9px; padding: 6px 12px; margin-bottom: 20px; }

  /* Trust chips — wrap tightly */
  .hero-trust { gap: 6px; margin-bottom: 32px; }
  .htrust     { font-size: 10.5px; padding: 5px 10px; gap: 5px; }

  /* Stats row */
  .hero-stats-row { gap: 0; padding-top: 24px; }
  .hstat          { padding-right: 14px; margin-right: 14px; }
  .hstat-n        { font-size: 24px; }
  .hstat-l        { font-size: 10px; }

  /* Form */
  .quote-form-wrap { padding: 24px 16px; border-radius: 16px; }
  .qf-header h3    { font-size: 18px; }
  .qf-header p     { font-size: 12.5px; }
  .qf-submit       { font-size: 13px; padding: 14px 20px; }
  .qf-footer       { gap: 10px; flex-wrap: wrap; justify-content: center; }
  .qf-footer-item  { font-size: 10.5px; }

  /* Services */
  .services-grid { gap: 10px; }
  .svc-card      { padding: 24px 18px; }
  .svc-icon      { width: 46px; height: 46px; font-size: 18px; margin-bottom: 16px; }
  .svc-title     { font-size: 16px; }
  .svc-desc      { font-size: 13px; }

  /* Process */
  .process-grid  { grid-template-columns: 1fr; gap: 10px; }
  .process-card  { padding: 22px 18px; }

  /* Testimonials */
  .testi-grid    { gap: 10px; }
  .testi-card    { padding: 24px 18px; }
  .testi-text    { font-size: 13px; }

  /* Projects */
  .img-mosaic    { gap: 10px; }
  .mosaic-img    { height: 200px; }

  /* Panorama */
  .img-panorama  { height: 260px; }
  .panorama-text { padding: 0 16px; }
  .panorama-text h2 { font-size: clamp(18px, 5.5vw, 28px); }
  .panorama-text p  { display: none; } /* hide on smallest screens */

  /* Split */
  .split-content { padding: 40px 20px; }
  .split-stats   { gap: 16px; }
  .split-stat-n  { font-size: 28px; }
  .split-stat-l  { font-size: 10px; }

  /* Dark intro */
  .dark-intro-left h2 { font-size: clamp(26px, 7vw, 36px); }

  /* CTA */
  .cta-banner         { min-height: 380px; }
  .cta-banner-inner   { padding: 48px 16px; }
  .cta-banner h2      { font-size: clamp(26px, 7vw, 40px); }
  .cta-banner-inner p { font-size: 15px; }
  .btn-white-solid,
  .btn-white-outline  { font-size: 13px; padding: 13px 22px; }

  /* Sections */
  .sec-title { font-size: clamp(24px, 7vw, 32px); }

  /* Mobile drawer larger touch targets */
  .nav-mobile-drawer a { font-size: 24px; padding: 16px 0; }

  /* Footer */
  .footer-top-band   { padding: 40px 16px; }
  .ftb-heading       { font-size: clamp(20px, 6vw, 28px); }
  .ftb-sub           { font-size: 13px; }
  .footer-body       { padding: 44px 16px 36px; }
  .footer-body-inner { gap: 28px; }
  .footer-badges     { gap: 6px; }
  .footer-badge      { font-size: 10px; padding: 5px 10px; }
  .footer-socials    { gap: 8px; }
  .footer-social     { width: 34px; height: 34px; font-size: 13px; border-radius: 8px; }
  .footer-links a    { font-size: 13px; }
  .footer-bottom-bar { padding: 14px 16px; }
  .fbb-copy,
  .fbb-links a       { font-size: 11.5px; }
  .back-to-top       { bottom: 16px; right: 16px; width: 38px; height: 38px; font-size: 13px; }
}