@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ═══════════════════════════════════════════════════════════
   FEST & FIX — PREMIUM DESIGN v2
   Fonts: Bebas Neue (Display) + Outfit (Body)
   Theme: Dark luxury industrial — charcoal, warm cream, gold
═══════════════════════════════════════════════════════════ */

:root {
  --bg:        #111010;
  --bg2:       #171615;
  --bg3:       #1e1c1a;
  --surface:   #232120;
  --surface2:  #2a2826;
  --text:      #f0ece6;
  --text2:     #a09890;
  --line:      rgba(240,236,230,.1);
  --gold:      #d4a843;
  --gold2:     #e8bf6a;
  --gold-dim:  rgba(212,168,67,.15);
  --gold-glow: 0 0 40px rgba(212,168,67,.25);
  --white:     #ffffff;
  --shadow:    0 24px 60px rgba(0,0,0,.5);
  --shadow-sm: 0 4px 20px rgba(0,0,0,.3);
  --r:         16px;
  --r-lg:      28px;
  --container: 1280px;
  --ease:      cubic-bezier(.22,1,.36,1);
  --spring:    cubic-bezier(.34,1.56,.64,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }

/* ── Noise overlay ──────────────────────────────────────── */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: .4;
}

/* ── Custom Cursor ──────────────────────────────────────── */
#cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .3s var(--ease), height .3s var(--ease), background .3s;
}
#cursor-ring {
  width: 40px; height: 40px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  opacity: .5;
  transition: width .4s var(--ease), height .4s var(--ease), opacity .3s, border-color .3s;
}
#cursor-ring.hovered { width: 70px; height: 70px; opacity: .8; border-color: var(--gold2); }
#cursor-dot.hovered { width: 12px; height: 12px; }
@media (pointer: coarse) { #cursor-dot, #cursor-ring { display: none; } }

/* ── Progress bar ───────────────────────────────────────── */
#progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  z-index: 9997;
  transition: width .1s linear;
}

/* ── Page loader ────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 9990;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 20px;
  transition: opacity .6s var(--ease), visibility .6s;
}
#loader.hidden { opacity: 0; visibility: hidden; }
#loader .loader-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: .2em;
  color: var(--text);
}
#loader .loader-logo span { color: var(--gold); }
#loader-bar {
  width: 200px; height: 2px;
  background: var(--surface2);
  border-radius: 999px;
  overflow: hidden;
}
#loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  border-radius: 999px;
  width: 0%;
  transition: width .05s linear;
}

/* ── Topbar ─────────────────────────────────────────────── */
.topbar {
  background: var(--bg2);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 500;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar .meta, .topbar .social { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar a { color: var(--text2); transition: color .2s; }
.topbar a:hover { color: var(--gold); }
.topbar .dot { color: var(--gold); }

/* ── Ticker ─────────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  background: var(--gold);
  padding: 7px 0;
}
.ticker-inner {
  display: flex;
  width: max-content;
  animation: scroll-ticker 30s linear infinite;
}
.ticker-inner:hover { animation-play-state: paused; }
.ticker-item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: .14em;
  color: var(--bg);
  white-space: nowrap;
}
.ticker-item::after { content: '◆'; font-size: 8px; opacity: .6; }
@keyframes scroll-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Header / Nav ───────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(17,16,16,.85);
  backdrop-filter: blur(24px) saturate(1.6);
  border-bottom: 1px solid var(--line);
  transition: background .3s, box-shadow .3s;
}
.header.scrolled {
  background: rgba(14,13,13,.95);
  box-shadow: 0 4px 40px rgba(0,0,0,.5);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.brand img { width: 48px; height: 48px; border-radius: 14px; object-fit: cover; }
.brand-name {
  display: flex; flex-direction: column;
  line-height: 1.2;
}
.brand-name strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: .06em;
  color: var(--text);
}
.brand-name span { font-size: 11px; color: var(--text2); font-weight: 400; letter-spacing: .04em; }

.menu { display: flex; align-items: center; gap: 4px; }
.menu > a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text2);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color .2s, background .2s;
  letter-spacing: .02em;
}
.menu > a:hover, .menu > a.active { color: var(--text); background: rgba(212,168,67,.12); }
.menu > a.active { color: var(--gold); }

.nav-cta {
  margin-left: 12px;
  padding: 11px 24px;
  background: var(--gold);
  color: var(--bg);
  font-weight: 800;
  font-size: 13px;
  border-radius: 999px;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .2s, transform .2s var(--spring), box-shadow .2s;
  box-shadow: 0 4px 20px rgba(212,168,67,.3);
}
.nav-cta:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,168,67,.45);
}

.burger {
  display: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  transition: background .2s;
}
.burger:hover { background: var(--surface2); }

/* ── Reveal animations ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.from-left  { transform: translateX(-40px); }
.reveal.from-right { transform: translateX(40px); }
.reveal.scale-in   { transform: scale(.92); }
.reveal.visible    { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
.reveal.d4 { transition-delay: .4s; }
.reveal.d5 { transition-delay: .5s; }

/* ── Section labels ─────────────────────────────────────── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.label::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--gold);
  border-radius: 999px;
}

/* ── Section titles ─────────────────────────────────────── */
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 6vw, 80px);
  line-height: .95;
  letter-spacing: .03em;
  color: var(--text);
}
.section-title em { color: var(--gold); font-style: normal; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all .25s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-gold {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 6px 28px rgba(212,168,67,.35);
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(212,168,67,.5); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--line);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.btn-dark {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-dark:hover { background: var(--surface2); transform: translateY(-3px); }
.btn .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  font-size: 14px;
  transition: transform .2s var(--spring);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: grid;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: var(--bg);
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .35;
  filter: grayscale(.5);
  transition: transform 12s var(--ease);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(17,16,16,1) 0%, rgba(17,16,16,.7) 50%, rgba(17,16,16,.3) 100%),
    linear-gradient(to top, rgba(17,16,16,1) 0%, transparent 40%);
}
.hero-content {
  position: relative; z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 80px;
}
.hero-content .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.hero-left { display: flex; flex-direction: column; gap: 28px; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-dim);
  border: 1px solid rgba(212,168,67,.3);
  color: var(--gold);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: .18em;
  padding: 8px 18px;
  border-radius: 999px;
  width: fit-content;
  backdrop-filter: blur(10px);
}
.hero-tag .pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: hero-pulse 2s ease-in-out infinite;
}
@keyframes hero-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.5)} }

.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 8vw, 110px);
  line-height: .9;
  letter-spacing: .04em;
  color: var(--text);
}
.hero-h1 span { display: block; }
.hero-h1 .gold { color: var(--gold); }
.hero-h1 .outline-text {
  -webkit-text-stroke: 1px rgba(240,236,230,.3);
  color: transparent;
}

.hero-desc {
  font-size: 17px;
  color: var(--text2);
  max-width: 440px;
  line-height: 1.7;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-right { display: flex; flex-direction: column; gap: 16px; }
.hero-card {
  background: rgba(35,33,32,.7);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: border-color .3s, transform .3s var(--ease);
}
.hero-card:hover { border-color: rgba(212,168,67,.35); transform: translateX(6px); }
.hero-card-row { display: flex; gap: 16px; align-items: flex-start; }
.hero-card-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 14px;
  background: var(--gold-dim);
  border: 1px solid rgba(212,168,67,.25);
  display: grid; place-items: center;
  font-size: 22px;
}
.hero-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.hero-card p { font-size: 13px; color: var(--text2); line-height: 1.5; margin: 0; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-stat {
  background: rgba(35,33,32,.7);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px;
  text-align: center;
  transition: border-color .3s;
}
.hero-stat:hover { border-color: rgba(212,168,67,.35); }
.hero-stat strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  letter-spacing: .04em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat span { font-size: 12px; color: var(--text2); font-weight: 500; }

.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: .5;
}
.hero-scroll span { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--text2); }
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim { 0%,100%{transform:scaleY(1);opacity:.5} 50%{transform:scaleY(1.5);opacity:1} }

/* ══════════════════════════════════════════════════════════
   COUNTER STRIP
══════════════════════════════════════════════════════════ */
.counter-strip {
  background: var(--gold);
  padding: 0;
  overflow: hidden;
}
.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.counter-cell {
  padding: 40px 28px;
  text-align: center;
  border-right: 1px solid rgba(17,16,16,.15);
  position: relative;
  overflow: hidden;
}
.counter-cell:last-child { border-right: none; }
.counter-cell::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  transition: background .3s;
}
.counter-cell:hover::before { background: rgba(255,255,255,.06); }
.counter-cell strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 5vw, 68px);
  letter-spacing: .04em;
  color: var(--bg);
  line-height: 1;
}
.counter-cell span {
  font-size: 13px;
  color: rgba(17,16,16,.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  display: block;
  margin-top: 6px;
}

/* ══════════════════════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════════════════════ */
.section { padding: 100px 0; }
.section-alt { background: var(--bg2); }
.section-dark { background: var(--bg); }

.section-head { margin-bottom: 60px; }
.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.section-sub { font-size: 16px; color: var(--text2); max-width: 500px; margin-top: 14px; line-height: 1.65; }

/* ══════════════════════════════════════════════════════════
   SERVICE CARDS
══════════════════════════════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--line); border-radius: var(--r-lg); overflow: hidden; }
.service-card {
  background: var(--bg2);
  padding: 44px;
  position: relative;
  overflow: hidden;
  transition: background .3s;
  cursor: default;
}
.service-card:hover { background: var(--bg3); }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height .4s var(--ease);
}
.service-card:hover::before { height: 100%; }
.service-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  letter-spacing: .04em;
  color: rgba(240,236,230,.04);
  line-height: 1;
  position: absolute;
  top: 20px; right: 28px;
  user-select: none;
  transition: color .3s;
}
.service-card:hover .service-num { color: rgba(212,168,67,.06); }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 18px;
  background: var(--gold-dim);
  border: 1px solid rgba(212,168,67,.2);
  display: grid; place-items: center;
  font-size: 26px;
  margin-bottom: 24px;
  transition: background .3s, border-color .3s;
}
.service-card:hover .service-icon { background: rgba(212,168,67,.25); border-color: rgba(212,168,67,.4); }
.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: .04em;
  color: var(--text);
  margin-bottom: 14px;
  transition: color .3s;
}
.service-card:hover h3 { color: var(--gold); }
.service-card p { font-size: 15px; color: var(--text2); line-height: 1.65; margin-bottom: 20px; }
.service-checks { display: grid; gap: 8px; }
.service-checks li {
  display: flex; gap: 10px; align-items: center;
  font-size: 14px; color: var(--text2);
}
.service-checks li::before { content: '→'; color: var(--gold); font-size: 13px; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   PROCESS STEPS
══════════════════════════════════════════════════════════ */
.process-line {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  position: relative;
}
.process-line::before {
  content: '';
  position: absolute;
  top: 40px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(212,168,67,.2) 100%);
}
.process-step {
  padding: 0 24px;
  text-align: center;
  position: relative;
}
.step-dot {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.process-step:hover .step-dot {
  background: var(--gold-dim);
  border-color: var(--gold);
  box-shadow: var(--gold-glow);
}
.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: .06em;
  color: var(--gold);
}
.process-step h4 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.process-step p { font-size: 14px; color: var(--text2); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════
   IMAGE + TEXT BLOCK
══════════════════════════════════════════════════════════ */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-grid.reverse .split-img { order: 2; }
.split-grid.reverse .split-text { order: 1; }

.split-img { position: relative; }
.split-img-main {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.split-img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.split-img:hover .split-img-main img { transform: scale(1.04); }
.split-img-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  color: var(--bg);
  border-radius: var(--r);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.split-img-badge strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  letter-spacing: .04em;
  line-height: 1;
}
.split-img-badge span { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; opacity: .8; }

.split-text { display: flex; flex-direction: column; gap: 22px; }
.split-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(38px, 5vw, 60px); letter-spacing: .04em; line-height: 1; color: var(--text); }
.split-text h2 em { color: var(--gold); font-style: normal; }
.split-text p { font-size: 16px; color: var(--text2); line-height: 1.7; }
.feature-list { display: grid; gap: 14px; }
.feature-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: border-color .25s, background .25s;
}
.feature-item:hover { border-color: rgba(212,168,67,.3); background: var(--surface2); }
.feature-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 12px;
  background: var(--gold-dim);
  display: grid; place-items: center;
  font-size: 19px;
}
.feature-item h5 { font-size: 15px; font-weight: 700; margin-bottom: 3px; color: var(--text); }
.feature-item p { font-size: 13px; color: var(--text2); margin: 0; }

/* ══════════════════════════════════════════════════════════
   AREAS
══════════════════════════════════════════════════════════ */
.areas-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.area-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: border-color .25s, transform .3s var(--ease), background .25s;
  position: relative; overflow: hidden;
}
.area-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s var(--ease);
}
.area-card:hover { border-color: rgba(212,168,67,.2); transform: translateY(-4px); background: var(--surface2); }
.area-card:hover::before { transform: scaleX(1); }
.area-card h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.area-card h3 span { color: var(--gold); font-size: 18px; }
.area-card ul { display: grid; gap: 8px; }
.area-card li { font-size: 14px; color: var(--text2); display: flex; align-items: center; gap: 8px; }
.area-card li::before { content: '—'; color: var(--gold); font-size: 11px; }

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testimonial {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  transition: border-color .3s, transform .3s var(--ease), box-shadow .3s;
}
.testimonial:hover { border-color: rgba(212,168,67,.2); transform: translateY(-6px); box-shadow: var(--shadow); }
.quote-mark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 90px;
  color: var(--gold-dim);
  line-height: .7;
  margin-bottom: 16px;
  display: block;
  border: 1px solid rgba(212,168,67,.15);
  width: fit-content;
  padding: 0 12px;
  border-radius: 12px;
}
.stars { color: var(--gold); font-size: 15px; letter-spacing: 3px; margin-bottom: 14px; display: block; }
.testimonial blockquote { font-size: 15px; color: var(--text); line-height: 1.65; margin: 0 0 20px; font-style: italic; }
.testimonial cite { display: flex; flex-direction: column; font-style: normal; }
.testimonial cite strong { font-size: 15px; font-weight: 700; color: var(--text); }
.testimonial cite span { font-size: 13px; color: var(--text2); margin-top: 2px; }

/* ══════════════════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════════════════ */
.cta-section { padding: 100px 0; }
.cta-inner {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 40px;
  padding: 80px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,.12), transparent 70%);
  pointer-events: none;
}
.cta-inner h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(44px, 6vw, 72px); letter-spacing: .04em; line-height: .95; color: var(--text); margin: 12px 0 18px; }
.cta-inner h2 em { color: var(--gold); font-style: normal; }
.cta-inner p { font-size: 16px; color: var(--text2); line-height: 1.7; margin-bottom: 28px; }
.cta-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cta-tile {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px;
  transition: border-color .25s, background .25s;
}
.cta-tile:hover { border-color: rgba(212,168,67,.3); background: var(--bg3); }
.cta-tile strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.cta-tile span { font-size: 13px; color: var(--text2); }

/* ══════════════════════════════════════════════════════════
   PAGE HERO
══════════════════════════════════════════════════════════ */
.page-hero {
  padding: 60px 0 40px;
  background: var(--bg2);
  border-bottom: 1px solid var(--line);
}
.page-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.breadcrumb {
  font-size: 13px;
  color: var(--text2);
  display: flex; align-items: center; gap: 8px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb::before { content: '←'; color: var(--gold); }
.page-hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(44px, 7vw, 80px); letter-spacing: .04em; line-height: 1; color: var(--text); }
.page-hero .lead { font-size: 18px; color: var(--text2); max-width: 600px; line-height: 1.65; }

/* ══════════════════════════════════════════════════════════
   FORM
══════════════════════════════════════════════════════════ */
.form-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 32px; align-items: start; }
.form-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px;
}
.form-box h2 { font-family: 'Bebas Neue', sans-serif; font-size: 36px; letter-spacing: .04em; color: var(--text); margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1/-1; }
label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text2); margin-bottom: 8px; }
.input, .select, textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s, background .2s;
  outline: none;
}
.input:focus, .select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,168,67,.12);
  background: var(--bg3);
}
.select { appearance: none; cursor: pointer; }
textarea { min-height: 130px; resize: vertical; }
.form-note {
  padding: 14px 18px;
  background: var(--gold-dim);
  border: 1px solid rgba(212,168,67,.2);
  border-radius: var(--r);
  font-size: 14px;
  color: var(--text2);
  margin-top: 4px;
}

.form-sidebar { display: grid; gap: 14px; }
.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
}
.sidebar-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: .04em; color: var(--text); margin-bottom: 16px; }
.contact-list { display: grid; gap: 14px; }
.contact-item { display: flex; gap: 14px; align-items: center; }
.contact-item .icon { width: 42px; height: 42px; border-radius: 14px; background: var(--gold-dim); border: 1px solid rgba(212,168,67,.2); display: grid; place-items: center; font-size: 18px; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); }
.contact-item span { font-size: 13px; color: var(--text2); }
.contact-item a { color: var(--gold); font-size: 14px; font-weight: 600; }

/* Alerts */
.hidden { display: none; }
.alert { padding: 14px 18px; border-radius: var(--r); margin-top: 14px; font-size: 14px; font-weight: 600; }
.alert.success { background: rgba(31,122,80,.15); border: 1px solid rgba(31,122,80,.3); color: #6ee7a8; }
.alert.error { background: rgba(180,40,40,.15); border: 1px solid rgba(180,40,40,.3); color: #f87171; }

/* ══════════════════════════════════════════════════════════
   FLOATING ELEMENTS
══════════════════════════════════════════════════════════ */
.fab {
  position: fixed; bottom: 30px; right: 30px; z-index: 400;
  background: var(--gold);
  color: var(--bg);
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 36px rgba(212,168,67,.4);
  transition: all .3s var(--spring);
  opacity: 0;
  transform: translateY(20px) scale(.9);
  pointer-events: none;
}
.fab.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.fab:hover { background: var(--gold2); transform: translateY(-4px) scale(1.03); box-shadow: 0 14px 50px rgba(212,168,67,.55); }
.fab .pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--bg); animation: hero-pulse 2s infinite; }

.back-top {
  position: fixed; bottom: 30px; left: 30px; z-index: 400;
  width: 48px; height: 48px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  color: var(--text2);
  font-size: 18px;
  transition: all .3s var(--ease);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}
.back-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-top:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 70px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-brand img { width: 46px; height: 46px; border-radius: 14px; object-fit: cover; }
.footer-brand strong { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: .06em; color: var(--text); display: block; }
.footer-brand span { font-size: 12px; color: var(--text2); }
.footer-desc { font-size: 14px; color: var(--text2); line-height: 1.7; margin-bottom: 20px; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-badge { padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line); font-size: 12px; font-weight: 600; color: var(--text2); }

.footer-col h4 { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: .1em; color: var(--text); margin-bottom: 20px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--text2); transition: color .2s; display: flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: var(--gold); }
.footer-links a::before { content: '→'; color: var(--gold); font-size: 12px; opacity: 0; transition: opacity .2s; }
.footer-links a:hover::before { opacity: 1; }
.footer-links li { display: flex; color: var(--text2); font-size: 14px; gap: 8px; align-items: flex-start; line-height: 1.5; }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 13px; color: var(--text2); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: var(--text2); transition: color .2s; }
.footer-legal a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-content .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: grid; grid-template-columns: 1fr 1fr 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .split-grid { grid-template-columns: 1fr; gap: 40px; }
  .split-grid.reverse .split-img, .split-grid.reverse .split-text { order: unset; }
  .split-img-badge { display: none; }
  .cta-inner { grid-template-columns: 1fr; padding: 48px; }
  .form-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .counter-grid { grid-template-columns: repeat(2,1fr); }
  .process-line { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-line::before { display: none; }
}

@media (max-width: 840px) {
  .menu {
    display: none;
    position: absolute; top: 80px; left: 12px; right: 12px;
    flex-direction: column; align-items: stretch;
    background: var(--surface);
    border: 1px solid var(--line);
    padding: 14px;
    border-radius: 22px;
    box-shadow: var(--shadow);
  }
  .menu.open { display: flex; }
  .menu .nav-cta { margin-left: 0; margin-top: 8px; }
  .burger { display: grid; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-right { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .testimonials-grid, .areas-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .fab { bottom: 18px; right: 18px; }
  .back-top { display: none; }
}

@media (max-width: 560px) {
  .topbar .container { flex-direction: column; gap: 6px; text-align: center; }
  .brand-name span { display: none; }
  .hero-h1 { font-size: clamp(48px, 14vw, 72px); }
  .counter-grid { grid-template-columns: 1fr 1fr; }
  .counter-cell { padding: 28px 16px; }
  .cta-tiles { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .process-line { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
}
