/* ==========================================================================
   AD DETAILING — Motorsport livery aesthetic
   ========================================================================== */

:root{
  --bg: #0b0b0c;
  --bg-2: #141416;
  --bg-3: #1c1c1f;
  --red: #00c2ff;
  --red-2: #5fe3ff;
  --red-dark: #003b4d;
  --white: #f4f4f2;
  --gray-1: #b7b7bb;
  --gray-2: #6d6d72;
  --line: rgba(244,244,242,0.09);
  --font-display: 'Anton', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-label: 'Barlow Condensed', sans-serif;
  --cut: 18px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3{ margin:0; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.01em; }

.wrap{
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
}

/* film grain overlay */
.grain{
  position: fixed; inset: 0; z-index: 999; pointer-events: none;
  opacity: 0.045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- header ---------- */
.site-header{
  position: fixed; top:0; left:0; right:0; z-index: 500;
  padding: 18px 0;
  transition: background-color .35s ease, padding .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.solid{
  background: rgba(11,11,12,0.92);
  backdrop-filter: blur(8px);
  padding: 12px 0;
  border-color: var(--line);
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; gap: 24px; }

.logo{
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.03em;
  color: var(--white);
  display: flex; align-items: baseline; gap: 8px;
  white-space: nowrap;
}
.logo span{ color: var(--red); font-size: 13px; font-family: var(--font-label); font-weight: 600; letter-spacing: 0.14em; }

.main-nav{ display:flex; gap: 28px; }
.main-nav a{
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-1);
  position: relative;
  padding: 4px 0;
  transition: color .2s ease;
}
.main-nav a::after{
  content:''; position:absolute; left:0; bottom:0; width:0; height:2px; background: var(--red);
  transition: width .25s ease;
}
.main-nav a:hover{ color: var(--white); }
.main-nav a:hover::after{ width:100%; }

.nav-toggle{
  display:none; flex-direction: column; gap: 5px; background:none; border:none; cursor:pointer; padding: 8px;
}
.nav-toggle span{ width: 24px; height: 2px; background: var(--white); display:block; transition: transform .25s ease, opacity .25s ease; }

/* ---------- buttons ---------- */
.btn{
  display: inline-flex; align-items:center; gap: 10px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 26px;
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-small{ padding: 10px 18px; font-size: 13px; --cut: 12px; }
.btn-primary{
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,194,255,0.35); background: var(--red-2); }
.btn-ghost{
  background: transparent;
  color: var(--white);
  border-color: rgba(244,244,242,0.28);
}
.btn-ghost:hover{ border-color: var(--white); transform: translateY(-2px); }
.btn-white{
  background: var(--white);
  color: var(--bg);
}
.btn-white:hover{ transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,0,0,0.35); }

.icon-wa{ width: 18px; height: 18px; fill: currentColor; flex-shrink:0; }

/* ---------- hero ---------- */
.hero{
  position: relative;
  min-height: 100vh;
  display: flex; align-items:center;
  padding-top: 120px;
  overflow: hidden;
}
.hero-bg{ position:absolute; inset:0; z-index:0; }
.hero-bg::before{
  content:'';
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(0,194,255,0.18), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(0,194,255,0.10), transparent 60%),
    var(--bg);
}
.speedlines{
  position:absolute; inset: -10% -20%;
  background-image: repeating-linear-gradient(100deg, rgba(244,244,242,0.035) 0px, rgba(244,244,242,0.035) 2px, transparent 2px, transparent 90px);
  animation: drift 24s linear infinite;
}
@keyframes drift{ from{ transform: translateX(0);} to{ transform: translateX(-200px);} }

.stripe{
  position:absolute; top: 8%; right: -10%;
  width: 60%; height: 220%;
  background: linear-gradient(180deg, transparent, rgba(0,194,255,0.16) 40%, rgba(0,194,255,0.08) 60%, transparent);
  transform: skewX(-12deg);
}

.hero-inner{ position: relative; z-index: 2; }

.eyebrow{
  font-family: var(--font-label);
  font-weight: 600;
  letter-spacing: 0.22em;
  font-size: 14px;
  color: var(--red-2);
  margin: 0 0 18px;
}

.hero-title{
  font-size: clamp(56px, 9vw, 148px);
  line-height: 0.95;
  display:flex; flex-direction: column;
}
.hero-title .accent{ color: var(--red); }

.hero-sub{
  max-width: 640px;
  font-size: 20px;
  color: var(--gray-1);
  margin: 28px 0 40px;
}

.hero-ctas{ display:flex; gap: 18px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-badges{ display:flex; gap: 14px; flex-wrap: wrap; }
.hero-badges li{
  font-family: var(--font-label);
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--gray-1);
  padding: 8px 16px;
  border: 1px solid var(--line);
  position: relative;
}
.hero-badges li::before{ content: '●'; color: var(--red); margin-right: 8px; font-size: 8px; vertical-align: middle; }

.whatsapp-note{
  display:flex; align-items:center; gap: 10px;
  font-family: var(--font-label); font-weight: 700; letter-spacing: 0.03em;
  font-size: 15px; color: var(--red-2);
  margin: 0 0 26px;
}
.whatsapp-note .icon-wa{ width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

.scroll-hint{
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  width: 1px; height: 50px; background: var(--line); z-index: 2;
}
.scroll-hint span{
  position: absolute; top:0; left: -2px; width: 5px; height: 5px; border-radius: 50%; background: var(--red);
  animation: scrolldown 2s ease-in-out infinite;
}
@keyframes scrolldown{ 0%{ top:0; opacity:1;} 90%{ opacity:1;} 100%{ top: 45px; opacity:0;} }

/* reveal on load (hero) */
.reveal{
  opacity: 0; transform: translateY(24px);
  animation: revealUp .8s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: calc(var(--d) * 0.12s + 0.15s);
}
@keyframes revealUp{ to{ opacity:1; transform:none; } }

/* reveal on scroll (rest of page) */
.reveal-io{ opacity:0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal-io.in{ opacity:1; transform:none; }

/* ---------- ticker ---------- */
.ticker{
  background: var(--red);
  color: var(--bg);
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
  position: relative;
  z-index: 2;
}
.ticker-track{ display:inline-flex; align-items:center; gap: 18px; animation: tick 32s linear infinite; }
.ticker-track span{ font-family: var(--font-label); font-weight: 700; letter-spacing: 0.08em; font-size: 15px; }
.ticker-track i{ font-style: normal; font-size: 10px; opacity: .6; }
@keyframes tick{ from{ transform: translateX(0);} to{ transform: translateX(-50%);} }

/* ---------- sections ---------- */
.section{ padding: 140px 0; position: relative; }
.section-alt{ background: var(--bg-2); }
.section-eyebrow{
  font-family: var(--font-label); font-weight: 700; letter-spacing: 0.2em; font-size: 15px;
  color: var(--red-2); margin: 0 0 14px;
}
.section-title{ font-size: clamp(34px, 4vw, 62px); margin-bottom: 24px; }
.section-note{ color: var(--gray-1); max-width: 600px; margin-bottom: 56px; font-size: 18px; }

/* services */
.services-grid{
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  background: var(--line);
  margin-top: 40px;
}
.service-card{
  background: var(--bg);
  padding: 40px 28px;
  position: relative;
  transition: background-color .3s ease, transform .3s ease;
}
.service-card:hover{ background: var(--bg-2); transform: translateY(-6px); }
.service-num{
  position:absolute; top: 16px; right: 20px;
  font-family: var(--font-display); font-size: 44px; color: rgba(244,244,242,0.06);
}
.service-icon{ width: 42px; height: 42px; color: var(--red); margin-bottom: 22px; }
.service-card h3{ font-size: 19px; margin-bottom: 12px; line-height: 1.2; }
.service-card p{ color: var(--gray-1); font-size: 15px; margin:0; }

/* pricing */
.class-selector{ display:flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.class-btn{
  flex: 1; min-width: 180px;
  background: var(--bg); border: 1px solid var(--line); color: var(--white);
  padding: 16px 20px; cursor: pointer; text-align: left;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
  display: flex; flex-direction: column; gap: 4px;
  font-family: var(--font-body);
}
.class-btn:hover{ border-color: var(--red); transform: translateY(-2px); }
.class-btn-title{ font-family: var(--font-label); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; font-size: 15px; }
.class-btn-sub{ font-size: 13px; color: var(--gray-1); }
.class-btn.active{ background: var(--red); border-color: var(--red); }
.class-btn.active .class-btn-sub{ color: rgba(244,244,242,0.85); }

.welcome-offer{
  display:flex; align-items:center; gap: 20px; flex-wrap: wrap;
  background: linear-gradient(100deg, var(--red-dark), rgba(0,194,255,0.1));
  border: 1px solid var(--red);
  padding: 20px 26px;
  margin: 0 0 12px;
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
}
.welcome-tag{
  font-family: var(--font-label); font-weight: 700; letter-spacing: 0.1em; font-size: 13px;
  text-transform: uppercase;
  background: var(--red); color: var(--bg); padding: 7px 16px; white-space: nowrap;
}
.welcome-offer p{ margin: 0; color: var(--white); font-size: 15px; }
.welcome-offer strong{ color: var(--red-2); }

.welcome-eyecatcher{
  padding: 28px 32px;
  gap: 28px;
  box-shadow: 0 0 0 1px var(--red), 0 20px 50px rgba(0,194,255,0.18);
  animation: welcomePulse 2.6s ease-in-out infinite;
}
@keyframes welcomePulse{
  0%, 100%{ box-shadow: 0 0 0 1px var(--red), 0 20px 50px rgba(0,194,255,0.18); }
  50%{ box-shadow: 0 0 0 1px var(--red), 0 20px 60px rgba(0,194,255,0.4); }
}
.welcome-main{ display:flex; align-items:center; gap: 24px; flex-wrap: wrap; }
.welcome-price{
  font-family: var(--font-display); font-size: 56px; line-height: 1; color: var(--white);
  flex-shrink: 0;
}
.welcome-price .asterisk{ color: var(--red-2); font-size: 30px; vertical-align: top; }
.welcome-eyecatcher p{ font-size: 17px; max-width: 420px; }
.welcome-footnote{
  color: var(--gray-2); font-size: 12px; margin: 0 0 50px; padding-left: 4px;
}

.guarantee-box{
  display:flex; align-items:flex-start; gap: 16px;
  margin-top: 30px; padding: 22px 26px;
  border: 1px solid var(--line); background: var(--bg-3);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}
.guarantee-box svg{ width: 30px; height: 30px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.guarantee-box strong{ display:block; font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.05em; font-size: 15px; margin-bottom: 6px; }
.guarantee-box p{ margin: 0; color: var(--gray-1); font-size: 14px; line-height: 1.6; }

.pricing-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 10px; }
.price-card{
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 30px 24px;
  position: relative;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  display: flex; flex-direction: column;
  transition: transform .3s ease;
}
.price-card:hover{ transform: translateY(-6px); }
.price-card.featured{ border-color: var(--red); background: var(--bg-3); }
.price-card h3{ font-size: 20px; margin-bottom: 14px; }
.price-tag{ font-family: var(--font-display); font-size: 34px; margin: 0 0 22px; }
.price-tag strong{ color: var(--red); }
.price-card ul{ margin: 0 0 28px; flex: 1; }
.price-card li{ color: var(--gray-1); font-size: 14px; padding: 7px 0; border-bottom: 1px solid var(--line); }
.price-card li:last-child{ border-bottom: none; }
.price-badge{
  position: absolute; top: -1px; right: 20px;
  background: var(--red); color: var(--white); font-family: var(--font-label); font-weight: 700;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 14px 8px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 78%, 0 100%);
}
.price-addons{ display:flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }
.price-addons > div{
  flex: 1; min-width: 220px; border: 1px solid var(--line); padding: 16px 20px;
  display:flex; flex-direction: column; gap: 4px;
}
.price-addons strong{ font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.04em; font-size: 14px; }
.price-addons span{ color: var(--gray-1); font-size: 13px; }

/* steps */
.steps{ display:grid; grid-template-columns: repeat(4,1fr); gap: 32px; position: relative; margin-top: 20px; }
.steps-line{
  position:absolute; top: 26px; left: 6%; right: 6%; height: 1px; background: var(--line);
  z-index: 0;
}
.step{ position: relative; z-index: 1; }
.step-badge{
  display:inline-flex; align-items:center; justify-content:center;
  width: 52px; height: 52px;
  background: var(--red);
  transform: rotate(45deg);
  margin-bottom: 26px;
}
.step-badge em{
  transform: rotate(-45deg);
  font-style: normal; font-family: var(--font-display); font-size: 20px; color: var(--white);
}
.step h3{ font-size: 18px; margin-bottom: 10px; }
.step p{ color: var(--gray-1); font-size: 15px; margin:0; }

/* gallery */
.gallery-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 10px; }
.gallery-tile{
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(244,244,242,0.03) 0 2px, transparent 2px 18px),
    var(--bg-3);
  border: 1px dashed var(--line);
  display:flex; align-items:flex-end; justify-content:flex-start;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  transition: border-color .25s ease, background-color .25s ease;
}
.gallery-tile::before{
  content:''; position:absolute; inset:0;
  background-size: cover; background-position: center 75%;
  transition: transform .5s ease;
}
.gallery-tile:hover::before{ transform: scale(1.06); }
.gallery-tile.g1::before{ background-image: url('assets/images/gallery-1.jpg'); }
.gallery-tile.g2::before{ background-image: url('assets/images/gallery-2.jpg'); }
.gallery-tile.g3::before{ background-image: url('assets/images/gallery-3.jpg'); }
.gallery-tile.g4::before{ background-image: url('assets/images/gallery-4.jpg'); }
.gallery-tile.g5::before{ background-image: url('assets/images/gallery-5.jpg'); }
.gallery-tile.g6::before{ background-image: url('assets/images/gallery-6.jpg'); }
.gallery-tile:hover{ border-color: var(--red); }
.gallery-tile span{
  position: relative; z-index: 1;
  font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.1em; font-size: 12px; color: var(--gray-1);
  background: rgba(11,11,12,0.72);
  padding: 6px 12px;
  margin: 12px;
}

/* testimonials */
.testimonial-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 10px; }
.testimonial{
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 34px 28px 28px;
  margin: 0;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}
.quote-mark{ font-family: var(--font-display); font-size: 60px; color: var(--red); line-height: 1; display:block; margin-bottom: 8px; }
.testimonial-single{ max-width: 480px; margin: 10px auto 0; text-align: center; }
.testimonial-single .quote-mark{ margin-left: auto; margin-right: auto; }

/* whatsapp floating button */
.whatsapp-float{
  position: fixed; right: 24px; bottom: 24px; z-index: 600;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 8px 24px rgba(0,194,255,0.45);
  animation: waFloatPulse 2.4s ease-in-out infinite;
  transition: transform .2s ease;
}
.whatsapp-float:hover{ transform: scale(1.08); }
.whatsapp-float .icon-wa{ width: 30px; height: 30px; fill: currentColor; }
@keyframes waFloatPulse{
  0%, 100%{ box-shadow: 0 8px 24px rgba(0,194,255,0.45); }
  50%{ box-shadow: 0 8px 34px rgba(0,194,255,0.8); }
}
@media (max-width: 620px){
  .whatsapp-float{ right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .whatsapp-float .icon-wa{ width: 26px; height: 26px; }
}
.testimonial p{ color: var(--gray-1); font-size: 15px; margin: 0 0 18px; }
.testimonial cite{ font-family: var(--font-label); font-style: normal; text-transform: uppercase; letter-spacing: 0.08em; font-size: 13px; color: var(--gray-2); }

/* service area */
.area-wrap{ display:flex; align-items:center; gap: 60px; flex-wrap: wrap; margin-top: 30px; }
.area-hub{
  font-family: var(--font-display);
  font-size: 26px;
  background: var(--red);
  color: var(--white);
  padding: 30px 34px;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  flex-shrink: 0;
}
.area-list{ display:flex; flex-wrap: wrap; gap: 12px; flex: 1; min-width: 260px; }
.area-list li{
  font-family: var(--font-label); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; font-size: 14px;
  color: var(--gray-1);
  padding: 10px 18px;
  border: 1px solid var(--line);
  transition: border-color .2s ease, color .2s ease;
}
.area-list li:hover{ border-color: var(--red); color: var(--white); }

.compliance-note{
  display:flex; align-items:flex-start; gap: 16px;
  margin-top: 40px; padding: 22px 26px;
  border: 1px solid var(--red);
  background: linear-gradient(100deg, rgba(0,194,255,0.08), transparent);
  max-width: 640px;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}
.compliance-note svg{ width: 30px; height: 30px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.compliance-note strong{ display:block; font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.05em; font-size: 15px; margin-bottom: 6px; color: var(--white); }
.compliance-note p{ margin: 0; color: var(--gray-1); font-size: 14px; line-height: 1.6; }

/* CTA band */
.cta-band{
  position: relative;
  background: linear-gradient(160deg, var(--red-dark), var(--red) 70%);
  padding: 130px 0 100px;
  text-align: center;
  overflow: hidden;
}
.cta-inner h2{ font-size: clamp(36px, 5.5vw, 76px); color: var(--white); margin-bottom: 20px; }
.cta-inner > p{ color: rgba(244,244,242,0.85); max-width: 540px; margin: 0 auto 38px; font-size: 19px; }
.cta-phone{ margin-top: 22px; font-family: var(--font-label); font-size: 15px; letter-spacing: 0.04em; color: rgba(244,244,242,0.8); }
.cta-phone a{ color: var(--white); font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }
.flag-strip{
  position: absolute; bottom: 0; left:0; right:0; height: 14px;
  background-image: repeating-linear-gradient(45deg, #0b0b0c 0 10px, #f4f4f2 10px 20px);
  background-size: 28px 28px;
  opacity: .9;
}

/* ---------- legal pages ---------- */
.legal-page{ padding: 160px 0 100px; }
.legal-page h1{ font-size: clamp(32px,5vw,48px); margin-bottom: 10px; }
.legal-updated{ color: var(--gray-2); font-size: 13px; margin-bottom: 50px; font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.05em; }
.legal-content{ max-width: 760px; }
.legal-content h2{ font-size: 22px; margin: 48px 0 16px; text-transform: none; letter-spacing: 0; color: var(--white); }
.legal-content h2:first-child{ margin-top: 0; }
.legal-content h3{ font-size: 16px; margin: 26px 0 10px; text-transform: none; letter-spacing: 0; color: var(--red-2); font-family: var(--font-body); font-weight: 700; }
.legal-content p{ color: var(--gray-1); font-size: 15px; line-height: 1.75; margin: 0 0 16px; }
.legal-content ul{ margin: 0 0 16px; padding-left: 0; list-style: none; }
.legal-content li{ color: var(--gray-1); font-size: 15px; line-height: 1.7; padding-left: 20px; position: relative; margin-bottom: 8px; }
.legal-content li::before{ content:'–'; position:absolute; left:0; color: var(--red); }
.legal-content strong{ color: var(--white); }
.legal-content a{ color: var(--red-2); text-decoration: underline; text-underline-offset: 3px; word-break: break-word; }
.legal-content hr{ border:none; border-top: 1px solid var(--line); margin: 40px 0; }
.legal-note{ margin-top: 50px; padding: 20px 24px; border: 1px solid var(--line); color: var(--gray-2); font-size: 13px; line-height: 1.7; }

/* ---------- footer ---------- */
.site-footer{ background: var(--bg-2); padding: 80px 0 0; border-top: 1px solid var(--line); }
.footer-grid{ display:grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-brand p{ color: var(--gray-2); font-size: 14px; margin-top: 16px; max-width: 280px; }
.footer-col h4{
  font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.1em; font-size: 14px;
  color: var(--gray-2); margin-bottom: 18px; font-weight: 700;
}
.footer-col a, .footer-col .footer-plain{
  display:block; color: var(--gray-1); font-size: 15px; margin-bottom: 12px; transition: color .2s ease;
}
.footer-col a:hover{ color: var(--red-2); }
.footer-bottom{
  border-top: 1px solid var(--line);
  padding: 24px 0;
  display:flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 13px; color: var(--gray-2);
  font-family: var(--font-label); letter-spacing: 0.03em;
}

/* ---------- responsive ---------- */
@media (max-width: 980px){
  .main-nav{ display:none; }
  .nav-toggle{ display:flex; }
  .main-nav.open{
    display:flex; position: fixed; inset: 0; top: 0;
    background: var(--bg); flex-direction: column; align-items:center; justify-content:center; gap: 34px;
    z-index: 400;
  }
  .main-nav.open a{ font-size: 24px; }
  .services-grid{ grid-template-columns: repeat(2,1fr); }
  .steps{ grid-template-columns: repeat(2,1fr); gap: 44px; }
  .steps-line{ display:none; }
  .testimonial-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .pricing-grid{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 620px){
  .services-grid{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2,1fr); }
  .pricing-grid{ grid-template-columns: 1fr; }
  .welcome-offer{ flex-direction: column; align-items: flex-start; }
  .footer-grid{ grid-template-columns: 1fr; }
  .area-wrap{ gap: 26px; }
  .hero-ctas{ flex-direction: column; align-items: stretch; }
  .hero-ctas .btn{ justify-content:center; }
}
