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

:root {
  --bg: #191D1E;
  --bg-deep: #131717;
  --bg-soft: #1E2426;
  --gold: #F5D564;
  --gold-bright: #FFE08A;
  --amber: #E0A94A;
  --glass-hi: #D2E9EF;
  --text: #F2EFE7;
  --text-dim: #9DA3A2;
  --text-faint: #6B7170;
  --border: rgba(255,255,255,0.08);
  --border-warm: rgba(245,213,100,0.18);
  --glass: rgba(255,255,255,0.025);
  --display: 'Space Grotesk', sans-serif;
  --body: 'Inter', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--bg-deep); }

h1,h2,h3,h4 { font-family: var(--display); line-height: 1.08; letter-spacing: -0.02em; font-weight: 500; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

.eyebrow {
  font-family: var(--body);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ''; width: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.glow-text {
  background: linear-gradient(180deg, var(--gold-bright), var(--amber));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* Filament hairline — signature motif */
.filament {
  height: 1px; border: none;
  background: linear-gradient(90deg, transparent 0%, rgba(245,213,100,0.35) 50%, transparent 100%);
  max-width: 1180px; margin: 0 auto;
}

/* ════ NAV ════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(20,23,23,0.72);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo img {
  width: 46px; height: 46px; border-radius: 50%;
  box-shadow: 0 0 24px rgba(245,213,100,0.25);
}
.nav-wordmark { font-family: var(--display); font-size: 17px; font-weight: 600; letter-spacing: 0.02em; }
.nav-wordmark .light { color: var(--text-dim); font-weight: 400; }
.brand-name {
  font-family: 'Comfortaa', var(--display); font-weight: 700;
  color: #FCE79B; letter-spacing: 0.04em;
  text-shadow: 0 0 4px rgba(255,231,155,0.9), 0 0 11px rgba(245,213,100,0.7), 0 0 24px rgba(224,169,74,0.5), 0 0 40px rgba(224,169,74,0.3);
}
.nav-wordmark .brand-name { font-size: 21px; }
.nav-links { display: flex; gap: 34px; list-style: none; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 400; color: var(--text-dim); transition: color .25s; letter-spacing: 0.01em; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); }
.nav-links a[aria-current="page"] { color: var(--gold); }
.nav-cta {
  border: 1px solid var(--border-warm); color: var(--gold) !important;
  padding: 11px 22px; border-radius: 100px; font-size: 13px !important;
  font-weight: 500 !important; transition: all .25s;
}
.nav-cta:hover { background: var(--gold); color: var(--bg-deep) !important; box-shadow: 0 0 28px rgba(245,213,100,0.35); }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--border); border-radius: 10px;
  width: 44px; height: 44px; cursor: pointer; align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════ HOME HERO ════ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 130px 28px 80px; overflow: hidden; }
.hero-glow-main {
  position: absolute; top: 50%; right: 8%; transform: translateY(-50%);
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(245,213,100,0.16) 0%, rgba(224,169,74,0.06) 35%, transparent 68%);
  pointer-events: none; z-index: 0;
  animation: heroGlowSync 20s ease-in-out infinite;
}
@keyframes heroGlowSync {
  0%,7% { opacity: 0.22; transform: translateY(-50%) scale(0.94); }
  11% { opacity: 1; transform: translateY(-50%) scale(1.06); }
  15% { opacity: 0.92; transform: translateY(-50%) scale(1.02); }
  68% { opacity: 0.9; transform: translateY(-50%) scale(1.02); }
  88% { opacity: 0.3; transform: translateY(-50%) scale(0.96); }
  100% { opacity: 0.22; transform: translateY(-50%) scale(0.94); }
}
.hero-inner {
  max-width: 1180px; margin: 0 auto; position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--glass); border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  padding: 8px 16px; border-radius: 100px;
  font-size: 12.5px; font-weight: 400; color: var(--text-dim);
  letter-spacing: 0.04em; margin-bottom: 32px;
}
.hero-badge .dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 10px var(--gold); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.35} }
.hero h1 { font-size: clamp(46px, 6.2vw, 82px); font-weight: 500; line-height: 1.02; margin-bottom: 28px; letter-spacing: -0.03em; }
.hero-sub { font-size: 18px; font-weight: 300; color: var(--text-dim); line-height: 1.7; margin-bottom: 40px; max-width: 460px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  background: var(--gold); color: var(--bg-deep); font-family: var(--display);
  font-weight: 600; font-size: 15px; padding: 15px 30px; border-radius: 100px;
  transition: all .25s; display: inline-flex; align-items: center; gap: 9px;
  box-shadow: 0 0 0 rgba(245,213,100,0); border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--gold-bright); box-shadow: 0 8px 34px rgba(245,213,100,0.3); transform: translateY(-2px); }
.btn-ghost {
  color: var(--text); font-weight: 400; font-size: 15px; padding: 15px 24px;
  border: 1px solid var(--border); border-radius: 100px; transition: all .25s;
  display: inline-flex; align-items: center; gap: 9px;
}
.btn-ghost:hover { border-color: var(--border-warm); color: var(--gold); }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.bulb-stage { position: relative; width: 100%; max-width: 480px; display: flex; align-items: center; justify-content: center; }
.bulb-wall {
  position: absolute; width: 155%; height: 155%; left: 50%; top: 47%; transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(245,213,100,0.22) 0%, rgba(224,169,74,0.10) 32%, transparent 62%);
  opacity: 0; pointer-events: none; z-index: 0; animation: wallLight 20s ease-in-out infinite;
}
.bulb-bloom {
  position: absolute; width: 72%; height: 72%; left: 50%; top: 41%; transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(255,224,138,0.55) 0%, rgba(245,213,100,0.18) 38%, transparent 66%);
  opacity: 0; pointer-events: none; z-index: 1; filter: blur(6px); animation: bloomLight 20s ease-in-out infinite;
}
.bulb-img {
  width: 100%; max-width: 480px; height: auto; position: relative; z-index: 2;
  filter: brightness(0.30) saturate(0.30); animation: powerOn 20s ease-in-out infinite;
}
@keyframes powerOn {
  0%   { filter: brightness(0.30) saturate(0.30); }
  6%   { filter: brightness(0.34) saturate(0.40); }
  8%   { filter: brightness(0.95) saturate(0.85); }
  9.5% { filter: brightness(0.42) saturate(0.45); }
  11%  { filter: brightness(1.10) saturate(1.05); }
  13%  { filter: brightness(0.92) saturate(0.95); }
  15%  { filter: brightness(1.0)  saturate(1.0); }
  68%  { filter: brightness(1.0)  saturate(1.0); }
  82%  { filter: brightness(0.82) saturate(0.78); }
  92%  { filter: brightness(0.40) saturate(0.42); }
  100% { filter: brightness(0.30) saturate(0.30); }
}
@keyframes wallLight {
  0%,7% { opacity: 0; }
  11% { opacity: 1; } 15% { opacity: 0.85; } 68% { opacity: 0.85; } 88% { opacity: 0.12; } 100% { opacity: 0; }
}
@keyframes bloomLight {
  0%,7% { opacity: 0; transform: translate(-50%,-50%) scale(0.8); }
  11% { opacity: 1; transform: translate(-50%,-50%) scale(1.06); }
  15% { opacity: 0.9; transform: translate(-50%,-50%) scale(1); }
  68% { opacity: 0.9; transform: translate(-50%,-50%) scale(1); }
  88% { opacity: 0.1; transform: translate(-50%,-50%) scale(0.85); }
  100% { opacity: 0; transform: translate(-50%,-50%) scale(0.8); }
}

.hero-meta { display: flex; gap: 40px; margin-top: 52px; padding-top: 36px; border-top: 1px solid var(--border); }
.hero-meta .num { font-family: var(--display); font-size: 30px; font-weight: 600; color: var(--text); line-height: 1; }
.hero-meta .num span { color: var(--gold); }
.hero-meta .lbl { font-size: 13px; color: var(--text-faint); margin-top: 7px; }

/* ════ PAGE HERO (sub-pages) ════ */
.page-hero { position: relative; padding: 176px 28px 84px; overflow: hidden; background: var(--bg-deep); border-bottom: 1px solid var(--border); }
.page-hero-glow {
  position: absolute; top: -180px; right: -120px; width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(245,213,100,0.12) 0%, rgba(224,169,74,0.05) 40%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { max-width: 1180px; margin: 0 auto; position: relative; z-index: 1; }
.breadcrumbs { font-size: 12.5px; color: var(--text-faint); margin-bottom: 26px; letter-spacing: 0.03em; }
.breadcrumbs a { color: var(--text-dim); transition: color .25s; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .sep { margin: 0 9px; color: var(--text-faint); }
.page-hero h1 { font-size: clamp(38px, 5vw, 66px); font-weight: 500; letter-spacing: -0.03em; margin: 18px 0 22px; max-width: 820px; }
.page-hero .lede { font-size: 17.5px; font-weight: 300; color: var(--text-dim); line-height: 1.75; max-width: 640px; margin-bottom: 36px; }
.page-hero .hero-actions { margin-bottom: 6px; }

/* ════ MARQUEE ════ */
.marquee { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 22px 0; overflow: hidden; white-space: nowrap; background: var(--bg-deep); }
.marquee-track { display: inline-flex; animation: scroll 32s linear infinite; }
.marquee-item { display: inline-flex; align-items: center; gap: 16px; font-family: var(--display); font-size: 15px; font-weight: 400; color: var(--text-dim); letter-spacing: 0.04em; padding: 0 28px; }
.marquee-item .spark { color: var(--gold); font-size: 12px; }
@keyframes scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ════ SECTION SHELL ════ */
section.block { padding: 110px 28px; position: relative; }
section.block.tight { padding: 84px 28px; }
.sec-head { max-width: 1180px; margin: 0 auto 64px; }
.sec-head h2 { font-size: clamp(34px, 4.2vw, 56px); font-weight: 500; margin-top: 18px; letter-spacing: -0.03em; }
.sec-head .sec-sub { font-size: 16.5px; font-weight: 300; color: var(--text-dim); line-height: 1.75; max-width: 640px; margin-top: 20px; }

/* ════ SERVICE CARDS ════ */
.services-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc {
  background: var(--glass); border: 1px solid var(--border); border-radius: 18px;
  padding: 34px 30px; position: relative; overflow: hidden; display: block;
  backdrop-filter: blur(8px); transition: transform .3s, border-color .3s, background .3s;
}
.svc:hover { transform: translateY(-4px); border-color: var(--border-warm); background: rgba(245,213,100,0.03); }
.svc-glow { position: absolute; top: -60px; right: -60px; width: 140px; height: 140px; background: radial-gradient(circle, rgba(245,213,100,0.12), transparent 70%); opacity: 0; transition: opacity .3s; }
.svc:hover .svc-glow { opacity: 1; }
.svc-icon { width: 50px; height: 50px; border-radius: 13px; background: rgba(245,213,100,0.08); border: 1px solid var(--border-warm); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 22px; }
.svc h3 { font-size: 19px; font-weight: 600; margin-bottom: 11px; letter-spacing: -0.01em; }
.svc p { font-size: 14px; font-weight: 300; color: var(--text-dim); line-height: 1.7; }
.svc-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 20px; font-size: 12px; font-weight: 500; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; }
.svc-link span { transition: transform .25s; }
.svc:hover .svc-link span { transform: translateX(5px); }
.svc.feat { background: linear-gradient(150deg, rgba(245,213,100,0.07), var(--glass) 60%); border-color: var(--border-warm); }
.feat-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--gold); color: var(--bg-deep); font-family: var(--display); font-size: 10.5px; font-weight: 600; padding: 4px 11px; border-radius: 100px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }

/* ════ TWO-COL SPLIT ════ */
.split { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split.start { align-items: start; }
.split h2 { font-size: clamp(32px, 3.6vw, 50px); font-weight: 500; margin: 18px 0 22px; letter-spacing: -0.03em; }
.split p { font-size: 16px; font-weight: 300; color: var(--text-dim); line-height: 1.75; margin-bottom: 16px; }
.ev { background: var(--bg-deep); }
.ev-list { list-style: none; margin: 28px 0 34px; display: flex; flex-direction: column; gap: 13px; }
.ev-list li { display: flex; align-items: flex-start; gap: 13px; font-size: 15px; font-weight: 300; color: var(--text); }
.ev-list .chk { color: var(--gold); flex-shrink: 0; margin-top: 1px; font-size: 14px; }
.ev-targets { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.ev-target { background: var(--glass); border: 1px solid var(--border); border-radius: 11px; padding: 15px 17px; font-size: 13.5px; font-weight: 400; color: var(--text); display: flex; align-items: center; gap: 11px; backdrop-filter: blur(6px); }

.ev-steps { display: flex; flex-direction: column; gap: 14px; }
.ev-step {
  background: var(--glass); border: 1px solid var(--border); border-radius: 16px;
  padding: 24px 28px; display: flex; gap: 22px; align-items: flex-start; backdrop-filter: blur(8px);
  position: relative; transition: border-color .3s;
}
.ev-step:hover { border-color: var(--border-warm); }
.ev-step-n { font-family: var(--display); font-size: 15px; font-weight: 600; color: var(--bg-deep); background: var(--gold); width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ev-step h4 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.ev-step p { font-size: 13.5px; font-weight: 300; color: var(--text-dim); line-height: 1.6; margin: 0; }
.ev-link-out { font-size: 14px; color: var(--text-dim); border-bottom: 1px solid var(--border-warm); padding-bottom: 2px; transition: color .25s; }
.ev-link-out:hover { color: var(--gold); }

/* ════ WHY / VALUE CARDS ════ */
.why-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.why-grid.three { grid-template-columns: repeat(3,1fr); }
.why-card { padding: 36px 26px; border: 1px solid var(--border); border-radius: 18px; background: var(--glass); backdrop-filter: blur(8px); transition: border-color .3s, transform .3s; }
.why-card:hover { border-color: var(--border-warm); transform: translateY(-4px); }
.why-icon { font-size: 26px; margin-bottom: 16px; display: block; }
.why-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.why-card p { font-size: 13.5px; font-weight: 300; color: var(--text-dim); line-height: 1.65; }

/* ════ DETAIL LIST (service inclusions) ════ */
.detail-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.detail-item { background: var(--glass); border: 1px solid var(--border); border-radius: 16px; padding: 26px 28px; display: flex; gap: 18px; align-items: flex-start; transition: border-color .3s; }
.detail-item:hover { border-color: var(--border-warm); }
.detail-item .di-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(245,213,100,0.08); border: 1px solid var(--border-warm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.detail-item h3 { font-size: 16.5px; font-weight: 600; margin-bottom: 6px; }
.detail-item p { font-size: 13.5px; font-weight: 300; color: var(--text-dim); line-height: 1.65; }

/* ════ PRICING ════ */
.pricing-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.price-card { background: var(--glass); border: 1px solid var(--border); border-radius: 18px; padding: 38px 32px; position: relative; transition: border-color .3s; }
.price-card:hover { border-color: var(--border-warm); }
.price-card .pc-tag { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: block; }
.price-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.price-card p { font-size: 14px; font-weight: 300; color: var(--text-dim); line-height: 1.7; }
.price-card ul { list-style: none; margin-top: 18px; display: flex; flex-direction: column; gap: 9px; }
.price-card ul li { font-size: 13.5px; font-weight: 300; color: var(--text); display: flex; gap: 10px; }
.price-card ul li::before { content: '✦'; color: var(--gold); font-size: 11px; margin-top: 2px; }

/* ════ CRED STRIP ════ */
.cred-strip { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.cred { border: 1px solid var(--border); border-radius: 16px; padding: 26px 24px; background: var(--glass); }
.cred .num { font-family: var(--display); font-size: 26px; font-weight: 600; color: var(--text); line-height: 1.1; }
.cred .num span { color: var(--gold); }
.cred .lbl { font-size: 12.5px; color: var(--text-faint); margin-top: 8px; line-height: 1.5; }

/* ════ FAQ ════ */
.faq-wrap { max-width: 840px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--glass); border: 1px solid var(--border); border-radius: 15px; overflow: hidden; transition: border-color .3s; }
.faq-item[open] { border-color: var(--border-warm); }
.faq-item summary { cursor: pointer; padding: 22px 26px; font-family: var(--display); font-size: 16.5px; font-weight: 500; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--gold); font-size: 22px; font-weight: 300; flex-shrink: 0; transition: transform .25s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 26px 24px; font-size: 14.5px; font-weight: 300; color: var(--text-dim); line-height: 1.75; }

/* ════ PLACEHOLDER FRAMES ════ */
.ph-frame {
  border: 1px dashed var(--border-warm); border-radius: 16px;
  background: repeating-linear-gradient(-45deg, rgba(245,213,100,0.02), rgba(245,213,100,0.02) 12px, transparent 12px, transparent 24px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  min-height: 220px; padding: 30px; text-align: center;
}
.ph-frame .ph-icon { opacity: .6; }
.ph-frame .ph-lbl { font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); }
.ph-frame.small { min-height: 120px; }
.ph-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }

/* ════ PHOTO SHOWCASE ════ */
.photo-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: start; }
.photo-grid.cols-2 { grid-template-columns: repeat(2,1fr); max-width: 900px; }
.photo-card { border: 1px solid var(--border-warm); border-radius: 16px; overflow: hidden; background: var(--glass); transition: border-color .3s, transform .3s; box-shadow: 0 0 0 1px rgba(0,0,0,0.15) inset; }
.photo-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.photo-card .photo-media { position: relative; background: var(--bg-deep); line-height: 0; }
.photo-card img { width: 100%; height: auto; display: block; }
.photo-card.small { max-width: 260px; margin: 0 auto; }
.photo-card .photo-cap { padding: 16px 20px; display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.photo-card .photo-tag { font-size: 10.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); flex-shrink: 0; }
.photo-card .photo-lbl { font-size: 13.5px; font-weight: 300; color: var(--text-dim); line-height: 1.5; }

/* Before / after pair */
.before-after { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.before-after .photo-tag.before { color: var(--text-faint); }
.before-after .photo-tag.after { color: var(--gold); }

@media (max-width: 780px) {
  .photo-grid, .photo-grid.cols-2, .before-after { grid-template-columns: 1fr; }
  .photo-card.small { max-width: 220px; }
}

/* ════ CTA BAND ════ */
.cta-band { background: var(--bg-deep); border-top: 1px solid var(--border); padding: 96px 28px; position: relative; overflow: hidden; }
.cta-band::before {
  content: ''; position: absolute; left: 50%; top: -220px; transform: translateX(-50%);
  width: 700px; height: 440px;
  background: radial-gradient(ellipse, rgba(245,213,100,0.10), transparent 68%); pointer-events: none;
}
.cta-band-inner { max-width: 760px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(30px, 3.6vw, 48px); font-weight: 500; letter-spacing: -0.03em; margin-bottom: 18px; }
.cta-band p { font-size: 16px; font-weight: 300; color: var(--text-dim); line-height: 1.75; margin-bottom: 36px; }
.cta-band .hero-actions { justify-content: center; }
.cta-band .cta-phone { font-size: 14px; color: var(--text-faint); margin-top: 26px; margin-bottom: 0; }
.cta-band .cta-phone a { color: var(--gold); }

/* ════ CONTACT ════ */
.contact { position: relative; overflow: hidden; }
.contact-glow { position: absolute; left: -150px; bottom: -150px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(245,213,100,0.08), transparent 68%); pointer-events: none; }
.contact-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; position: relative; z-index: 1; }
.contact-info h2 { font-size: clamp(32px, 3.6vw, 50px); font-weight: 500; margin: 18px 0 22px; letter-spacing: -0.03em; }
.contact-info > p { font-size: 16px; font-weight: 300; color: var(--text-dim); line-height: 1.75; margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 18px; }
.c-item { display: flex; align-items: center; gap: 16px; }
.c-icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(245,213,100,0.08); border: 1px solid var(--border-warm); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.c-item a, .c-item span { font-size: 16px; font-weight: 400; color: var(--text); transition: color .25s; }
.c-item a:hover { color: var(--gold); }
.c-item .c-sub { font-size: 12.5px; color: var(--text-faint); }
.map-embed { margin-top: 28px; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); line-height: 0; }
.map-embed iframe { width: 100%; height: 220px; border: 0; filter: grayscale(0.3) invert(0.92) hue-rotate(180deg) brightness(0.9) contrast(0.9); }

.form-card { background: var(--glass); border: 1px solid var(--border); border-radius: 22px; padding: 40px; backdrop-filter: blur(12px); }
.form-card h3 { font-size: 21px; font-weight: 600; margin-bottom: 28px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.fg label { font-size: 11.5px; font-weight: 500; color: var(--text-faint); letter-spacing: 0.1em; text-transform: uppercase; }
.fg input, .fg select, .fg textarea {
  background: rgba(0,0,0,0.25); border: 1px solid var(--border); border-radius: 11px;
  padding: 13px 16px; color: var(--text); font-size: 15px; font-family: var(--body);
  transition: border-color .25s, background .25s; outline: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); background: rgba(0,0,0,0.4); }
.fg input::placeholder, .fg textarea::placeholder { color: var(--text-faint); }
.fg select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239DA3A2' fill='none' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 38px; }
.fg select option { background: var(--bg-soft); color: var(--text); }
.fg textarea { resize: vertical; min-height: 110px; }
.form-submit { background: var(--gold); color: var(--bg-deep); border: none; font-family: var(--display); font-weight: 600; font-size: 15px; padding: 16px; border-radius: 100px; cursor: pointer; width: 100%; transition: all .25s; }
.form-submit:hover { background: var(--gold-bright); box-shadow: 0 8px 30px rgba(245,213,100,0.28); }
.form-note { font-size: 12.5px; color: var(--text-faint); margin-top: 14px; text-align: center; line-height: 1.6; }
.form-status { margin-top: 16px; font-size: 14px; text-align: center; display: none; }
.form-status.ok { display: block; color: var(--gold); }
.form-status.err { display: block; color: #E58A8A; }

/* ════ PROSE (about page) ════ */
.prose { max-width: 720px; }
.prose p { font-size: 16px; font-weight: 300; color: var(--text-dim); line-height: 1.85; margin-bottom: 20px; }
.prose strong { color: var(--text); font-weight: 500; }

/* ════ FOOTER ════ */
footer { background: var(--bg-deep); border-top: 1px solid var(--border); padding: 64px 28px 40px; }
.footer-inner { max-width: 1180px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo img { width: 38px; height: 38px; border-radius: 50%; box-shadow: 0 0 18px rgba(245,213,100,0.2); }
.footer-logo-text { font-family: var(--display); font-size: 15px; font-weight: 600; }
.footer-logo-text .light { color: var(--text-dim); font-weight: 400; }
.footer-brand p { font-size: 14px; font-weight: 300; color: var(--text-dim); line-height: 1.7; max-width: 290px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: border-color .25s, background .25s; }
.footer-social a:hover { border-color: var(--border-warm); background: rgba(245,213,100,0.06); }
.footer-col h4 { font-family: var(--body); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a { font-size: 14px; font-weight: 300; color: var(--text-dim); transition: color .25s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 26px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer-bottom p { font-size: 13px; font-weight: 300; color: var(--text-faint); }
.footer-licence { font-size: 12px; color: var(--text-dim); background: var(--glass); padding: 7px 14px; border-radius: 100px; border: 1px solid var(--border); }

/* ════ RESPONSIVE ════ */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(19,23,23,0.98); border-bottom: 1px solid var(--border);
    padding: 10px 28px 24px;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: none; padding-top: 16px; }
  .nav-links a { display: block; padding: 15px 2px; font-size: 15px; }
  .nav-cta { display: inline-block; text-align: center; }
  .hero-inner { grid-template-columns: 1fr; gap: 8px; text-align: center; }
  .hero-visual { order: -1; margin-bottom: 12px; }
  .bulb-stage { max-width: 280px; }
  .hero-glow-main { right: 50%; transform: translate(50%, -50%); }
  .hero-sub { margin: 0 auto 40px; }
  .hero-actions, .hero-meta { justify-content: center; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .services-grid, .pricing-grid, .ph-grid { grid-template-columns: 1fr; }
  .split, .contact-inner, .detail-grid { grid-template-columns: 1fr; }
  .split { gap: 48px; }
  .ev-targets { grid-template-columns: 1fr 1fr; }
  .why-grid, .why-grid.three { grid-template-columns: 1fr 1fr; }
  .cred-strip { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 150px 28px 64px; }
}
@media (max-width: 520px) {
  .why-grid, .why-grid.three { grid-template-columns: 1fr; }
  .cred-strip { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-meta { gap: 24px; flex-wrap: wrap; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  .bulb-img { filter: none; } .bulb-wall, .bulb-bloom { opacity: 0.75; } .hero-glow-main { opacity: 0.9; }
}
