/* ============================================================
   CD GAS & ELECTRIC LTD — Marketing site styles
   Dark + gold premium theme
   ============================================================ */

:root {
  --bg: #0a0a0b;
  --bg-2: #101012;
  --bg-3: #141417;
  --card: #15151a;
  --card-2: #1b1b21;
  --gold: #f5a623;
  --gold-soft: #ffc15a;
  --gold-deep: #d98910;
  --blue: #2f9bff;
  --blue-soft: #66bfff;
  --text: #f5f5f6;
  --muted: #a0a0aa;
  --muted-dim: #74747e;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --gold-glow: rgba(245, 166, 35, 0.35);
  --blue-glow: rgba(47, 155, 255, 0.4);
  --maxw: 1240px;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.7);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --head: "Poppins", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--head);
  font-weight: 700;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 28px; }
.gold { color: var(--gold); }

/* ---- Section framing ---- */
section { position: relative; }
.section-pad { padding: 96px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--head);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.section-head p { color: var(--muted); margin-top: 14px; font-size: 1.02rem; }
.divider {
  width: 64px; height: 3px; margin: 18px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
}

/* ---- Buttons ---- */
.btn {
  --pad: 15px 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: var(--pad);
  border-radius: 999px;
  font-family: var(--head);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s, color 0.3s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 55%, var(--gold-deep));
  color: #1a1206;
  box-shadow: 0 10px 30px -8px var(--gold-glow), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -10px var(--gold-glow), inset 0 1px 0 rgba(255, 255, 255, 0.4); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--line-strong);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); transform: translateY(-3px); }
.btn-block { width: 100%; justify-content: center; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(10, 10, 12, 0.82);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 40px -24px rgba(0, 0, 0, 0.9);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 24px; }

.brand { display: flex; align-items: center; gap: 13px; flex-shrink: 0; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 12px; object-fit: cover;
  box-shadow: 0 0 0 1px var(--line-strong), 0 0 22px -4px var(--gold-glow), 0 0 22px -6px var(--blue-glow);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-family: var(--head); font-weight: 800; font-size: 1.02rem; letter-spacing: 0.02em; }
.brand-text strong .gold { color: var(--gold); }
.brand-text span { font-size: 0.62rem; letter-spacing: 0.32em; color: var(--muted); margin-top: 4px; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-size: 0.84rem; font-weight: 500; color: var(--muted);
  letter-spacing: 0.04em; position: relative; padding: 6px 0;
  transition: color 0.25s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--gold); transition: width 0.3s var(--ease);
}
.nav a:hover, .nav a.active { color: var(--text); }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.pill-phone {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 60%, var(--gold-deep));
  color: #1a1206; font-family: var(--head); font-weight: 700; font-size: 0.86rem;
  padding: 11px 18px; border-radius: 999px;
  box-shadow: 0 8px 22px -8px var(--gold-glow), inset 0 1px 0 rgba(255,255,255,0.4);
  transition: transform 0.3s var(--ease);
}
.pill-phone:hover { transform: translateY(-2px); }
.pill-phone svg { width: 15px; height: 15px; }
.header-mail { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 0.82rem; transition: color 0.25s; }
.header-mail:hover { color: var(--gold-soft); }
.header-mail svg { width: 15px; height: 15px; color: var(--gold); }

.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.burger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 78px 0 auto 0; z-index: 99;
  background: rgba(10,10,12,0.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; padding: 20px 28px 28px;
  gap: 4px; transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: transform 0.35s var(--ease), opacity 0.3s;
}
.drawer.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.drawer a { padding: 14px 4px; border-bottom: 1px solid var(--line); font-family: var(--head); font-weight: 500; letter-spacing: 0.03em; color: var(--muted); }
.drawer a:hover { color: var(--gold-soft); }
.drawer .drawer-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: 150px 0 70px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: #08080b url("assets/hero.jpg") center center / cover no-repeat;
}
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,11,0.88) 0%, rgba(8,8,11,0.62) 28%, rgba(8,8,11,0.18) 52%, rgba(8,8,11,0) 72%),
    linear-gradient(180deg, transparent 62%, var(--bg) 100%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 620px); gap: 40px; align-items: center; }
.hero-emblem { display: none; }

.hero-eyebrow { margin-bottom: 22px; }
.hero h1 {
  font-size: clamp(2.6rem, 6.2vw, 5rem);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.hero h1 .gold { background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .subhead {
  font-family: var(--head); font-weight: 600; font-size: clamp(1.05rem, 2vw, 1.5rem);
  text-transform: uppercase; letter-spacing: 0.02em; margin-top: 18px; color: #e8e8ea;
}
.hero p.lead { color: var(--muted); font-size: 1.05rem; max-width: 480px; margin: 22px 0 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-gold .calltext { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; }
.btn-gold .calltext small { font-size: 0.62rem; letter-spacing: 0.14em; opacity: 0.7; font-weight: 700; }
.btn-gold .calltext b { font-size: 0.95rem; }

/* Trust strip */
.trust {
  position: relative; z-index: 3; margin-top: 56px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(180deg, var(--card), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.trust-item { display: flex; align-items: center; gap: 15px; padding: 24px 26px; border-left: 1px solid var(--line); }
.trust-item:first-child { border-left: 0; }
.trust-ico {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center; color: var(--gold);
  background: radial-gradient(circle at 30% 25%, rgba(245,166,35,0.22), rgba(245,166,35,0.05));
  border: 1px solid rgba(245,166,35,0.25);
}
.trust-ico svg { width: 22px; height: 22px; }
.trust-item h4 { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }
.trust-item p { margin: 3px 0 0; font-size: 0.78rem; color: var(--muted-dim); }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.carousel-shell { position: relative; }
.carousel {
  display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 8px 4px 26px; scrollbar-width: none; scroll-behavior: smooth;
}
.carousel::-webkit-scrollbar { display: none; }
.svc-card {
  scroll-snap-align: start; flex: 0 0 268px;
  background: linear-gradient(180deg, var(--card), var(--bg-3));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.svc-card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(420px 200px at 50% -10%, rgba(245,166,35,0.14), transparent 70%);
  opacity: 0; transition: opacity 0.4s;
}
.svc-card:hover { transform: translateY(-8px); border-color: rgba(245,166,35,0.4); box-shadow: 0 30px 50px -26px rgba(0,0,0,0.8); }
.svc-card:hover::after { opacity: 1; }
.svc-ico {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  color: var(--gold); margin-bottom: 22px;
  background: radial-gradient(circle at 30% 25%, rgba(245,166,35,0.2), rgba(245,166,35,0.04));
  border: 1px solid rgba(245,166,35,0.22);
}
.svc-ico svg { width: 28px; height: 28px; }
.svc-card h3 { font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.02em; }
.svc-card p { color: var(--muted); font-size: 0.9rem; margin: 12px 0 22px; min-height: 44px; }
.learn { display: inline-flex; align-items: center; gap: 7px; color: var(--gold); font-family: var(--head); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.04em; text-transform: uppercase; transition: gap 0.3s; }
.learn:hover { gap: 12px; }

.carousel-arrows { display: flex; gap: 12px; }
.car-arrow {
  width: 50px; height: 50px; border-radius: 50%; cursor: pointer;
  background: var(--card-2); border: 1px solid var(--line-strong); color: var(--text);
  display: grid; place-items: center; transition: all 0.3s var(--ease);
}
.car-arrow:hover { background: var(--gold); color: #1a1206; border-color: var(--gold); transform: scale(1.05); }
.car-arrow svg { width: 20px; height: 20px; }
.carousel-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.dots { display: flex; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line-strong); transition: all 0.3s; }
.dot.active { background: var(--gold); width: 26px; border-radius: 4px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { position: relative; overflow: hidden; background: var(--bg-2); }
.about-photo {
  position: absolute; left: 0; top: 0; bottom: 0; width: 46%; z-index: 0;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; display: block; }
.about-photo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, transparent 56%, rgba(16,16,18,0.65) 80%, var(--bg-2) 100%),
    linear-gradient(180deg, rgba(16,16,18,0.55) 0%, transparent 16%, transparent 84%, rgba(16,16,18,0.55) 100%);
}
.about .wrap { position: relative; z-index: 1; }
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: center; }
.about-spacer { min-height: 1px; }

.about-copy .eyebrow { margin-bottom: 16px; }
.about-copy h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); text-transform: uppercase; }
.about-copy > p { color: var(--muted); margin: 20px 0 26px; font-size: 1.02rem; max-width: 540px; }
.checklist { display: flex; flex-direction: column; gap: 14px; margin-bottom: 30px; }
.checklist li { display: flex; align-items: center; gap: 13px; font-weight: 500; }
.check-ico { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: rgba(245,166,35,0.14); color: var(--gold); border: 1px solid rgba(245,166,35,0.3); }
.check-ico svg { width: 14px; height: 14px; }

.badges { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }
.badge {
  display: flex; align-items: center; gap: 13px; padding: 14px 18px;
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
}
.badge-gassafe { width: 46px; height: 46px; border-radius: 9px; background: linear-gradient(160deg, #ffd83a, #f5a623); color: #111; display: grid; place-items: center; font-family: var(--head); font-weight: 800; flex-shrink: 0; box-shadow: inset 0 1px 0 rgba(255,255,255,0.5); }
.badge-gassafe svg { width: 26px; height: 26px; }
.badge-napit { width: 46px; height: 46px; border-radius: 9px; background: #fff; color: var(--blue); display: grid; place-items: center; font-family: var(--head); font-weight: 800; font-size: 0.62rem; flex-shrink: 0; }
.badge b { font-family: var(--head); font-size: 0.86rem; display: block; }
.badge span { font-size: 0.74rem; color: var(--muted); }

.callout {
  display: flex; align-items: center; gap: 18px; padding: 22px 26px; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(245,166,35,0.16), rgba(245,166,35,0.04));
  border: 1px solid rgba(245,166,35,0.4); box-shadow: 0 0 40px -18px var(--gold-glow);
}
.callout-ico { flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: var(--gold); color: #1a1206; box-shadow: 0 0 26px -6px var(--gold-glow); }
.callout-ico svg { width: 26px; height: 26px; }
.callout h4 { font-family: var(--head); text-transform: uppercase; font-size: 0.92rem; letter-spacing: 0.04em; }
.callout p { margin: 4px 0 0; font-size: 0.88rem; color: var(--muted); }
.callout a { color: var(--gold); font-weight: 700; }

/* ============================================================
   PRICE LIST
   ============================================================ */
.pricing { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.price-col {
  background: linear-gradient(180deg, var(--card), var(--bg-3));
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.price-head {
  display: grid; grid-template-columns: 1fr auto; padding: 16px 26px;
  font-family: var(--head); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); border-bottom: 1px solid var(--line-strong);
  background: rgba(245,166,35,0.05);
}
.price-row {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 16px;
  padding: 17px 26px; border-bottom: 1px solid var(--line); transition: background 0.25s;
}
.price-row:last-child { border-bottom: 0; }
.price-row:hover { background: rgba(255,255,255,0.025); }
.price-row .svc { font-size: 0.92rem; }
.price-row .amt { font-family: var(--head); font-weight: 700; color: var(--gold-soft); font-size: 1.02rem; }
.price-note { text-align: center; margin-top: 28px; color: var(--muted-dim); font-size: 0.88rem; display: flex; align-items: center; justify-content: center; gap: 9px; }
.price-note svg { width: 16px; height: 16px; color: var(--gold); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--bg); }
.review-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: linear-gradient(180deg, var(--card), var(--bg-3));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 30px; position: relative;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.review-card:hover { transform: translateY(-6px); border-color: rgba(245,166,35,0.3); }
.quote-mark { font-family: Georgia, serif; font-size: 4rem; line-height: 0.6; color: rgba(245,166,35,0.25); position: absolute; top: 22px; right: 26px; }
.stars { display: flex; gap: 4px; color: var(--gold); margin-bottom: 18px; }
.stars svg { width: 19px; height: 19px; }
.review-card p { color: #d6d6da; font-size: 0.98rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-family: var(--head); font-weight: 700; color: #1a1206; background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep)); }
.review-author b { font-family: var(--head); font-size: 0.92rem; }
.review-author span { display: block; font-size: 0.76rem; color: var(--muted-dim); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; }
.contact-info .eyebrow { margin-bottom: 14px; }
.contact-info h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); text-transform: uppercase; margin-bottom: 30px; }
.contact-list { display: flex; flex-direction: column; gap: 8px; }
.contact-row { display: flex; align-items: center; gap: 16px; padding: 16px 18px; border-radius: 14px; border: 1px solid var(--line); background: var(--card); transition: border-color 0.3s, transform 0.3s; }
.contact-row:hover { border-color: rgba(245,166,35,0.35); transform: translateX(4px); }
.contact-row .c-ico { flex-shrink: 0; width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; color: var(--gold); background: radial-gradient(circle at 30% 25%, rgba(245,166,35,0.2), rgba(245,166,35,0.04)); border: 1px solid rgba(245,166,35,0.22); }
.contact-row .c-ico svg { width: 20px; height: 20px; }
.contact-row b { font-family: var(--head); font-size: 0.95rem; }
.contact-row span { display: block; font-size: 0.8rem; color: var(--muted); }

.contact-form {
  background: linear-gradient(180deg, var(--card), var(--bg-3));
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 1.4rem; text-transform: uppercase; margin-bottom: 6px; }
.contact-form .form-sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 26px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: 0.92rem; color: var(--text);
  background: var(--bg); border: 1px solid var(--line-strong); border-radius: 11px;
  padding: 13px 15px; transition: border-color 0.25s, box-shadow 0.25s; width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245,166,35,0.14);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23a0a0aa' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px; }
.field .err { color: #ff8a7a; font-size: 0.72rem; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #ff6a55; }
.field.invalid .err { display: block; }
.form-success { display: none; align-items: center; gap: 12px; margin-top: 18px; padding: 16px 18px; border-radius: 12px; background: rgba(50,200,120,0.12); border: 1px solid rgba(50,200,120,0.4); color: #7be0a8; font-size: 0.9rem; }
.form-success.show { display: flex; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #08080a; border-top: 1px solid var(--line); padding: 28px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer p { color: var(--muted-dim); font-size: 0.84rem; }
.footer-links { display: flex; align-items: center; gap: 24px; }
.footer-links a { color: var(--muted); font-size: 0.84rem; transition: color 0.25s; }
.footer-links a:hover { color: var(--gold-soft); }
.footer-links .totop { display: inline-flex; align-items: center; gap: 7px; }
.footer-links .totop svg { width: 14px; height: 14px; }

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .nav { gap: 20px; }
  .header-mail { display: none; }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: 0; }
  .trust-item:nth-child(odd) { border-left: 0; }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-top: 1px solid var(--line); }
}
@media (max-width: 920px) {
  .nav, .header-cta .pill-phone { display: none; }
  .burger { display: flex; }
  .header-cta { gap: 12px; }
  .hero { padding: 0 0 52px; }
  .hero-grid { grid-template-columns: 1fr; gap: 8px; }
  .hero-bg {
    background:
      radial-gradient(80% 30% at 50% 8%, rgba(245,166,35,0.10), transparent 70%),
      linear-gradient(180deg, #0c0c11 0%, #0a0a0b 50%, var(--bg) 100%);
  }
  .hero-bg::before { display: none; }
  .hero-emblem {
    display: block; position: relative; z-index: 1;
    width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
    margin-bottom: 10px;
  }
  .hero-emblem img {
    width: 100%; height: clamp(360px, 104vw, 500px);
    object-fit: cover; object-position: 50% 50%; display: block;
  }
  .hero-emblem::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(180deg,
      var(--bg) 0%, rgba(10,10,11,0.55) 8%, transparent 16%,
      transparent 72%, rgba(10,10,11,0.5) 88%, var(--bg) 100%);
  }
  .hero-copy { position: relative; z-index: 2; }
  .hero p.lead { margin-inline: 0; }
  .about-photo { position: static; width: 100%; height: clamp(240px, 52vw, 340px); }
  .about-photo::after { background: linear-gradient(180deg, transparent 58%, var(--bg-2) 100%); }
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-spacer { display: none; }
  .price-grid { grid-template-columns: 1fr; }
  .review-track { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .wrap { padding-inline: 20px; }
  .section-pad { padding: 70px 0; }
  .hero { padding: 0 0 50px; }
  .trust { grid-template-columns: 1fr; }
  .trust-item { border-left: 0 !important; border-top: 1px solid var(--line); }
  .trust-item:first-child { border-top: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .contact-form { padding: 26px 22px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
