@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,600;0,700;0,800;0,900;1,700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #0b0c0e;
  --ink-2: #15171a;
  --ink-3: #22252a;
  --paper: #f4f0e8;
  --paper-2: #e8e2d8;
  --white: #fff;
  --acid: #d9ff45;
  --acid-2: #b7df21;
  --orange: #ff5c35;
  --blue: #9dd8ff;
  --muted: #676b70;
  --line: rgba(11,12,14,.14);
  --line-dark: rgba(255,255,255,.15);
  --shadow: 0 30px 80px rgba(0,0,0,.18);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1220px;
  --ease: cubic-bezier(.2,.75,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
button { cursor: pointer; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 9999;
  background: var(--acid);
  color: var(--ink);
  padding: 10px 16px;
  font-weight: 800;
  border-radius: 10px;
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.display {
  font-family: "Barlow Condensed", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: -.035em;
  line-height: .91;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .75rem;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
}
.eyebrow::before { content: ""; width: 28px; height: 3px; background: currentColor; }
.muted { color: var(--muted); }

.utility-bar {
  background: var(--acid);
  color: var(--ink);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.utility-inner {
  min-height: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.utility-links { display: flex; align-items: center; gap: 18px; }
.utility-links a { text-decoration: none; opacity: .8; }
.utility-links a:hover { opacity: 1; text-decoration: underline; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,12,14,.93);
  color: white;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-dark);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 14px 36px rgba(0,0,0,.24); }
.nav {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; min-width: 190px; }
.brand img { width: 47px; height: 47px; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-family: "Barlow Condensed", sans-serif; font-size: 1.55rem; letter-spacing: .035em; }
.brand-copy small { margin-top: 4px; color: rgba(255,255,255,.62); font-size: .66rem; letter-spacing: .13em; text-transform: uppercase; }
.nav-links { display: flex; justify-content: center; align-items: center; gap: 28px; }
.nav-links a {
  position: relative;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-size: .87rem;
  font-weight: 700;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--acid);
  transition: right .25s ease;
}
.nav-links a:hover { color: white; }
.nav-links a:hover::after { right: 0; }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: white;
  border-radius: 12px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  background: var(--acid);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transition: transform .22s var(--ease), box-shadow .22s ease, background .22s ease, border-color .22s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(217,255,69,.18); background: #e5ff76; }
.btn:active { transform: translateY(0); }
.btn-dark { background: var(--ink); color: white; }
.btn-dark:hover { background: var(--ink-3); box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.3); color: white; }
.btn-outline:hover { border-color: var(--acid); color: var(--acid); background: transparent; }
.btn-paper { background: var(--paper); color: var(--ink); }
.btn-sm { min-height: 42px; padding: 9px 18px; font-size: .84rem; }
.btn-block { width: 100%; }

.hero {
  position: relative;
  min-height: 760px;
  background: var(--ink);
  color: white;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, black, transparent 74%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  right: -180px;
  top: -170px;
  border: 90px solid rgba(217,255,69,.11);
  border-radius: 50%;
}
.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  align-items: stretch;
}
.hero-copy { padding: 110px 52px 90px 0; align-self: center; }
.hero-kicker { color: var(--acid); margin-bottom: 24px; }
.hero h1 {
  margin: 0;
  max-width: 730px;
  font-size: clamp(5.2rem, 10vw, 10.2rem);
}
.hero h1 span { display: block; color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.65); }
.hero .lead { max-width: 640px; color: rgba(255,255,255,.72); font-size: 1.1rem; margin: 28px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 32px; padding: 0; list-style: none; }
.hero-pills li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.78);
  font-size: .78rem;
  font-weight: 700;
}
.hero-pills i { color: var(--acid); }
.hero-media { position: relative; min-height: 760px; clip-path: polygon(12% 0,100% 0,100% 100%,0 100%); overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.84) contrast(1.08); transition: transform 1s var(--ease); }
.hero-media:hover img { transform: scale(1.035); }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--ink), transparent 35%), linear-gradient(0deg, rgba(0,0,0,.45), transparent 55%); }
.hero-stamp {
  position: absolute;
  z-index: 3;
  right: 38px;
  bottom: 38px;
  width: min(310px, calc(100% - 76px));
  padding: 22px;
  background: rgba(11,12,14,.86);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(15px);
  border-radius: 18px;
}
.hero-stamp strong { display: block; font-size: 1.1rem; }
.hero-stamp span { display: block; margin-top: 5px; color: rgba(255,255,255,.65); font-size: .83rem; }
.hero-stamp .signal { display: inline-flex; align-items: center; gap: 8px; color: var(--acid); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; margin-bottom: 12px; }
.signal-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 0 rgba(217,255,69,.35); animation: pulse 2s infinite; }

.ticker { overflow: hidden; background: var(--acid); border-block: 1px solid var(--ink); }
.ticker-track { display: flex; width: max-content; animation: ticker 28s linear infinite; }
.ticker span { display: inline-flex; align-items: center; gap: 28px; min-height: 58px; padding-right: 28px; font-family: "Barlow Condensed", sans-serif; font-size: 1.45rem; text-transform: uppercase; font-weight: 800; letter-spacing: .035em; }
.ticker i { font-size: .62rem; }

.section { padding: 112px 0; }
.section-dark { background: var(--ink); color: white; }
.section-ink-2 { background: var(--ink-2); color: white; }
.section-white { background: var(--white); }
.section-orange { background: var(--orange); color: var(--ink); }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .7fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 50px;
}
.section-head h2 { margin: 12px 0 0; font-family: "Barlow Condensed", sans-serif; font-size: clamp(3.3rem, 6vw, 6rem); line-height: .94; text-transform: uppercase; letter-spacing: -.03em; }
.section-head p { margin: 0; color: var(--muted); }
.section-dark .section-head p, .section-ink-2 .section-head p { color: rgba(255,255,255,.62); }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  position: relative;
  min-height: 350px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.52);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s ease, border-color .3s ease;
}
.service-card::after {
  content: attr(data-code);
  position: absolute;
  right: -4px;
  bottom: -28px;
  color: rgba(11,12,14,.055);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(11,12,14,.32); box-shadow: 0 24px 70px rgba(0,0,0,.12); }
.service-icon { width: 56px; height: 56px; display: grid; place-items: center; background: var(--ink); color: var(--acid); border-radius: 15px; font-size: 1.25rem; transition: transform .3s var(--ease); }
.service-card:hover .service-icon { transform: rotate(-7deg) scale(1.06); }
.service-card h3 { margin: 74px 0 10px; font-family: "Barlow Condensed", sans-serif; font-size: 2rem; text-transform: uppercase; line-height: 1; }
.service-card p { margin: 0; color: var(--muted); max-width: 36ch; }
.text-link { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 10px; margin-top: 24px; padding: 0; border: 0; background: none; font-weight: 800; }
.text-link i { transition: transform .25s ease; }
.text-link:hover i { transform: translateX(5px); }

.editorial-grid { display: grid; grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr); gap: 70px; align-items: center; }
.editorial-media { position: relative; min-height: 600px; border-radius: 30px; overflow: hidden; background: #24272b; }
.editorial-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.editorial-media:hover img { transform: scale(1.035); }
.editorial-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.58)); }
.media-label { position: absolute; z-index: 2; left: 24px; bottom: 24px; right: 24px; display: flex; justify-content: space-between; gap: 15px; align-items: end; color: white; }
.media-label strong { font-family: "Barlow Condensed", sans-serif; font-size: 2.2rem; text-transform: uppercase; line-height: 1; }
.media-label span { color: rgba(255,255,255,.66); font-size: .78rem; }
.editorial-copy h2 { margin: 15px 0 20px; font-family: "Barlow Condensed", sans-serif; font-size: clamp(3.6rem, 6vw, 6.4rem); line-height: .9; text-transform: uppercase; }
.editorial-copy > p { color: rgba(255,255,255,.66); max-width: 60ch; }
.feature-list { display: grid; gap: 1px; margin: 34px 0; background: var(--line-dark); border-block: 1px solid var(--line-dark); }
.feature-row { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 21px 0; background: var(--ink); }
.feature-row .number { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: var(--acid); font-weight: 800; }
.feature-row strong { display: block; }
.feature-row span { display: block; color: rgba(255,255,255,.58); margin-top: 4px; font-size: .88rem; }

.price-board { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 27px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: transform .3s var(--ease), box-shadow .3s ease;
}
.price-card:hover { transform: translateY(-7px); box-shadow: 0 24px 70px rgba(0,0,0,.12); }
.price-card.featured { background: var(--acid); transform: rotate(-1deg); border-color: var(--ink); }
.price-card.featured:hover { transform: rotate(0) translateY(-7px); }
.price-card .tag { align-self: flex-start; min-height: 32px; display: inline-flex; align-items: center; padding: 7px 12px; border-radius: 999px; background: var(--ink); color: white; font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.price-card h3 { margin: 20px 0 5px; font-family: "Barlow Condensed", sans-serif; font-size: 2rem; line-height: 1; text-transform: uppercase; }
.price { margin: 10px 0 18px; font-family: "Barlow Condensed", sans-serif; font-size: 3.4rem; font-weight: 800; line-height: 1; }
.price small { display: block; margin-top: 8px; font-family: Manrope, sans-serif; font-size: .72rem; letter-spacing: .04em; color: var(--muted); }
.price-card.featured .price small { color: rgba(11,12,14,.62); }
.price-card p { margin: 0; color: var(--muted); font-size: .9rem; }
.price-card.featured p { color: rgba(11,12,14,.7); }
.price-card ul { padding: 0; margin: 24px 0 28px; list-style: none; display: grid; gap: 10px; font-size: .84rem; }
.price-card li { display: flex; gap: 9px; }
.price-card li i { margin-top: 5px; font-size: .72rem; }
.price-card .btn { margin-top: auto; }
.price-note { margin-top: 22px; color: var(--muted); font-size: .82rem; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line-dark); border-radius: 26px; overflow: hidden; }
.process-step { position: relative; min-height: 320px; padding: 30px; border-right: 1px solid var(--line-dark); background: rgba(255,255,255,.025); }
.process-step:last-child { border-right: 0; }
.process-step .step-no { color: var(--acid); font-family: "Barlow Condensed", sans-serif; font-size: 3.2rem; font-weight: 800; }
.process-step h3 { margin: 72px 0 10px; font-family: "Barlow Condensed", sans-serif; text-transform: uppercase; font-size: 1.8rem; line-height: 1; }
.process-step p { color: rgba(255,255,255,.58); font-size: .88rem; }
.process-step::after { content: ""; position: absolute; top: 55px; left: 79px; right: 22px; height: 1px; background: var(--line-dark); }

.stat-grid { display: grid; grid-template-columns: 1.25fr repeat(3, 1fr); gap: 15px; }
.stat-lead { padding: 34px; border-radius: 22px; background: var(--orange); }
.stat-lead h2 { margin: 15px 0 0; font-family: "Barlow Condensed", sans-serif; font-size: clamp(3rem, 5vw, 5.4rem); line-height: .92; text-transform: uppercase; }
.stat-card { padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: 22px; }
.stat-card strong { display: block; font-family: "Barlow Condensed", sans-serif; font-size: 3.5rem; line-height: 1; }
.stat-card span { display: block; margin-top: 12px; color: var(--muted); font-size: .85rem; }

.area-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.area-copy h2 { margin: 15px 0 20px; font-family: "Barlow Condensed", sans-serif; font-size: clamp(3.5rem, 6vw, 6rem); line-height: .9; text-transform: uppercase; }
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 28px 0 0; list-style: none; }
.area-tags li { min-height: 40px; display: inline-flex; align-items: center; padding: 9px 15px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.55); font-size: .8rem; font-weight: 800; }
.map-shell { position: relative; min-height: 510px; overflow: hidden; background: #d6d2ca; border-radius: 28px; border: 1px solid var(--line); }
.map-placeholder { position: absolute; inset: 0; display: grid; place-items: center; padding: 36px; text-align: center; background-image: linear-gradient(rgba(11,12,14,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(11,12,14,.07) 1px, transparent 1px); background-size: 34px 34px; }
.map-placeholder-inner { max-width: 420px; padding: 30px; border-radius: 22px; background: rgba(244,240,232,.94); box-shadow: var(--shadow); }
.map-placeholder i { font-size: 2rem; }
.map-placeholder h3 { margin: 14px 0 8px; font-family: "Barlow Condensed", sans-serif; text-transform: uppercase; font-size: 2.2rem; }
.map-placeholder p { color: var(--muted); font-size: .86rem; }
.map-shell iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-loading { position: absolute; inset: 0; z-index: 3; display: grid; place-items: center; background: rgba(244,240,232,.94); font-weight: 800; }

.faq-wrap { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; align-items: start; }
.faq-intro h2 { margin: 15px 0 20px; font-family: "Barlow Condensed", sans-serif; font-size: clamp(3.5rem, 6vw, 6rem); line-height: .9; text-transform: uppercase; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: grid; grid-template-columns: 1fr 48px; align-items: center; gap: 20px; padding: 25px 0; border: 0; background: none; color: var(--ink); text-align: left; font-weight: 800; }
.faq-question .plus { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--acid); font-size: 1.35rem; transition: transform .3s var(--ease), background .2s ease; }
.faq-question:hover .plus { background: var(--orange); color: var(--ink); }
.faq-question[aria-expanded="true"] .plus { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.faq-answer > div { overflow: hidden; }
.faq-answer p { margin: 0; padding: 0 64px 25px 0; color: var(--muted); }
.faq-question[aria-expanded="true"] + .faq-answer { grid-template-rows: 1fr; }

.contact-section { position: relative; overflow: hidden; }
.contact-section::after { content: "KDS"; position: absolute; right: -20px; bottom: -130px; color: rgba(255,255,255,.035); font-family: "Barlow Condensed", sans-serif; font-size: 23rem; font-weight: 900; line-height: 1; }
.contact-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: start; }
.contact-copy h2 { margin: 15px 0 20px; font-family: "Barlow Condensed", sans-serif; font-size: clamp(4rem, 7vw, 7rem); line-height: .86; text-transform: uppercase; }
.contact-copy > p { color: rgba(255,255,255,.62); }
.contact-details { display: grid; gap: 12px; margin-top: 32px; }
.contact-detail { display: grid; grid-template-columns: 44px 1fr; gap: 14px; padding: 16px 0; border-top: 1px solid var(--line-dark); }
.contact-detail i { width: 42px; height: 42px; display: grid; place-items: center; background: var(--acid); color: var(--ink); border-radius: 12px; }
.contact-detail strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.5); }
.contact-detail span { display: block; margin-top: 3px; overflow-wrap: anywhere; }

.form-panel { padding: 32px; background: var(--paper); color: var(--ink); border-radius: 28px; box-shadow: var(--shadow); }
.form-panel h3 { margin: 0 0 6px; font-family: "Barlow Condensed", sans-serif; font-size: 2.4rem; text-transform: uppercase; }
.form-panel > p { margin: 0 0 24px; color: var(--muted); font-size: .88rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .76rem; text-transform: uppercase; letter-spacing: .07em; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(11,12,14,.22);
  border-radius: 13px;
  padding: 12px 14px;
  background: white;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); box-shadow: 0 0 0 4px rgba(217,255,69,.45); }
.form-consent { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; margin: 18px 0; color: var(--muted); font-size: .78rem; }
.form-consent input { margin-top: 3px; accent-color: var(--ink); }
.form-status { display: none; margin-top: 14px; padding: 12px 14px; border-radius: 12px; font-size: .84rem; font-weight: 700; }
.form-status.show { display: block; }
.form-status.success { background: #dff3cf; color: #274617; }
.form-status.error { background: #ffe0d8; color: #6b2114; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.site-footer { background: #050607; color: white; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr 1fr; gap: 45px; }
.footer-brand p { max-width: 38ch; color: rgba(255,255,255,.52); font-size: .84rem; }
.footer-title { margin: 0 0 14px; color: rgba(255,255,255,.42); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; }
.footer-links { display: grid; gap: 9px; }
.footer-links a, .footer-links button { padding: 0; border: 0; background: none; color: rgba(255,255,255,.72); text-decoration: none; text-align: left; font-size: .84rem; }
.footer-links a:hover, .footer-links button:hover { color: var(--acid); }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; margin-top: 50px; padding-top: 22px; border-top: 1px solid var(--line-dark); color: rgba(255,255,255,.4); font-size: .75rem; }

.modal { position: fixed; inset: 0; z-index: 500; display: grid; place-items: center; padding: 20px; background: rgba(0,0,0,.76); backdrop-filter: blur(8px); opacity: 0; transition: opacity .25s ease; }
.modal.open { opacity: 1; }
.modal-dialog { width: min(760px, 100%); max-height: calc(100vh - 40px); overflow: auto; padding: 30px; background: var(--paper); border-radius: 26px; box-shadow: 0 40px 120px rgba(0,0,0,.45); transform: translateY(20px) scale(.98); transition: transform .3s var(--ease); }
.modal.open .modal-dialog { transform: none; }
.modal-head { display: flex; justify-content: space-between; gap: 20px; align-items: start; margin-bottom: 24px; }
.modal-head h2 { margin: 0; font-family: "Barlow Condensed", sans-serif; font-size: 3rem; line-height: .95; text-transform: uppercase; }
.modal-close { flex: 0 0 auto; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: white; color: var(--ink); }
.modal-close:hover { background: var(--acid); }
.cookie-settings-row { display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 18px 0; border-top: 1px solid var(--line); }
.cookie-settings-row p { margin: 3px 0 0; color: var(--muted); font-size: .82rem; }
.switch { position: relative; width: 52px; height: 30px; flex: 0 0 auto; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch span { position: absolute; inset: 0; border-radius: 999px; background: #c5c4c0; transition: .2s; }
.switch span::after { content: ""; position: absolute; width: 22px; height: 22px; left: 4px; top: 4px; border-radius: 50%; background: white; transition: .2s; }
.switch input:checked + span { background: var(--ink); }
.switch input:checked + span::after { transform: translateX(22px); background: var(--acid); }
.switch input:disabled + span { opacity: .55; }

.cookie-banner { position: fixed; z-index: 400; left: 18px; right: 18px; bottom: 18px; display: none; }
.cookie-banner.show { display: block; animation: rise .45s var(--ease); }
.cookie-inner { width: min(980px, 100%); margin-inline: auto; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding: 22px; background: var(--ink); color: white; border: 1px solid rgba(255,255,255,.16); border-radius: 20px; box-shadow: 0 24px 80px rgba(0,0,0,.35); }
.cookie-inner h2 { margin: 0 0 5px; font-family: "Barlow Condensed", sans-serif; text-transform: uppercase; font-size: 1.8rem; }
.cookie-inner p { margin: 0; color: rgba(255,255,255,.62); font-size: .8rem; }
.cookie-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.cookie-actions .btn { min-height: 42px; padding: 9px 16px; font-size: .78rem; }

.toast { position: fixed; z-index: 900; left: 50%; bottom: 24px; transform: translate(-50%, 30px); opacity: 0; pointer-events: none; padding: 12px 18px; border-radius: 999px; background: var(--ink); color: white; font-size: .82rem; font-weight: 800; transition: .3s var(--ease); }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* Legal and status pages */
.legal-hero { background: var(--ink); color: white; padding: 94px 0 76px; }
.legal-hero h1 { margin: 15px 0 18px; font-family: "Barlow Condensed", sans-serif; font-size: clamp(4rem, 9vw, 8.5rem); line-height: .88; text-transform: uppercase; }
.legal-hero p { max-width: 70ch; color: rgba(255,255,255,.62); }
.legal-meta { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 25px; }
.legal-meta span { min-height: 36px; display: inline-flex; align-items: center; padding: 8px 13px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; font-size: .75rem; color: rgba(255,255,255,.74); }
.legal-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 70px; padding: 80px 0 110px; }
.legal-toc { position: sticky; top: 112px; align-self: start; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.46); }
.legal-toc strong { display: block; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; }
.legal-toc a { display: block; padding: 7px 0; color: var(--muted); text-decoration: none; font-size: .8rem; }
.legal-toc a:hover { color: var(--ink); }
.legal-content { max-width: 820px; }
.legal-content section { scroll-margin-top: 120px; padding-bottom: 34px; margin-bottom: 34px; border-bottom: 1px solid var(--line); }
.legal-content h2 { margin: 0 0 15px; font-family: "Barlow Condensed", sans-serif; text-transform: uppercase; font-size: 2.4rem; line-height: 1; }
.legal-content h3 { margin: 25px 0 8px; font-size: 1rem; }
.legal-content p, .legal-content li { color: #484c51; }
.legal-content ul, .legal-content ol { padding-left: 22px; }
.legal-content .notice { padding: 18px; background: white; border-left: 5px solid var(--acid-2); border-radius: 0 14px 14px 0; }
.status-page { min-height: 100vh; display: grid; place-items: center; padding: 40px 20px; background: var(--ink); color: white; text-align: center; }
.status-card { width: min(680px, 100%); padding: 50px; border: 1px solid var(--line-dark); border-radius: 28px; background: rgba(255,255,255,.04); }
.status-code { color: var(--acid); font-family: "Barlow Condensed", sans-serif; font-size: 7rem; font-weight: 900; line-height: 1; }
.status-card h1 { margin: 8px 0 12px; font-family: "Barlow Condensed", sans-serif; font-size: 3.5rem; text-transform: uppercase; }
.status-card p { color: rgba(255,255,255,.62); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: var(--delay, 0ms); }
.reveal.from-left { transform: translateX(-30px); }
.reveal.from-right { transform: translateX(30px); }
.reveal.revealed { opacity: 1; transform: none; }

@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes pulse { 50% { box-shadow: 0 0 0 12px rgba(217,255,69,0); } }
@keyframes rise { from { opacity: 0; transform: translateY(24px); } }

@media (max-width: 1080px) {
  .nav { grid-template-columns: auto 1fr auto; }
  .nav-links { position: absolute; left: 20px; right: 20px; top: calc(100% + 10px); display: none; padding: 16px; border: 1px solid var(--line-dark); border-radius: 18px; background: rgba(11,12,14,.98); box-shadow: var(--shadow); }
  .nav-links.open { display: grid; gap: 4px; animation: rise .25s var(--ease); }
  .nav-links a { padding: 13px 12px; border-radius: 10px; }
  .nav-links a:hover { background: rgba(255,255,255,.07); }
  .nav-toggle { display: grid; place-items: center; order: 3; }
  .nav > .btn { order: 2; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-copy { padding-right: 28px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .price-board { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-lead { grid-column: span 2; }
}

@media (max-width: 820px) {
  .utility-links { display: none; }
  .utility-inner { justify-content: center; text-align: center; }
  .nav { min-height: 70px; gap: 12px; }
  .brand { min-width: 0; }
  .brand-copy small { display: none; }
  .nav > .btn { display: none; }
  .hero { min-height: auto; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { padding: 80px 0 55px; }
  .hero h1 { font-size: clamp(4.6rem, 20vw, 7.4rem); }
  .hero-media { min-height: 520px; margin-inline: -20px; clip-path: none; }
  .hero-media::after { background: linear-gradient(0deg, rgba(0,0,0,.55), transparent 60%); }
  .section { padding: 82px 0; }
  .section-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 36px; }
  .editorial-grid, .area-grid, .faq-wrap, .contact-grid { grid-template-columns: 1fr; gap: 42px; }
  .editorial-media { min-height: 520px; }
  .faq-answer p { padding-right: 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .legal-layout { grid-template-columns: 1fr; gap: 35px; }
  .legal-toc { position: static; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand-copy strong { font-size: 1.25rem; }
  .brand img { width: 42px; height: 42px; }
  .nav-toggle { width: 42px; height: 42px; }
  .hero-copy { padding-top: 62px; }
  .hero .lead { font-size: .98rem; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-pills { display: grid; }
  .hero-pills li { width: 100%; justify-content: flex-start; }
  .hero-media { min-height: 430px; }
  .hero-stamp { right: 18px; left: 18px; bottom: 18px; width: auto; }
  .ticker span { min-height: 50px; font-size: 1.16rem; }
  .service-grid, .price-board, .stat-grid { grid-template-columns: 1fr; }
  .stat-lead { grid-column: auto; }
  .service-card { min-height: 315px; }
  .service-card h3 { margin-top: 54px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: 0; border-bottom: 1px solid var(--line-dark); min-height: 270px; }
  .process-step:last-child { border-bottom: 0; }
  .process-step h3 { margin-top: 45px; }
  .editorial-media { min-height: 430px; }
  .media-label { display: block; }
  .media-label span { margin-top: 8px; }
  .map-shell { min-height: 430px; }
  .form-panel { padding: 22px; border-radius: 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
  .cookie-inner { grid-template-columns: 1fr; }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions .btn { flex: 1; }
  .modal { padding: 0; align-items: end; }
  .modal-dialog { max-height: 92vh; border-radius: 24px 24px 0 0; padding: 22px; }
  .modal-head h2 { font-size: 2.45rem; }
  .status-card { padding: 35px 22px; }
  .status-code { font-size: 5rem; }
}

@media (max-width: 370px) {
  .brand-copy strong { font-size: 1.08rem; }
  .brand img { width: 38px; height: 38px; }
  .nav { gap: 8px; }
  .hero h1 { font-size: 4.15rem; }
  .faq-question { grid-template-columns: 1fr 42px; }
  .faq-question .plus { width: 40px; height: 40px; }
  .cookie-actions { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
