/* ─── Dform Contracting Ltd — Shared Stylesheet ──── */

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

:root {
  --black:       #000000;
  --dark:        #060608;
  --dark-2:      #0C0D11;
  --dark-3:      #121418;
  --dark-4:      #1A1C22;
  --dark-5:      #22252E;
  --orange:      #F97316;
  --orange-dark: #E06410;
  --silver:      #C4CDD8;
  --silver-dim:  #8A96A4;
  --white:       #F0F2F6;
  --grey:        #4E5668;
  --grey-light:  #7E8FA0;
  --border:      rgba(255,255,255,0.07);
  --border-2:    rgba(255,255,255,0.12);
  --fh:          'Outfit', sans-serif;
  --fb:          'Rubik', sans-serif;
  --nav-h:       72px;
  --ease:        cubic-bezier(0.4,0,0.2,1);
  --t:           0.3s;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--fb); background: var(--dark); color: var(--white); line-height: 1.65; overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

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

/* ─── Layout ─────────────────────────────────────────── */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 110px 0; }

/* ─── Animations ─────────────────────────────────────── */
.reveal       { opacity: 0; transform: translateY(44px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal-left  { opacity: 0; transform: translateX(-44px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal-right { opacity: 0; transform: translateX(44px);  transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal-scale { opacity: 0; transform: scale(0.93); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.visible      { opacity: 1 !important; transform: none !important; }
.d1{transition-delay:.07s} .d2{transition-delay:.14s} .d3{transition-delay:.21s} .d4{transition-delay:.28s}
.d5{transition-delay:.35s} .d6{transition-delay:.42s} .d7{transition-delay:.49s} .d8{transition-delay:.56s}

/* ─── Logo ───────────────────────────────────────────── */
.nav-logo       { display: flex; align-items: center; }
.logo-img       { height: 38px; width: auto; object-fit: contain; }
.logo-text      { display: flex; flex-direction: column; line-height: 1; }
.logo-t1        { font-family: var(--fh); font-size: 1.65rem; font-weight: 900; letter-spacing: -.04em;
                  background: linear-gradient(170deg, #FFFFFF 0%, #C4CDD8 55%, #8A96A4 100%);
                  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.logo-t2        { font-family: var(--fh); font-size: .5rem; font-weight: 600; letter-spacing: .25em;
                  color: var(--silver-dim); text-transform: uppercase; margin-top: 1px; }

/* ─── Nav ────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h); display: flex; align-items: center;
  transition: background var(--t) var(--ease), backdrop-filter var(--t), box-shadow var(--t);
}
.nav.scrolled { background: rgba(6,6,8,.92); backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px); box-shadow: 0 1px 0 var(--border); }
.nav-inner     { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-links     { display: flex; align-items: center; gap: 32px; }
.nav-links a   { font-size: .875rem; font-weight: 500; color: var(--grey-light); transition: color var(--t); cursor: pointer; }
.nav-links a:hover { color: var(--white); }
.nav-btn {
  background: var(--orange); color: var(--white); padding: 10px 22px; border-radius: 7px;
  font-family: var(--fh); font-size: .875rem; font-weight: 700; cursor: pointer; border: none;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.nav-btn:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(249,115,22,.35); }
.nav-toggle    { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform var(--t), opacity var(--t); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 199;
  background: rgba(6,6,8,.97); backdrop-filter: blur(28px); padding: 20px 28px 28px;
  flex-direction: column; gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a  { padding: 14px 0; font-size: 1rem; font-weight: 500; color: var(--grey-light); border-bottom: 1px solid var(--border); transition: color var(--t); }
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--white); }

/* ─── Buttons ────────────────────────────────────────── */
.btn         { display: inline-flex; align-items: center; gap: 9px; padding: 15px 30px; border-radius: 8px; font-family: var(--fh); font-size: .975rem; font-weight: 700; letter-spacing: -.01em; cursor: pointer; border: none; transition: all var(--t) var(--ease); }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 10px 36px rgba(249,115,22,.4); }
.btn-outline { background: rgba(255,255,255,.06); color: var(--white); border: 1px solid var(--border-2); backdrop-filter: blur(12px); }
.btn-outline:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn-white   { background: var(--white); color: var(--orange); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,.3); }
.btn-silver  { background: linear-gradient(135deg, #2A2D36 0%, #1A1C22 100%); color: var(--silver); border: 1px solid rgba(196,205,216,.2); }
.btn-silver:hover { border-color: rgba(196,205,216,.4); transform: translateY(-2px); }

/* ─── Section Tags ───────────────────────────────────── */
.section-tag   { display: inline-block; color: var(--orange); font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 14px; }
.section-title { font-family: var(--fh); font-size: clamp(2rem,5vw,3.4rem); font-weight: 900; line-height: 1.07; letter-spacing: -.04em; color: var(--white); margin-bottom: 18px; }
.section-title em { font-style: normal; background: linear-gradient(135deg, var(--orange) 0%, #FF9A4A 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.section-sub   { font-size: 1.02rem; color: var(--grey-light); max-width: 520px; line-height: 1.78; }

/* ─── Hero (Main) ────────────────────────────────────── */
.hero          { position: relative; height: 100vh; min-height: 680px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg       { position: absolute; inset: 0; will-change: transform; background-size: cover; background-position: center; transform: scale(1.12); }
.hero-overlay  { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(6,6,8,.6) 0%, rgba(6,6,8,.25) 40%, rgba(6,6,8,.94) 100%); }
.hero-content  { position: relative; z-index: 2; text-align: center; max-width: 900px; padding: 0 24px; }

.hero-badge { display: inline-flex; align-items: center; gap: 9px; background: rgba(249,115,22,.1); border: 1px solid rgba(249,115,22,.28); color: var(--orange); padding: 7px 18px; border-radius: 100px; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 28px; opacity: 0; animation: fadeUp .9s var(--ease) .15s forwards; }
.hero-badge-dot { width: 7px; height: 7px; background: var(--orange); border-radius: 50%; animation: blink 2s infinite; }
.hero-title { font-family: var(--fh); font-size: clamp(2.8rem,8.5vw,7rem); font-weight: 900; line-height: 1.0; letter-spacing: -.05em; color: var(--white); margin-bottom: 24px; opacity: 0; animation: fadeUp .9s var(--ease) .35s forwards; }
.hero-title em { font-style: normal; background: linear-gradient(135deg, var(--orange) 0%, #FF9A4A 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub  { font-size: clamp(.95rem,2vw,1.2rem); font-weight: 300; color: rgba(240,242,246,.65); max-width: 540px; margin: 0 auto 40px; line-height: 1.78; opacity: 0; animation: fadeUp .9s var(--ease) .55s forwards; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fadeUp .9s var(--ease) .75s forwards; }
.hero-scroll   { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0; animation: fadeUp .9s var(--ease) 1.1s forwards; cursor: pointer; }
.hero-scroll span { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.3); }
.scroll-line { width: 1px; height: 44px; background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent); animation: scrollAnim 2.2s ease-in-out infinite; }

/* ─── Service Page Hero ──────────────────────────────── */
.svc-hero        { position: relative; height: 62vh; min-height: 480px; display: flex; align-items: flex-end; overflow: hidden; padding-bottom: 64px; }
.svc-hero-bg     { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 8s ease-out; }
.svc-hero-bg.loaded { transform: scale(1.04); }
.svc-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(6,6,8,.3) 0%, rgba(6,6,8,.5) 50%, rgba(6,6,8,.96) 100%); }
.svc-hero-content { position: relative; z-index: 2; }
.breadcrumb       { display: flex; align-items: center; gap: 8px; font-size: .78rem; color: var(--grey-light); margin-bottom: 20px; }
.breadcrumb a     { color: var(--grey-light); transition: color var(--t); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb svg   { width: 14px; height: 14px; color: var(--grey); flex-shrink: 0; }
.svc-hero-tag     { display: inline-flex; align-items: center; gap: 8px; background: rgba(249,115,22,.12); border: 1px solid rgba(249,115,22,.28); color: var(--orange); padding: 6px 16px; border-radius: 100px; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.svc-hero-title   { font-family: var(--fh); font-size: clamp(2.2rem,6vw,5rem); font-weight: 900; line-height: 1.0; letter-spacing: -.05em; margin-bottom: 14px; }
.svc-hero-sub     { font-size: 1.08rem; color: rgba(240,242,246,.7); max-width: 560px; line-height: 1.7; }

/* ─── Stats Bar ──────────────────────────────────────── */
.stats-bar   { background: var(--dark-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid  { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item   { padding: 44px 24px; text-align: center; border-right: 1px solid var(--border); transition: background var(--t); }
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(249,115,22,.04); }
.stat-num    { font-family: var(--fh); font-size: clamp(2rem,4vw,3.2rem); font-weight: 900; background: linear-gradient(135deg, var(--orange) 0%, #FF9A4A 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: -.04em; line-height: 1; margin-bottom: 8px; }
.stat-label  { font-size: .82rem; color: var(--grey-light); font-weight: 400; letter-spacing: .04em; }

/* ─── About ──────────────────────────────────────────── */
.about-grid    { display: grid; grid-template-columns: 1fr 1.05fr; gap: 90px; align-items: center; }
.about-visual  { position: relative; height: 520px; }
.about-img-main { position: absolute; top: 0; left: 0; width: 78%; height: 82%; object-fit: cover; border-radius: 14px; box-shadow: 0 28px 70px rgba(0,0,0,.5); }
.about-img-accent { position: absolute; bottom: 0; right: 0; width: 52%; height: 54%; object-fit: cover; border-radius: 14px; border: 5px solid var(--dark); box-shadow: 0 18px 44px rgba(0,0,0,.45); }
.about-badge-box { position: absolute; top: 24px; right: 8%; background: var(--orange); color: var(--white); padding: 18px 22px; border-radius: 12px; text-align: center; z-index: 3; box-shadow: 0 14px 36px rgba(249,115,22,.45); }
.about-badge-num  { font-family: var(--fh); font-size: 2.2rem; font-weight: 900; line-height: 1; }
.about-badge-text { font-size: .68rem; font-weight: 600; letter-spacing: .06em; opacity: .9; }
.about-list  { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.about-list li { display: flex; align-items: flex-start; gap: 12px; font-size: .93rem; color: var(--grey-light); line-height: 1.65; }
.check-icon  { flex-shrink: 0; width: 20px; height: 20px; margin-top: 2px; color: var(--orange); }

/* ─── Services Grid (Home) ───────────────────────────── */
.services-head { text-align: center; margin-bottom: 64px; }
.services-head .section-sub { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.svc-card  { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 3/4.2; min-height: 300px; cursor: pointer; }
.svc-card:hover { text-decoration: none; }
.svc-bg    { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .65s var(--ease); }
.svc-card:hover .svc-bg { transform: scale(1.08); }
.svc-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,6,8,.97) 0%, rgba(6,6,8,.45) 55%, rgba(6,6,8,.05) 100%); transition: background .4s var(--ease); }
.svc-card:hover .svc-overlay { background: linear-gradient(to top, rgba(6,6,8,1) 0%, rgba(6,6,8,.78) 65%, rgba(249,115,22,.08) 100%); }
.svc-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 26px 22px; }
.svc-num    { font-family: var(--fh); font-size: .7rem; font-weight: 700; letter-spacing: .14em; color: rgba(249,115,22,.65); margin-bottom: 10px; }
.svc-icon   { width: 38px; height: 38px; color: var(--orange); margin-bottom: 12px; transition: transform .35s var(--ease); }
.svc-card:hover .svc-icon { transform: scale(1.18); }
.svc-title  { font-family: var(--fh); font-size: 1.12rem; font-weight: 700; letter-spacing: -.025em; margin-bottom: 4px; }
.svc-line   { width: 0; height: 2px; background: var(--orange); transition: width .45s var(--ease); margin: 10px 0; }
.svc-card:hover .svc-line { width: 40px; }
.svc-desc   { font-size: .83rem; color: rgba(240,242,246,.58); line-height: 1.65; max-height: 0; overflow: hidden; opacity: 0; transition: max-height .45s var(--ease), opacity .45s var(--ease); }
.svc-card:hover .svc-desc { max-height: 80px; opacity: 1; }
.svc-arrow  { position: absolute; top: 20px; right: 20px; width: 32px; height: 32px; background: rgba(249,115,22,0); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background var(--t), transform var(--t); }
.svc-card:hover .svc-arrow { background: var(--orange); transform: scale(1); }
.svc-arrow svg { width: 14px; height: 14px; color: var(--white); opacity: 0; transition: opacity var(--t); }
.svc-card:hover .svc-arrow svg { opacity: 1; }

/* ─── Service Page: Overview ─────────────────────────── */
.overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.overview-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.feat-item { background: var(--dark-3); border: 1px solid var(--border); border-radius: 10px; padding: 18px 20px; transition: border-color var(--t), background var(--t); }
.feat-item:hover { border-color: rgba(249,115,22,.3); background: rgba(249,115,22,.04); }
.feat-icon { width: 32px; height: 32px; color: var(--orange); margin-bottom: 10px; }
.feat-title { font-family: var(--fh); font-size: .9rem; font-weight: 700; margin-bottom: 4px; }
.feat-text  { font-size: .8rem; color: var(--grey-light); line-height: 1.6; }

/* ─── Service Page: Process ──────────────────────────── */
.process-section { background: var(--dark-2); }
.process-grid    { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; margin-top: 64px; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 1px; background: linear-gradient(to right, transparent, var(--border-2) 20%, var(--border-2) 80%, transparent); }
.process-step    { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-num        { width: 56px; height: 56px; background: var(--dark-3); border: 1px solid var(--border-2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--fh); font-size: .9rem; font-weight: 800; color: var(--silver-dim); margin-bottom: 20px; transition: background var(--t), border-color var(--t), color var(--t); }
.process-step:hover .step-num { background: var(--orange); border-color: var(--orange); color: var(--white); }
.step-icon       { width: 24px; height: 24px; color: var(--orange); margin-bottom: 12px; }
.step-title      { font-family: var(--fh); font-size: .92rem; font-weight: 700; margin-bottom: 8px; }
.step-text       { font-size: .78rem; color: var(--grey-light); line-height: 1.6; }

/* ─── Service Page: Gallery ──────────────────────────── */
.gallery-section { background: var(--dark); }
.gallery-grid    { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 56px; }
.gallery-item    { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(6,6,8,.0); display: flex; align-items: center; justify-content: center; transition: background var(--t); }
.gallery-item:hover .gallery-overlay { background: rgba(249,115,22,.12); }
.gallery-zoom    { width: 40px; height: 40px; background: rgba(6,6,8,.7); border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; transform: scale(0.6); transition: opacity var(--t), transform var(--t); }
.gallery-item:hover .gallery-zoom { opacity: 1; transform: scale(1); }
.gallery-zoom svg { width: 18px; height: 18px; color: var(--white); }

/* ─── Service Page: Benefits ─────────────────────────── */
.benefits-section { background: var(--dark-2); }
.benefits-grid    { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 56px; }
.benefit-card     { background: var(--dark-3); border: 1px solid var(--border); border-radius: 14px; padding: 32px 28px; transition: border-color var(--t), transform var(--t); }
.benefit-card:hover { border-color: rgba(249,115,22,.3); transform: translateY(-4px); }
.benefit-icon-box { width: 52px; height: 52px; background: rgba(249,115,22,.1); border: 1px solid rgba(249,115,22,.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: background var(--t), border-color var(--t); }
.benefit-card:hover .benefit-icon-box { background: rgba(249,115,22,.2); border-color: rgba(249,115,22,.4); }
.benefit-icon-box svg { width: 24px; height: 24px; color: var(--orange); }
.benefit-title    { font-family: var(--fh); font-size: 1.05rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: 10px; }
.benefit-text     { font-size: .875rem; color: var(--grey-light); line-height: 1.72; }

/* ─── Related Services ───────────────────────────────── */
.related-section { background: var(--dark); }
.related-grid    { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 52px; }

/* ─── Why / Pillars ──────────────────────────────────── */
.why-grid     { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.why-pillars  { display: flex; flex-direction: column; gap: 30px; margin-top: 36px; }
.why-pillar   { display: flex; gap: 18px; align-items: flex-start; }
.why-icon-box { flex-shrink: 0; width: 50px; height: 50px; background: rgba(249,115,22,.08); border: 1px solid rgba(249,115,22,.16); border-radius: 12px; display: flex; align-items: center; justify-content: center; transition: background var(--t), border-color var(--t); }
.why-pillar:hover .why-icon-box { background: rgba(249,115,22,.16); border-color: rgba(249,115,22,.4); }
.why-icon-box svg { width: 22px; height: 22px; color: var(--orange); }
.why-pillar-title { font-family: var(--fh); font-size: 1.04rem; font-weight: 700; margin-bottom: 5px; }
.why-pillar-text  { font-size: .875rem; color: var(--grey-light); line-height: 1.72; }
.why-visual { position: relative; border-radius: 18px; overflow: hidden; height: 620px; }
.why-visual img { width: 100%; height: 100%; object-fit: cover; }
.why-visual-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(249,115,22,.15) 0%, transparent 60%); }
.why-cert-badge { position: absolute; bottom: 28px; left: 28px; background: rgba(6,6,8,.85); backdrop-filter: blur(16px); border: 1px solid rgba(249,115,22,.3); border-radius: 12px; padding: 16px 20px; display: flex; align-items: center; gap: 12px; }
.why-cert-badge svg { width: 28px; height: 28px; color: var(--orange); flex-shrink: 0; }
.why-cert-title { font-family: var(--fh); font-size: .875rem; font-weight: 700; }
.why-cert-sub   { font-size: .75rem; color: var(--grey-light); }

/* ─── CTA Band ───────────────────────────────────────── */
.cta-band      { background: var(--orange); padding: 88px 0; overflow: hidden; position: relative; }
.cta-band::before { content: ''; position: absolute; top: -40%; left: -10%; width: 500px; height: 500px; border-radius: 50%; background: rgba(255,255,255,.06); pointer-events: none; }
.cta-band::after  { content: ''; position: absolute; bottom: -50%; right: -5%; width: 400px; height: 400px; border-radius: 50%; background: rgba(0,0,0,.08); pointer-events: none; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-band-title { font-family: var(--fh); font-size: clamp(1.8rem,4vw,2.9rem); font-weight: 900; letter-spacing: -.04em; line-height: 1.12; }
.cta-band-sub   { font-size: 1rem; color: rgba(255,255,255,.8); margin-top: 8px; }

/* ─── Quote Form ─────────────────────────────────────── */
.quote-grid     { display: grid; grid-template-columns: 1fr 1.65fr; gap: 80px; align-items: start; }
.quote-contacts { display: flex; flex-direction: column; gap: 22px; margin-top: 40px; }
.quote-contact  { display: flex; gap: 16px; align-items: flex-start; }
.q-icon         { flex-shrink: 0; width: 46px; height: 46px; background: rgba(249,115,22,.1); border-radius: 11px; display: flex; align-items: center; justify-content: center; }
.q-icon svg     { width: 20px; height: 20px; color: var(--orange); }
.q-label        { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); margin-bottom: 3px; }
.q-val          { font-size: .93rem; color: var(--grey-light); }
.quote-form-box { background: var(--dark-2); border: 1px solid var(--border); border-radius: 18px; padding: 42px; }
.form-heading   { font-family: var(--fh); font-size: 1.45rem; font-weight: 800; letter-spacing: -.03em; margin-bottom: 32px; }
.form-row       { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group     { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group.half { margin-bottom: 0; }
label           { font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--grey-light); }
input, select, textarea { background: var(--dark-3); border: 1px solid rgba(255,255,255,.09); border-radius: 9px; padding: 13px 15px; font-family: var(--fb); font-size: .925rem; color: var(--white); outline: none; width: 100%; transition: border-color var(--t), box-shadow var(--t); }
input::placeholder, textarea::placeholder { color: rgba(255,255,255,.22); }
input:focus, select:focus, textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(249,115,22,.14); }
select { appearance: none; cursor: pointer; 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='%237E8FA0' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
select option   { background: var(--dark-2); }
textarea        { resize: vertical; min-height: 118px; }
.form-checks-label { font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--grey-light); margin-bottom: 10px; display: block; }
.form-checks    { display: grid; grid-template-columns: repeat(2,1fr); gap: 9px; margin-bottom: 18px; }
.check-item     { display: flex; align-items: center; gap: 10px; padding: 11px 13px; border: 1px solid rgba(255,255,255,.08); border-radius: 9px; cursor: pointer; transition: border-color var(--t), background var(--t); }
.check-item:hover { border-color: rgba(249,115,22,.35); background: rgba(249,115,22,.05); }
.check-item input[type="checkbox"] { accent-color: var(--orange); width: 16px; height: 16px; flex-shrink: 0; cursor: pointer; }
.check-item span { font-size: .84rem; color: var(--grey-light); user-select: none; }
.form-submit    { background: var(--orange); color: var(--white); border: none; border-radius: 9px; padding: 16px 32px; font-family: var(--fh); font-size: 1rem; font-weight: 700; cursor: pointer; width: 100%; margin-top: 6px; display: flex; align-items: center; justify-content: center; gap: 9px; transition: background var(--t), transform var(--t), box-shadow var(--t); }
.form-submit:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 10px 36px rgba(249,115,22,.4); }
.form-submit:active { transform: translateY(0); }
.form-success   { display: none; text-align: center; padding: 32px 0; }
.form-success svg { width: 56px; height: 56px; color: var(--orange); margin: 0 auto 16px; }
.form-success h3 { font-family: var(--fh); font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
.form-success p  { font-size: .93rem; color: var(--grey-light); }

/* ─── Footer ─────────────────────────────────────────── */
.footer      { background: var(--black); border-top: 1px solid var(--border); padding: 70px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
.footer-desc { font-size: .875rem; color: var(--grey-light); line-height: 1.75; max-width: 250px; margin: 16px 0 24px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--grey-light); cursor: pointer; transition: border-color var(--t), color var(--t), background var(--t); }
.footer-socials a:hover { border-color: var(--orange); color: var(--orange); background: rgba(249,115,22,.08); }
.footer-col-title { font-family: var(--fh); font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--silver-dim); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: .875rem; color: var(--grey-light); cursor: pointer; transition: color var(--t); }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: .78rem; color: var(--grey); }
.footer-copy em { color: var(--orange); font-style: normal; }

/* ─── Keyframes ──────────────────────────────────────── */
@keyframes fadeUp    { from{opacity:0;transform:translateY(32px)} to{opacity:1;transform:translateY(0)} }
@keyframes blink     { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.6)} }
@keyframes scrollAnim{
  0%{transform:scaleY(0);transform-origin:top}
  50%{transform:scaleY(1);transform-origin:top}
  50.01%{transform:scaleY(1);transform-origin:bottom}
  100%{transform:scaleY(0);transform-origin:bottom}
}

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid, .process-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid, .why-grid, .overview-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-visual { height: 360px; }
  .why-visual   { height: 420px; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .quote-grid   { grid-template-columns: 1fr; gap: 52px; }
  .benefits-grid, .related-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid::before { display: none; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-btn { display: none; }
  .nav-toggle { display: flex; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-right: none; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-card { aspect-ratio: 16/9; min-height: 220px; }
  .svc-desc { max-height: 80px !important; opacity: 1 !important; }
  .footer-grid  { grid-template-columns: 1fr; gap: 32px; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .form-row     { grid-template-columns: 1fr; }
  .form-checks  { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .benefits-grid, .related-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 28px; }
  .svc-hero     { height: 55vh; padding-bottom: 40px; }
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .section   { padding: 72px 0; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn       { width: 100%; justify-content: center; }
  .quote-form-box { padding: 28px 20px; }
}
