/* ============================================================
   KILBRAVOX — MAIN STYLESHEET
   Maximalist Color System + Premium Whitespace
   ============================================================ */


:root {
  
  --c-ink: #1a1825;         
  --c-ink2: #2e2b3a;        
  --c-paper: #faf9f7;       

  
  --c-yellow: #f5c842;      
  --c-coral: #f2694a;       
  --c-green: #2eb87a;       
  --c-purple: #6c4fd8;      
  --c-navy: #1e2d5a;        

  
  --c-yellow-lt: #fffbe8;
  --c-coral-lt: #fff2ee;
  --c-green-lt: #e8f9f2;
  --c-purple-lt: #f0ecfd;

  
  --ff-head: 'Outfit', sans-serif;
  --ff-body: 'Work Sans', sans-serif;

  
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 2rem;
  --sp-lg: 4rem;
  --sp-xl: 7rem;
  --sp-2xl: 10rem;

  
  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-xl: 40px;
  --r-pill: 999px;

  
  --shadow-sm: 0 1px 3px rgba(26,24,37,0.06), 0 2px 8px rgba(26,24,37,0.04);
  --shadow-md: 0 4px 12px rgba(26,24,37,0.08), 0 8px 28px rgba(26,24,37,0.06);
  --shadow-lg: 0 8px 24px rgba(26,24,37,0.10), 0 20px 60px rgba(26,24,37,0.08);
  --shadow-xl: 0 16px 40px rgba(26,24,37,0.12), 0 32px 80px rgba(26,24,37,0.08);
  --shadow-color: 0 4px 20px rgba(108,79,216,0.20), 0 8px 32px rgba(108,79,216,0.12);

  
  --t-fast: 0.18s ease;
  --t-mid: 0.3s ease;
  --t-slow: 0.5s ease;

  
  --hdr-h: 72px;
}


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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-body);
  background: var(--c-paper);
  color: var(--c-ink);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }


.container {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}


.hdr {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--c-paper);
  height: var(--hdr-h);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background var(--t-mid);
}

.hdr-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.hdr-logo { display: flex; align-items: center; flex-shrink: 0; }
.hdr-logo img { transition: opacity var(--t-fast); }
.hdr-logo:hover img { opacity: 0.75; }

.hdr-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.hdr-link {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--c-ink2);
  padding: 0.5rem 0.75rem;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
  position: relative;
}
.hdr-link:hover, .hdr-link.active { color: var(--c-purple); }
.hdr-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--c-purple);
  border-radius: 2px;
}


.hdr-border {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--c-yellow), var(--c-coral), var(--c-purple));
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.hdr.scrolled .hdr-border { transform: translateX(-50%) scaleX(1); }

.hdr-cta {
  margin-left: 1.5rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.hdr-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hdr-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-ink);
  border-radius: 2px;
  transition: transform var(--t-mid), opacity var(--t-mid);
}


.mob-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--c-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-mid);
}
.mob-overlay.open { opacity: 1; pointer-events: all; }

.mob-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: #fff;
  font-size: 2rem;
  padding: 0.5rem;
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.mob-close:hover { opacity: 0.7; transform: rotate(90deg); }

.mob-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.mob-link {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(1.8rem, 6vw, 3rem);
  color: #fff;
  transition: opacity var(--t-fast), transform var(--t-fast);
  letter-spacing: -0.02em;
}
.mob-link:hover { opacity: 0.7; transform: translateX(8px); }


.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--c-purple);
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: var(--r-pill);
  transition: background var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
  box-shadow: var(--shadow-sm), 0 4px 16px rgba(108,79,216,0.25);
  border: 2px solid transparent;
}
.btn-primary:hover {
  background: #5840c2;
  box-shadow: var(--shadow-md), 0 8px 24px rgba(108,79,216,0.35);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--c-ink);
  padding: 0.75rem 1.75rem;
  border-radius: var(--r-pill);
  border: 2px solid rgba(26,24,37,0.2);
  transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
}
.btn-ghost:hover {
  border-color: var(--c-ink);
  background: rgba(26,24,37,0.04);
  transform: translateY(-1px);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1rem;
  background: var(--c-yellow);
  color: var(--c-ink);
  padding: 0.85rem 2rem;
  border-radius: var(--r-pill);
  transition: background var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
  box-shadow: 0 4px 16px rgba(245,200,66,0.4);
}
.btn-cta:hover {
  background: #e8bb2a;
  box-shadow: 0 8px 24px rgba(245,200,66,0.5);
  transform: translateY(-2px);
}

.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: var(--r-pill);
  border: 2px solid rgba(255,255,255,0.4);
  transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
}
.btn-cta-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  transform: translateY(-1px);
}

.btn-urgent {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.1rem;
  background: #fff;
  color: var(--c-coral);
  padding: 0.9rem 2rem;
  border-radius: var(--r-pill);
  transition: background var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
  box-shadow: var(--shadow-md);
}
.btn-urgent:hover {
  background: var(--c-coral-lt);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }


.sec-label {
  display: inline-block;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-purple);
  background: var(--c-purple-lt);
  padding: 0.3rem 0.9rem;
  border-radius: var(--r-pill);
  margin-bottom: 1.25rem;
}
.sec-label-light {
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.15);
}

.sec-title {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  color: var(--c-ink);
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}
.sec-title-light { color: #fff; }

.sec-body {
  font-size: 1.05rem;
  color: var(--c-ink2);
  line-height: 1.75;
  max-width: 58ch;
  margin-bottom: 1.25rem;
}
.sec-body-light { color: rgba(255,255,255,0.85); max-width: 58ch; margin-bottom: 1.25rem; line-height: 1.75; font-size: 1.05rem; }


.sec { padding: clamp(4rem, 8vw, 7rem) 0; }


.sec-hero {
  background: var(--c-yellow);
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--hdr-h) + clamp(3rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.hero-bg-shape {
  position: absolute;
  top: -10%;
  right: -15%;
  width: 55%;
  aspect-ratio: 1;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero-top {
  max-width: 720px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.hero-tag {
  display: inline-block;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-ink);
  background: rgba(26,24,37,0.1);
  padding: 0.35rem 1rem;
  border-radius: var(--r-pill);
  margin-bottom: 1.5rem;
}

.hero-h1 {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--c-ink);
  margin-bottom: 1.5rem;
}
.hero-accent { color: var(--c-purple); }

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--c-ink2);
  max-width: 55ch;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}


.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.hcrd {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-lg);
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.hcrd:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }

.hcrd-ico {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--c-purple-lt);
  color: var(--c-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  transition: background var(--t-fast), transform var(--t-fast);
}
.hcrd:hover .hcrd-ico { background: var(--c-purple); color: #fff; transform: scale(1.05); }

.hcrd-title {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--c-ink);
  margin-bottom: 0.6rem;
}
.hcrd-txt { font-size: 0.9rem; color: var(--c-ink2); line-height: 1.6; }


.sec-problem { background: var(--c-paper); }

.prob-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.prob-img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.prob-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-xl);
  transition: transform var(--t-slow);
}
.prob-img-wrap:hover .prob-img { transform: scale(1.02); }

.prob-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--c-coral);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow-md);
}

.prob-signs {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.prob-sign {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--c-ink2);
}
.prob-sign i { color: var(--c-coral); font-size: 1.1rem; flex-shrink: 0; }


.sec-solution {
  background: var(--c-navy);
  position: relative;
  overflow: hidden;
}
.sec-solution::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(108,79,216,0.15) 100%);
  pointer-events: none;
}

.sol-head {
  max-width: 680px;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.sol-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.sol-crd {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  transition: background var(--t-mid), transform var(--t-mid), border-color var(--t-mid);
}
.sol-crd:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(245,200,66,0.4);
  transform: translateY(-3px);
}

.sol-ico {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: rgba(245,200,66,0.15);
  color: var(--c-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  transition: background var(--t-fast);
}
.sol-crd:hover .sol-ico { background: var(--c-yellow); color: var(--c-ink); }

.sol-crd h3 {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.6rem;
}
.sol-crd p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.65; }


.sec-about-teaser { background: var(--c-yellow-lt); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-content { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }

.about-img-wrap { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.about-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.about-img-wrap:hover .about-img { transform: scale(1.03); }


.sec-process { background: var(--c-paper); }

.proc-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.proc-swiper { padding-bottom: 3.5rem !important; }

.proc-slide {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: transform var(--t-mid), box-shadow var(--t-mid);
  position: relative;
  overflow: hidden;
}
.proc-slide::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-yellow), var(--c-coral));
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.proc-slide:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.proc-num {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 3rem;
  color: rgba(26,24,37,0.06);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.proc-slide-ico {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--c-yellow-lt);
  color: var(--c-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  transition: background var(--t-fast), color var(--t-fast);
}
.proc-slide:hover .proc-slide-ico { background: var(--c-coral); color: #fff; }
.proc-slide h3 {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--c-ink);
  margin-bottom: 0.6rem;
}
.proc-slide p { font-size: 0.9rem; color: var(--c-ink2); line-height: 1.65; }


.swiper-pagination-bullet { background: var(--c-ink2); opacity: 0.25; }
.swiper-pagination-bullet-active { background: var(--c-purple); opacity: 1; }
.swiper-button-next, .swiper-button-prev { color: var(--c-purple) !important; }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 1.2rem !important; }


.sec-industries { background: var(--c-coral); }

.ind-head { max-width: 600px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.ind-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}

.ind-itm {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-lg);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  text-align: center;
  color: #fff;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background var(--t-fast), transform var(--t-fast);
  cursor: default;
}
.ind-itm i { font-size: 1.5rem; }
.ind-itm:hover { background: rgba(255,255,255,0.25); transform: translateY(-3px); }


.sec-gallery { background: var(--c-green-lt); }
.sec-gallery .sec-label { color: var(--c-green); background: rgba(46,184,122,0.12); }
.sec-gallery h2 { margin-bottom: 2.5rem; }

.gal-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.25rem;
}
.gal-item { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.gal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
  transition: transform var(--t-slow);
}
.gal-item:hover .gal-img { transform: scale(1.04); }
.gal-large { grid-row: span 2; }
.gal-large .gal-img { min-height: 420px; }


.sec-cta { background: var(--c-purple); }

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.cta-title {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.cta-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 50ch;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.cta-deco {
  font-size: clamp(4rem, 10vw, 8rem);
  color: rgba(255,255,255,0.08);
  flex-shrink: 0;
  line-height: 1;
}


.sidebar-cta {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 800;
}

.sidebar-cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: var(--c-green);
  color: #fff;
  padding: 1rem 0.7rem;
  border-radius: var(--r-md) 0 0 var(--r-md);
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 0.75rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  box-shadow: var(--shadow-lg);
  transition: background var(--t-fast), transform var(--t-fast), padding var(--t-fast);
  letter-spacing: 0.05em;
}
.sidebar-cta-btn i { transform: rotate(180deg); font-size: 1rem; }
.sidebar-cta-btn:hover {
  background: #25a46c;
  padding-left: 1rem;
  box-shadow: var(--shadow-xl);
}


.ftr {
  background: var(--c-ink);
  color: rgba(255,255,255,0.75);
  margin-top: auto;
}

.ftr-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: clamp(3rem, 5vw, 5rem) clamp(1.25rem, 5vw, 3rem);
  width: min(100%, 1180px);
  margin: 0 auto;
}

.ftr-logo { margin-bottom: 1rem; filter: brightness(10) grayscale(1); opacity: 0.85; }
.ftr-tagline { font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; max-width: 28ch; }
.ftr-addr { font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,0.5); }

.ftr-head {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.ftr-links { display: flex; flex-direction: column; gap: 0.6rem; }
.ftr-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--t-fast);
}
.ftr-links a:hover { color: #fff; }

.ftr-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.ftr-contact a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--t-fast);
}
.ftr-contact a:hover { color: var(--c-yellow); }
.ftr-contact i { color: var(--c-yellow); font-size: 0.85rem; }

.ftr-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem clamp(1.25rem, 5vw, 3rem);
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  width: min(100%, 1180px);
  margin: 0 auto;
}


.sec-page-hero {
  padding-top: calc(var(--hdr-h) + clamp(4rem, 8vw, 7rem));
  padding-bottom: clamp(4rem, 8vw, 7rem);
}
.sec-page-hero--yellow { background: var(--c-yellow); }
.sec-page-hero--coral { background: var(--c-coral); }
.sec-page-hero--green { background: var(--c-green); }
.sec-page-hero--purple { background: var(--c-purple); }

.page-hero-h1 {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--c-ink);
  margin-bottom: 1.25rem;
}
.sec-page-hero--coral .page-hero-h1,
.sec-page-hero--green .page-hero-h1,
.sec-page-hero--purple .page-hero-h1 { color: #fff; }

.sec-page-hero--coral .sec-label,
.sec-page-hero--green .sec-label,
.sec-page-hero--purple .sec-label { color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.15); }

.page-hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 55ch;
  line-height: 1.7;
  color: rgba(26,24,37,0.7);
}
.sec-page-hero--coral .page-hero-desc,
.sec-page-hero--green .page-hero-desc,
.sec-page-hero--purple .page-hero-desc { color: rgba(255,255,255,0.8); }


.sec-story { background: var(--c-paper); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.story-img-wrap { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.story-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform var(--t-slow); }
.story-img-wrap:hover .story-img { transform: scale(1.02); }


.sec-values { background: var(--c-navy); }
.sec-values .sec-label { color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.1); }
.sec-values .sec-title { color: #fff; margin-bottom: 3rem; }

.val-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.val-crd {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: background var(--t-mid), border-color var(--t-mid), transform var(--t-mid);
}
.val-crd:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(245,200,66,0.3);
  transform: translateY(-3px);
}

.val-ico {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: rgba(245,200,66,0.1);
  color: var(--c-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  transition: background var(--t-fast), color var(--t-fast);
}
.val-crd:hover .val-ico { background: var(--c-yellow); color: var(--c-ink); }
.val-crd h3 { font-family: var(--ff-head); font-weight: 700; font-size: 1rem; color: #fff; margin-bottom: 0.6rem; }
.val-crd p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.65; }


.sec-philosophy { background: var(--c-yellow-lt); }
.phil-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.phil-img-wrap { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.phil-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform var(--t-slow); }
.phil-img-wrap:hover .phil-img { transform: scale(1.02); }


.sec-location { background: var(--c-green); }
.sec-location .sec-label { color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.15); }
.sec-location .sec-title { color: #fff; }

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.loc-details { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.loc-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}
.loc-item i { color: rgba(255,255,255,0.6); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.loc-item a { color: rgba(255,255,255,0.85); transition: color var(--t-fast); }
.loc-item a:hover { color: #fff; }

.loc-img-wrap { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.loc-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform var(--t-slow); }
.loc-img-wrap:hover .loc-img { transform: scale(1.02); }


.sec-timeline { background: var(--c-paper); }

.tl-intro { max-width: 680px; margin-bottom: clamp(3rem, 6vw, 5rem); }

.tl-wrap { display: flex; flex-direction: column; gap: 0; }

.tl-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  position: relative;
}

.tl-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.tl-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--c-purple);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(108,79,216,0.3);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.tl-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--c-purple), var(--c-coral));
  min-height: 60px;
}
.tl-line--last { background: transparent; }

.tl-content {
  padding-bottom: clamp(2.5rem, 4vw, 4rem);
  padding-top: 0.75rem;
}

.tl-ico {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--c-purple-lt);
  color: var(--c-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.tl-title {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--c-ink);
  margin-bottom: 0.75rem;
}

.tl-body {
  font-size: 1rem;
  color: var(--c-ink2);
  line-height: 1.75;
  max-width: 60ch;
  margin-bottom: 0.75rem;
}


.sec-tools { background: var(--c-navy); }

.tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.tools-img-el {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  transition: transform var(--t-slow);
}
.tools-img:hover .tools-img-el { transform: scale(1.02); }

.tools-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.tool-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  padding: 0.45rem 1rem;
  border-radius: var(--r-pill);
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 0.88rem;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.tool-tag:hover { background: rgba(255,255,255,0.14); border-color: rgba(245,200,66,0.3); }
.tool-tag i { color: var(--c-yellow); }


.sec-faq { background: var(--c-yellow-lt); }
.sec-faq .sec-label { color: var(--c-coral); background: rgba(242,105,74,0.1); }
.sec-faq h2 { margin-bottom: 3rem; }

.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 800px; }

.faq-item { border-bottom: 1px solid rgba(26,24,37,0.1); }
.faq-item:first-child { border-top: 1px solid rgba(26,24,37,0.1); }

.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-ink);
  gap: 1rem;
  transition: color var(--t-fast);
}
.faq-q:hover { color: var(--c-purple); }
.faq-q i { color: var(--c-purple); transition: transform var(--t-mid); flex-shrink: 0; }
.faq-q[aria-expanded="true"] i { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow), padding var(--t-mid);
}
.faq-a.open { max-height: 400px; padding-bottom: 1.5rem; }
.faq-a p { font-size: 0.95rem; color: var(--c-ink2); line-height: 1.75; max-width: 65ch; }


.sec-req-form { background: var(--c-paper); }

.req-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.req-steps { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.req-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.req-step-ico {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--c-green-lt);
  color: var(--c-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.req-step h4 {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--c-ink);
  margin-bottom: 0.3rem;
}
.req-step p { font-size: 0.875rem; color: var(--c-ink2); line-height: 1.6; }

.req-aside {
  background: var(--c-purple-lt);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.req-aside i { color: var(--c-purple); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.req-aside p { font-size: 0.875rem; color: var(--c-ink2); line-height: 1.6; }


.frm { display: flex; flex-direction: column; gap: 1.25rem; }

.frm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.frm-grp { display: flex; flex-direction: column; gap: 0.4rem; }

.frm-lbl {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--c-ink);
}

.frm-inp, .frm-txt, .frm-sel {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--c-ink);
  background: #fff;
  border: 2px solid rgba(26,24,37,0.12);
  border-radius: var(--r-md);
  padding: 0.75rem 1rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  width: 100%;
  min-height: 44px;
}
.frm-inp:focus, .frm-txt:focus, .frm-sel:focus {
  border-color: var(--c-purple);
  box-shadow: 0 0 0 3px rgba(108,79,216,0.12);
}
.frm-txt { resize: vertical; min-height: 120px; }
.frm-sel { appearance: none; cursor: pointer; }

.frm-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.frm-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 2px;
  accent-color: var(--c-purple);
  cursor: pointer;
}
.frm-check label {
  font-size: 0.875rem;
  color: var(--c-ink2);
  line-height: 1.6;
  cursor: pointer;
}
.frm-check a { color: var(--c-purple); text-decoration: underline; }


.sec-contact-split { background: var(--c-paper); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}

.contact-map-wrap { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-map {
  height: 360px;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.contact-map iframe { border-radius: var(--r-xl); }

.contact-info-cards { display: flex; flex-direction: column; gap: 0.75rem; }

.contact-info-crd {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-fast), transform var(--t-fast);
}
.contact-info-crd:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.contact-info-crd i {
  font-size: 1.2rem;
  color: var(--c-purple);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-crd div { display: flex; flex-direction: column; gap: 0.2rem; }
.contact-info-crd strong { font-family: var(--ff-head); font-weight: 700; font-size: 0.85rem; color: var(--c-ink); }
.contact-info-crd span, .contact-info-crd a {
  font-size: 0.9rem;
  color: var(--c-ink2);
  transition: color var(--t-fast);
}
.contact-info-crd a:hover { color: var(--c-purple); }

.contact-form-wrap h2 { margin-bottom: 1rem; }


.sec-urgent { background: var(--c-coral); }

.urgent-box {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.urgent-ico {
  font-size: clamp(3rem, 7vw, 5rem);
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
  line-height: 1;
}
.urgent-title {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  color: #fff;
  margin-bottom: 0.75rem;
}
.urgent-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 55ch;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}


.sec-thanks-hero { padding: 0; }

.thanks-gradient {
  background: linear-gradient(135deg, var(--c-purple) 0%, var(--c-coral) 50%, var(--c-yellow) 100%);
  padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 5vw, 3rem);
  text-align: center;
}
.thanks-inner { max-width: 600px; margin: 0 auto; }

.thanks-ico {
  font-size: 4rem;
  color: #fff;
  margin-bottom: 1.5rem;
  animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes popIn {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.thanks-h1 {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}
.thanks-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

.sec-thanks-next { background: #fff; }
.thanks-content { max-width: 600px; margin: 0 auto; }
.thanks-content h2 { margin-bottom: 2.5rem; }

.thanks-steps { display: flex; flex-direction: column; gap: 1.75rem; margin-bottom: 3rem; }
.thanks-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.thanks-step-num {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--c-purple);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 0.95rem;
}
.thanks-step h4 { font-family: var(--ff-head); font-weight: 700; font-size: 1rem; color: var(--c-ink); margin-bottom: 0.3rem; }
.thanks-step p { font-size: 0.9rem; color: var(--c-ink2); line-height: 1.6; }


.sec-legal-hero {
  background: var(--c-ink);
  padding-top: calc(var(--hdr-h) + 4rem);
  padding-bottom: 3rem;
}
.legal-h1 {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}
.legal-meta { font-size: 0.875rem; color: rgba(255,255,255,0.45); }

.sec-legal-body { background: #fff; }

.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 4rem;
  align-items: start;
}

.legal-sidebar { position: sticky; top: calc(var(--hdr-h) + 2rem); }

.legal-toc { background: var(--c-paper); border-radius: var(--r-lg); padding: 1.5rem; }
.legal-toc-title {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(26,24,37,0.4);
  margin-bottom: 1rem;
}
.legal-toc a {
  display: block;
  font-size: 0.875rem;
  color: var(--c-ink2);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(26,24,37,0.06);
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.legal-toc a:last-child { border-bottom: none; }
.legal-toc a:hover { color: var(--c-purple); padding-left: 6px; }

.legal-content { max-width: 720px; }

.legal-sec {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(26,24,37,0.08);
}
.legal-sec:last-child { border-bottom: none; }

.legal-sec h2 {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--c-ink);
  margin-bottom: 1rem;
}
.legal-sec p {
  font-size: 0.95rem;
  color: var(--c-ink2);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
.legal-sec ul { margin-bottom: 0.75rem; }
.legal-sec ul li {
  font-size: 0.95rem;
  color: var(--c-ink2);
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
}
.legal-sec ul li::before {
  content: '·';
  position: absolute;
  left: 0.5rem;
  color: var(--c-purple);
  font-weight: 700;
}
.legal-sec a { color: var(--c-purple); text-decoration: underline; }
.legal-sec a:hover { color: #5840c2; }

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.legal-table th, .legal-table td {
  text-align: left;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid rgba(26,24,37,0.08);
  color: var(--c-ink2);
}
.legal-table th {
  font-family: var(--ff-head);
  font-weight: 700;
  color: var(--c-ink);
  background: var(--c-paper);
}
.legal-table td:first-child { font-weight: 500; color: var(--c-ink); min-width: 160px; }


.sec-impressum { background: #fff; }

.imp-grid { display: flex; flex-direction: column; gap: 0; max-width: 900px; }

.imp-sec {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(26,24,37,0.08);
}
.imp-sec:last-child { border-bottom: none; }
.imp-sec h2 {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--c-ink);
  margin-bottom: 1rem;
}
.imp-sec p, .imp-sec li {
  font-size: 0.92rem;
  color: var(--c-ink2);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
.imp-sec ul { margin-top: 0.5rem; margin-bottom: 0; }
.imp-sec ul li { padding-left: 1.25rem; position: relative; }
.imp-sec ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--c-purple);
}
.imp-sec a { color: var(--c-purple); text-decoration: underline; }
.imp-sec a:hover { color: #5840c2; }

.imp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.imp-table tr:nth-child(even) { background: var(--c-paper); }
.imp-table td {
  padding: 0.55rem 1rem;
  border-bottom: 1px solid rgba(26,24,37,0.06);
  color: var(--c-ink2);
  vertical-align: top;
}
.imp-table td:first-child { font-weight: 600; color: var(--c-ink); min-width: 200px; }


.ck-link {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--c-ink2);
  background: #fff;
  padding: 0.5rem 0.9rem;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(26,24,37,0.1);
  transition: box-shadow var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.ck-link:hover { box-shadow: var(--shadow-lg); color: var(--c-purple); transform: translateY(-1px); }
.ck-link i { font-size: 0.9rem; }
.ck-link.pulse { animation: ckPulse 2s ease 1s 3; }
@keyframes ckPulse {
  0%, 100% { box-shadow: var(--shadow-md); }
  50% { box-shadow: 0 0 0 6px rgba(108,79,216,0.15), var(--shadow-md); }
}

.ck-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,24,37,0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-mid);
}
.ck-modal-overlay.open { opacity: 1; pointer-events: all; }

.ck-modal {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 2.5rem;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px);
  transition: transform var(--t-mid);
}
.ck-modal-overlay.open .ck-modal { transform: translateY(0); }

.ck-modal-title {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--c-ink);
  margin-bottom: 0.5rem;
}
.ck-modal-desc {
  font-size: 0.9rem;
  color: var(--c-ink2);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}
.ck-modal-desc a { color: var(--c-purple); text-decoration: underline; }

.ck-cats { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.75rem; }

.ck-cat {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--c-paper);
  border-radius: var(--r-md);
  border: 1px solid rgba(26,24,37,0.08);
}
.ck-cat-info h4 {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--c-ink);
  margin-bottom: 0.25rem;
}
.ck-cat-info p { font-size: 0.8rem; color: var(--c-ink2); line-height: 1.5; }

.ck-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.ck-toggle input { opacity: 0; width: 0; height: 0; }
.ck-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(26,24,37,0.15);
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background var(--t-fast);
}
.ck-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  top: 3px;
  left: 3px;
  transition: transform var(--t-fast);
  box-shadow: var(--shadow-sm);
}
.ck-toggle input:checked + .ck-toggle-slider { background: var(--c-purple); }
.ck-toggle input:checked + .ck-toggle-slider::before { transform: translateX(20px); }
.ck-toggle input:disabled + .ck-toggle-slider { cursor: not-allowed; opacity: 0.7; }

.ck-modal-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.ck-btn-all {
  flex: 1;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--c-purple);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast);
  min-height: 44px;
}
.ck-btn-all:hover { background: #5840c2; transform: translateY(-1px); }
.ck-btn-save {
  flex: 1;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--c-paper);
  color: var(--c-ink);
  padding: 0.75rem 1.25rem;
  border-radius: var(--r-pill);
  border: 2px solid rgba(26,24,37,0.15);
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
  min-height: 44px;
}
.ck-btn-save:hover { border-color: var(--c-ink); background: rgba(26,24,37,0.04); transform: translateY(-1px); }


@media (max-width: 1024px) {
  .hero-cards { grid-template-columns: repeat(2, 1fr); }
  .hero-cards .hcrd:last-child { grid-column: span 2; max-width: 400px; }
  .ftr-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .gal-grid { grid-template-columns: 1fr 1fr; }
  .gal-large { grid-column: span 2; grid-row: span 1; }
  .gal-large .gal-img { min-height: 260px; }
  .val-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --hdr-h: 64px; }

  .hdr-nav, .hdr-cta { display: none; }
  .hdr-burger { display: flex; }

  .hero-cards {
    grid-template-columns: 1fr;
  }
  .hero-cards .hcrd:last-child { grid-column: span 1; max-width: 100%; }

  .prob-grid,
  .about-grid,
  .sol-grid,
  .story-grid,
  .phil-grid,
  .loc-grid,
  .tools-grid,
  .req-layout,
  .contact-grid { grid-template-columns: 1fr; }

  .loc-grid .loc-img-wrap { order: -1; }
  .tools-grid .tools-img { order: -1; }
  .about-grid .about-img-wrap { order: -1; }

  .val-grid { grid-template-columns: 1fr; }

  .cta-box { flex-direction: column; text-align: center; gap: 2rem; }
  .cta-deco { display: none; }
  .cta-actions { justify-content: center; }

  .urgent-box { flex-direction: column; text-align: center; gap: 1.5rem; }
  .urgent-ico { font-size: 3rem; }

  .gal-grid { grid-template-columns: 1fr; }
  .gal-large { grid-column: span 1; }
  .gal-large .gal-img { min-height: 200px; }

  .ind-grid { grid-template-columns: repeat(2, 1fr); }

  .tl-item { grid-template-columns: 56px 1fr; gap: 1rem; }
  .tl-num { width: 48px; height: 48px; font-size: 0.85rem; }

  .legal-layout { grid-template-columns: 1fr; }
  .legal-sidebar { position: static; margin-bottom: 2rem; }
  .legal-toc { display: flex; flex-wrap: wrap; gap: 0.25rem; background: none; padding: 0; }
  .legal-toc-title { display: none; }
  .legal-toc a {
    border: 1px solid rgba(26,24,37,0.12);
    border-radius: var(--r-pill);
    padding: 0.3rem 0.8rem;
    font-size: 0.78rem;
    border-bottom: 1px solid rgba(26,24,37,0.12);
  }

  .ftr-inner { grid-template-columns: 1fr; gap: 2rem; }

  .frm-row { grid-template-columns: 1fr; }

  .sidebar-cta { display: none; }

  .sol-grid { grid-template-columns: 1fr; }

  .contact-map { height: 260px; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 2.2rem; }
  .cta-title { font-size: 1.6rem; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero-h1 { font-size: 1.8rem; }
  .ck-modal { padding: 1.75rem 1.25rem; }
  .ck-modal-btns { flex-direction: column; }
  .ck-btn-all, .ck-btn-save { flex: none; width: 100%; }
}