/* =========================================================
   EXCAVATION PAUL TÉTREAULT — styles.css
   Industrial / rugged: dark base + safety-orange accent
   ========================================================= */

:root {
  --bg:        #100f0c;
  --bg-2:      #15130f;
  --surface:   #1c1915;
  --surface-2: #23201a;
  --border:    #322c23;

  --text:      #f4efe6;
  --muted:     #ab9f8e;
  --muted-2:   #7d7263;

  --accent:        #ff7a18;   /* safety orange */
  --accent-2:      #ffb020;   /* amber */
  --accent-soft:   rgba(255, 122, 24, 0.12);
  --accent-line:   rgba(255, 122, 24, 0.30);

  --grad-accent: linear-gradient(135deg, #ffb020 0%, #ff7a18 55%, #ef5805 100%);
  --grad-text:   linear-gradient(135deg, #ffc24d 0%, #ff8c1a 55%, #ff6a00 100%);
  --shadow:      0 18px 50px -12px rgba(0, 0, 0, 0.75);
  --shadow-sm:   0 8px 24px -8px rgba(0, 0, 0, 0.65);

  --radius:    16px;
  --radius-sm: 11px;
  --maxw:      1180px;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);

  --font:    "Manrope", "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  --display: "Oswald", "Arial Narrow", "Segoe UI", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font); background: var(--bg); color: var(--text);
  line-height: 1.65; font-size: 17px; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section--tight { padding: 72px 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-size: 0.92rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 24px; height: 3px; background: var(--accent); }

.section-title {
  font-family: var(--display); font-weight: 700; line-height: 1.08; letter-spacing: 0.01em; text-transform: uppercase;
  font-size: clamp(1.9rem, 4.2vw, 3rem); margin-bottom: 18px;
}
.section-intro { color: var(--muted); max-width: 640px; font-size: 1.05rem; }
.text-center { text-align: center; }
.text-center .section-intro { margin-left: auto; margin-right: auto; }
.gradient-text { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

/* Hazard stripe accent */
.hazard { height: 8px; width: 100%;
  background: repeating-linear-gradient(-45deg, #ff7a18 0 22px, #15130f 22px 44px); opacity: 0.9; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px; border-radius: 8px; font-weight: 700; font-size: 0.98rem; line-height: 1;
  border: 1px solid transparent; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--grad-accent); color: #1a0e02; box-shadow: 0 10px 26px -8px rgba(255, 122, 24, 0.55); }
.btn-primary:hover { box-shadow: 0 16px 38px -10px rgba(255, 122, 24, 0.7); }
.btn-accent { background: var(--accent); color: #1a0e02; box-shadow: 0 10px 26px -8px rgba(255, 122, 24, 0.5); }
.btn-accent:hover { background: #ff8c33; }
.btn-ghost { background: rgba(255,255,255,0.04); color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-block { width: 100%; }
.btn-lg { padding: 17px 32px; font-size: 1.05rem; }

/* Header / Nav */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background .35s var(--ease), border-color .35s; border-bottom: 1px solid transparent; }
.header.scrolled { background: rgba(16, 15, 12, 0.86); backdrop-filter: blur(14px) saturate(150%); border-bottom-color: var(--border); }
.header .container { max-width: 1320px; }
.nav { display: grid; grid-template-columns: minmax(0,1fr) auto minmax(0,1fr); align-items: center; height: 76px; gap: 18px; }
.brand { justify-self: start; display: flex; align-items: center; gap: 12px; }
.brand img { width: 42px; height: 42px; }
.brand-name { font-family: var(--display); font-weight: 700; font-size: 1.16rem; line-height: 0.98; letter-spacing: 0.02em; text-transform: uppercase; }
.brand-name small { display: block; font-size: 0.6rem; font-weight: 500; letter-spacing: 0.3em; color: var(--accent); margin-top: 4px; }

.nav-links { display: flex; align-items: center; justify-content: center; gap: 2px; justify-self: center; }
.nav-links a { padding: 8px 13px; border-radius: 7px; font-weight: 600; font-size: 0.92rem; color: var(--muted); white-space: nowrap; transition: color .2s, background .2s; }
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }

.nav-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; justify-self: end; }
.btn-quote-nav { padding: 10px 18px; font-size: 0.9rem; }

.lang-switch { display: inline-flex; background: var(--surface); border: 1px solid var(--border); border-radius: 999px; padding: 3px; }
.lang-switch button { border: none; background: transparent; color: var(--muted); font-weight: 700; font-size: 0.82rem; padding: 6px 13px; border-radius: 999px; transition: background .2s, color .2s; }
.lang-switch button.active { background: var(--grad-accent); color: #1a0e02; }

.nav-toggle { display: none; background: var(--surface); border: 1px solid var(--border); border-radius: 9px; width: 44px; height: 44px; padding: 0; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--text); position: relative; transition: .3s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--text); transition: .3s; }
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* Hero */
.hero { position: relative; padding: 150px 0 90px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::before { content: ""; position: absolute; inset: 0;
  background: radial-gradient(55% 50% at 78% 12%, rgba(255, 122, 24, 0.16), transparent 70%),
              radial-gradient(50% 45% at 10% 25%, rgba(255, 176, 32, 0.10), transparent 70%); }
.hero-grid { position: absolute; inset: 0;
  background-image: linear-gradient(rgba(120, 95, 55, 0.10) 1px, transparent 1px), linear-gradient(90deg, rgba(120, 95, 55, 0.10) 1px, transparent 1px);
  background-size: 54px 54px; mask-image: radial-gradient(circle at 62% 22%, #000 0%, transparent 75%); -webkit-mask-image: radial-gradient(circle at 62% 22%, #000 0%, transparent 75%); }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px; border-radius: 6px; background: var(--accent-soft); border: 1px solid var(--accent-line); color: var(--accent-2); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.02em; margin-bottom: 26px; }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
.hero h1 { font-family: var(--display); font-weight: 700; line-height: 1.02; letter-spacing: 0.01em; text-transform: uppercase; font-size: clamp(2.5rem, 5.8vw, 4.3rem); margin-bottom: 22px; }
.hero p.lead { font-size: 1.18rem; color: var(--muted); max-width: 545px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 26px; }
.hero-trust div { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 0.92rem; font-weight: 600; }
.hero-trust svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }

.hero-visual { position: relative; }
.hero-card { background: linear-gradient(160deg, var(--surface) 0%, var(--bg-2) 100%); border: 1px solid var(--border); border-radius: 18px; padding: 30px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.hero-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: repeating-linear-gradient(-45deg, #ff7a18 0 16px, #15130f 16px 32px); }
.hero-card .ic-wrap { width: 84px; height: 84px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: var(--accent-soft); border: 1px solid var(--accent-line); margin: 14px 0 22px; }
.hero-card .ic-wrap svg { width: 48px; height: 48px; color: var(--accent); }
.hero-card h3 { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.02em; font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.hero-card p { color: var(--muted); font-size: 0.96rem; margin-bottom: 22px; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hero-stat { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px; }
.hero-stat .num { font-family: var(--display); font-size: 1.8rem; font-weight: 700; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-stat .lbl { font-size: 0.78rem; color: var(--muted); font-weight: 600; }

/* Strip */
.strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-2); padding: 20px 0; overflow: hidden; }
.strip-track { display: flex; gap: 50px; align-items: center; white-space: nowrap; animation: scroll-x 75s linear infinite; width: max-content; }
.strip:hover .strip-track { animation-play-state: paused; }
.strip-track span { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted-2); font-weight: 600; font-size: 1rem; display: inline-flex; align-items: center; gap: 14px; }
.strip-track span::after { content: "◆"; color: var(--accent); font-size: 0.7rem; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; counter-reset: svc; }
.service-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; transition: transform .35s var(--ease), border-color .35s, box-shadow .35s; position: relative; counter-increment: svc; overflow: hidden; }
.service-card::before { content: ""; position: absolute; left: 0; top: 22px; bottom: 22px; width: 3px; background: var(--accent); border-radius: 3px; opacity: 0; transition: opacity .35s; }
.service-card:hover { transform: translateY(-6px); border-color: var(--accent-line); box-shadow: var(--shadow-sm); }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: var(--accent-soft); margin-bottom: 20px; }
.service-icon svg { width: 30px; height: 30px; color: var(--accent); }
.service-card h3 { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.02em; font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 0.96rem; }
.service-card.is-feature { background: linear-gradient(160deg, rgba(255,122,24,0.10), var(--surface) 60%); border-color: var(--accent-line); }
.service-card .tag { display: inline-block; margin-top: 16px; font-family: var(--display); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-2); }

/* Feature block (drainage) */
.feature { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.feature-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature-visual { position: relative; border-radius: 18px; min-height: 360px; overflow: hidden; background: linear-gradient(150deg, #1d1812, #14110d); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }
.feature-visual .glow { width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(255,122,24,0.3), transparent 65%); position: absolute; filter: blur(8px); animation: pulse 3.5s ease-in-out infinite; }
.feature-visual .big-ic { position: relative; z-index: 2; width: 130px; height: 130px; color: var(--accent); filter: drop-shadow(0 0 22px rgba(255,122,24,0.55)); }
.feature-visual .chip { position: absolute; z-index: 3; background: rgba(16,15,12,0.85); border: 1px solid var(--border); backdrop-filter: blur(8px); border-radius: 8px; padding: 10px 14px; font-family: var(--display); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; font-size: 0.82rem; display: flex; align-items: center; gap: 8px; }
.feature-visual .chip svg { width: 16px; height: 16px; color: var(--accent-2); }
.feature-visual .chip-1 { top: 26px; left: 26px; } .feature-visual .chip-2 { bottom: 26px; right: 26px; }
.feature-list { display: grid; gap: 16px; margin: 28px 0 32px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .check { flex-shrink: 0; width: 26px; height: 26px; border-radius: 6px; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.feature-list .check svg { width: 15px; height: 15px; color: var(--accent); }
.feature-list b { display: block; font-weight: 700; } .feature-list span { color: var(--muted); font-size: 0.95rem; }

/* Why / Process / Area / Reviews / FAQ — shared grids */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 52px; }
.why-card { text-align: center; padding: 28px 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); transition: transform .3s var(--ease), border-color .3s; }
.why-card:hover { transform: translateY(-4px); border-color: var(--accent-line); }
.why-card .why-icon { width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 12px; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; }
.why-card .why-icon svg { width: 30px; height: 30px; color: var(--accent); }
.why-card h3 { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.02em; font-size: 1.12rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { color: var(--muted); font-size: 0.92rem; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 52px; }
.step { position: relative; padding: 28px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.step .step-num { font-family: var(--display); font-size: 2.6rem; font-weight: 700; line-height: 1; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 12px; }
.step h3 { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.02em; font-size: 1.12rem; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.93rem; }

.area { background: var(--bg-2); border-top: 1px solid var(--border); }
.area-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.area-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.area-tags span { padding: 9px 18px; background: var(--surface); border: 1px solid var(--border); border-radius: 6px; font-weight: 700; font-size: 0.9rem; transition: border-color .25s, color .25s; }
.area-tags span:hover { border-color: var(--accent); color: var(--accent); }
.area-note { margin-top: 26px; padding: 16px 20px; background: var(--accent-soft); border: 1px solid var(--accent-line); border-radius: var(--radius-sm); color: var(--text); font-size: 0.95rem; display: flex; gap: 12px; align-items: center; }
.area-note svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; }
.map-card { border: 1px solid var(--border); border-radius: 18px; overflow: hidden; background: var(--surface); min-height: 340px; }
.map-card iframe { width: 100%; height: 100%; min-height: 340px; border: 0; filter: grayscale(0.4) sepia(0.3) hue-rotate(-10deg) brightness(0.85) contrast(0.95); }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.review { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; }
.review .stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--accent-2); }
.review .stars svg { width: 18px; height: 18px; }
.review p { color: var(--text); font-size: 1rem; margin-bottom: 22px; flex-grow: 1; }
.review .who { display: flex; align-items: center; gap: 12px; }
.review .avatar { width: 44px; height: 44px; border-radius: 8px; background: var(--grad-accent); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 700; color: #1a0e02; }
.review .who b { display: block; font-size: 0.95rem; } .review .who span { color: var(--muted); font-size: 0.84rem; }

.faq { max-width: 820px; margin: 52px auto 0; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 14px; background: var(--surface); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; color: var(--text); font-size: 1.05rem; font-weight: 700; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .icon { width: 24px; height: 24px; flex-shrink: 0; color: var(--accent); transition: transform .3s var(--ease); }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 24px 22px; color: var(--muted); }

/* CTA + Contact */
.cta-banner { position: relative; overflow: hidden; border-radius: 18px; padding: 60px; background: linear-gradient(135deg, #241809, #17120c); border: 1px solid var(--accent-line); text-align: center; }
.cta-banner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 80% at 50% 0%, rgba(255,122,24,0.18), transparent 70%); }
.cta-banner > * { position: relative; z-index: 2; }
.cta-banner h2 { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.02em; font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 700; margin-bottom: 14px; }
.cta-banner p { color: var(--muted); max-width: 560px; margin: 0 auto 30px; font-size: 1.08rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 52px; }
.contact-info { display: grid; gap: 18px; align-content: start; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); transition: border-color .25s; }
.contact-item:hover { border-color: var(--accent-line); }
.contact-item .ci-icon { width: 46px; height: 46px; border-radius: 10px; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item .ci-icon svg { width: 22px; height: 22px; color: var(--accent); }
.contact-item .ci-label { font-family: var(--display); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 600; margin-bottom: 4px; }
.contact-item .ci-value { font-size: 1.08rem; font-weight: 700; word-break: break-word; }
.contact-item .ci-value a:hover { color: var(--accent); }
.contact-item .ci-sub { color: var(--muted); font-size: 0.88rem; }

.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.form-card h3 { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.02em; font-size: 1.35rem; font-weight: 700; margin-bottom: 6px; }
.form-card > p { color: var(--muted); font-size: 0.95rem; margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.86rem; font-weight: 700; margin-bottom: 8px; }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea { width: 100%; padding: 13px 16px; background: var(--bg-2); border: 1px solid var(--border); border-radius: 8px; color: var(--text); font-family: inherit; font-size: 0.98rem; transition: border-color .2s, box-shadow .2s; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.84rem; color: var(--muted); margin-top: 14px; text-align: center; }
.form-success { display: none; padding: 16px; background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.4); border-radius: 8px; color: #86efac; font-weight: 600; margin-bottom: 18px; align-items: center; gap: 10px; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; } .form-success.show { display: flex; }

/* Footer */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { color: var(--muted); font-size: 0.95rem; max-width: 300px; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a { width: 42px; height: 42px; border-radius: 9px; background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: border-color .25s, color .25s, transform .25s; color: var(--muted); }
.footer-social a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-col h4 { font-family: var(--display); font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a, .footer-col li { color: var(--muted); font-size: 0.95rem; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 26px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; color: var(--muted); font-size: 0.88rem; }
.footer-bottom .rbq { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: var(--surface); border: 1px solid var(--border); border-radius: 6px; font-weight: 700; color: var(--text); }
.footer-bottom .rbq svg { width: 15px; height: 15px; color: var(--accent); }

/* Floating call (mobile) */
.fab-call { position: fixed; bottom: 22px; right: 22px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: var(--accent); color: #1a0e02; display: none; align-items: center; justify-content: center; box-shadow: 0 12px 30px -6px rgba(255,122,24,0.6); animation: pulse-ring 2.5s infinite; }
.fab-call svg { width: 26px; height: 26px; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(255,122,24,0.5); } 70% { box-shadow: 0 0 0 16px rgba(255,122,24,0); } 100% { box-shadow: 0 0 0 0 rgba(255,122,24,0); } }

/* Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =================== Responsive =================== */
@media (max-width: 980px) {
  .hero-inner, .feature-inner, .area-inner, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; width: 100%; margin: 0 auto; }
  .services-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 1240px) {
  .nav { display: flex; justify-content: space-between; gap: 12px; }
  .brand-name { white-space: nowrap; }
  .nav-links { display: none; position: fixed; top: 76px; left: 0; right: 0; width: 100vw; flex-direction: column; align-items: stretch; gap: 4px; padding: 16px 22px 24px; background: rgba(16,15,12,0.98); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); box-shadow: var(--shadow); max-height: calc(100vh - 76px); overflow-y: auto; }
  body.nav-open .nav-links { display: flex; }
  .nav-links a { padding: 14px 16px; font-size: 1.05rem; border-radius: 9px; }
  .nav-toggle { display: flex; }
  .nav-actions .btn-quote-nav { display: none; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 72px 0; }
  .fab-call { display: flex; }
  .services-grid, .reviews-grid, .why-grid, .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 40px 24px; }
  .hero { padding: 120px 0 64px; }
  .hero p.lead { font-size: 1.08rem; }
  .hero-actions .btn { flex: 1 1 auto; }
  .hero-trust { gap: 14px 20px; }
  .feature-visual { min-height: 280px; }
  .map-card, .map-card iframe { min-height: 300px; }
}
@media (max-width: 460px) {
  .container { padding: 0 18px; }
  .nav { gap: 8px; }
  .brand img { width: 36px; height: 36px; }
  .brand-name { font-size: 1rem; }
  .brand-name small { font-size: 0.54rem; letter-spacing: 0.2em; }
  .lang-switch button { padding: 6px 11px; font-size: 0.78rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
}

/* =========================================================
   DESIGN REFRESH — same theme, fresher look
   ========================================================= */

/* Numbered service cards + richer hover */
.service-card::after {
  content: counter(svc, decimal-leading-zero);
  position: absolute; top: 12px; right: 20px;
  font-family: var(--display); font-weight: 700; font-size: 2.9rem; line-height: 1;
  color: var(--text); opacity: 0.06; pointer-events: none;
  transition: color .35s, opacity .35s;
}
.service-card:hover::after { color: var(--accent); opacity: 0.22; }
.service-card:hover { background: linear-gradient(160deg, rgba(255,122,24,0.08), var(--surface) 55%); }
.service-icon { transition: transform .35s var(--ease), background .35s; }
.service-card:hover .service-icon { transform: translateY(-2px) rotate(-4deg); background: rgba(255,122,24,0.18); }

/* Hero: angled orange depth behind the card + faint watermark */
.hero-visual { position: relative; }
.hero-visual::before {
  content: ""; position: absolute; z-index: 0; inset: 5% -4% 5% 9%;
  background: linear-gradient(135deg, rgba(255,122,24,0.22), rgba(255,176,32,0.05) 55%, transparent 76%);
  transform: skewX(-6deg); border-radius: 20px; filter: blur(6px);
}
.hero-card { position: relative; z-index: 1; }
.hero-copy { position: relative; }
.hero-copy::before {
  content: ""; position: absolute; left: -24px; top: 4px; bottom: 34%;
  width: 4px; border-radius: 4px; background: var(--grad-accent); opacity: 0.85;
}

/* Subtle blueprint texture on the dark bands */
.feature, .area { position: relative; }
.feature::before, .area::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: repeating-linear-gradient(45deg, rgba(255,176,32,0.035) 0 1px, transparent 1px 26px);
}
.feature > .container, .area > .container { position: relative; z-index: 1; }

/* Process steps: top accent + lift on hover, connecting feel */
.step { border-top: 3px solid transparent; transition: border-color .3s, transform .35s var(--ease), box-shadow .35s; }
.step:hover { border-top-color: var(--accent); transform: translateY(-5px); box-shadow: var(--shadow-sm); }

/* Why cards: top accent */
.why-card { border-top: 3px solid transparent; }
.why-card:hover { border-top-color: var(--accent); }

/* Reviews: oversized quote mark */
.review { position: relative; overflow: hidden; }
.review::before {
  content: "\201C"; position: absolute; top: 6px; right: 20px;
  font-family: var(--display); font-weight: 700; font-size: 4.4rem; line-height: 1;
  color: var(--accent); opacity: 0.16; pointer-events: none;
}

/* Section titles: short underline accent (left-aligned blocks) */
.eyebrow::before { transition: width .3s var(--ease); }

@media (max-width: 760px) {
  .hero-copy::before { display: none; }
  .service-card::after { font-size: 2.4rem; }
}
