


:root {
  --c-bg: #0f0f1a;
  --c-surface: #16162a;
  --c-surface-2: #1e1e35;
  --c-surface-3: #252540;
  --c-border: rgba(255,255,255,0.08);
  --c-border-accent: rgba(139,92,246,0.3);

  --c-text: #e8e6f0;
  --c-text-muted: #9896b0;
  --c-text-faint: #5a5870;

  --c-primary: #8b5cf6;
  --c-primary-light: #a78bfa;
  --c-secondary: #06b6d4;
  --c-secondary-light: #67e8f9;
  --c-accent: #f472b6;
  --c-accent-warm: #fb923c;

  --grad-main: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 50%, #f472b6 100%);
  --grad-hero: linear-gradient(145deg, #0f0f1a 0%, #1a0a2e 30%, #0d1b2a 70%, #0f1a1f 100%);
  --grad-section: linear-gradient(160deg, #13132a 0%, #0d1e2a 100%);
  --grad-card: linear-gradient(145deg, rgba(139,92,246,0.06) 0%, rgba(6,182,212,0.04) 100%);
  --grad-cta: linear-gradient(135deg, #7c3aed 0%, #0891b2 100%);
  --grad-txt: linear-gradient(90deg, #a78bfa, #67e8f9, #f9a8d4);

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.5), 0 2px 6px rgba(0,0,0,0.3);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.6), 0 4px 12px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 30px rgba(139,92,246,0.2), 0 0 60px rgba(6,182,212,0.1);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.5), 0 1px 4px rgba(139,92,246,0.1), inset 0 1px 0 rgba(255,255,255,0.04);

  --rad-sm: 6px;
  --rad-md: 12px;
  --rad-lg: 20px;
  --rad-xl: 28px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  --hdr-h: 72px;
  --max-w: 1200px;
  --trans: 0.3s ease;
  --trans-slow: 0.6s cubic-bezier(0.16,1,0.3,1);
}


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

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

body {
  font-family: 'Work Sans', sans-serif;
  background-color: var(--c-bg);
  color: var(--c-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

img { display: block; max-width: 100%; height: auto; }

a { color: var(--c-primary-light); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--c-secondary-light); }

address { font-style: normal; }

button { cursor: pointer; font-family: inherit; }


.ctr {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.sec {
  padding: var(--space-2xl) 0;
}

.sec-label {
  display: inline-block;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-secondary);
  margin-bottom: var(--space-sm);
  position: relative;
  padding-left: 1.2rem;
}

.sec-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.6rem;
  height: 2px;
  background: var(--grad-main);
  border-radius: 2px;
}

.sec-label.light { color: rgba(255,255,255,0.6); }
.sec-label.light::before { background: rgba(255,255,255,0.4); }

.sec-title {
  font-family: 'Vollkorn', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.sec-title em {
  font-style: normal;
  background: var(--grad-txt);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sec-body {
  color: var(--c-text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: var(--space-sm);
  max-width: 65ch;
}

.grad-txt {
  background: var(--grad-txt);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--rad-md);
  font-family: 'Work Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--trans);
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-height: 48px;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--trans);
}

.btn-primary {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124,58,237,0.35), 0 1px 4px rgba(0,0,0,0.3);
}

.btn-primary::before {
  background: rgba(255,255,255,0.1);
}

.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124,58,237,0.5), 0 2px 8px rgba(0,0,0,0.3);
}

.btn-primary:hover::before { opacity: 1; }

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--c-text);
  border: 1px solid var(--c-border);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--c-primary-light);
  border: 1.5px solid var(--c-primary);
}

.btn-outline:hover {
  background: rgba(139,92,246,0.12);
  color: var(--c-primary-light);
  transform: translateY(-2px);
}

.btn-white-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  padding: 1rem 2.2rem;
  font-size: 1rem;
}

.btn-white-outline:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-lg { padding: 1rem 2.2rem; font-size: 1.05rem; }

.lnk-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-primary-light);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--trans);
  position: relative;
  padding-bottom: 2px;
}

.lnk-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--grad-main);
  transition: width var(--trans);
}

.lnk-arrow:hover { color: var(--c-secondary-light); gap: 0.8rem; }
.lnk-arrow:hover::after { width: 100%; }


.hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--hdr-h);
  transition: background var(--trans), box-shadow var(--trans), transform 0.4s cubic-bezier(0.4,0,0.2,1);
  background: transparent;
}

.hdr.scrolled {
  background: rgba(15,15,26,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--c-border), 0 4px 20px rgba(0,0,0,0.4);
}

.hdr.hdr-solid {
  background: rgba(15,15,26,0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--c-border);
}

.hdr.hide { transform: translateY(-100%); }

.hdr-inner {
  display: flex;
  align-items: center;
  height: var(--hdr-h);
  padding: 0 var(--space-md);
  max-width: var(--max-w);
  margin: 0 auto;
  gap: var(--space-lg);
}

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

.hdr-nav {
  display: none;
  align-items: center;
  gap: var(--space-lg);
  margin-left: auto;
}

.hdr-lnk {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  position: relative;
  transition: color var(--trans);
  padding: 0.25rem 0;
}

.hdr-lnk::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-main);
  border-radius: 1px;
  transition: width var(--trans);
}

.hdr-lnk:hover, .hdr-lnk.active { color: #fff; }
.hdr-lnk:hover::after, .hdr-lnk.active::after { width: 100%; }

.hdr-cta {
  display: none;
  padding: 0.6rem 1.4rem;
  background: var(--grad-cta);
  color: #fff;
  border-radius: var(--rad-md);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--trans);
  box-shadow: 0 2px 12px rgba(124,58,237,0.3);
  min-height: 44px;
  align-items: center;
}

.hdr-cta:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(124,58,237,0.45);
}

.hdr-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  margin-left: auto;
  padding: 8px;
}

.hdr-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 1px;
  transition: all var(--trans);
}

.hdr-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hdr-burger.open span:nth-child(2) { opacity: 0; }
.hdr-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.mob-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
  visibility: hidden;
}

.mob-menu.open {
  transform: translateX(0);
  visibility: visible;
}

.mob-left {
  width: 55%;
  background: var(--c-surface);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border-right: 1px solid var(--c-border);
}

.mob-right {
  width: 45%;
  position: relative;
  overflow: hidden;
}

.mob-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.8);
}

.mob-brand {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--space-md);
  right: var(--space-md);
}

.mob-brand span {
  display: block;
  font-family: 'Vollkorn', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.mob-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.mob-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--c-border);
  border-radius: var(--rad-md);
  color: var(--c-text);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--trans);
}

.mob-close:hover { background: rgba(255,255,255,0.12); color: #fff; }

.mob-nav {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: var(--space-lg);
}

.mob-lnk {
  font-family: 'Vollkorn', serif;
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 600;
  color: var(--c-text);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: all var(--trans);
  border-bottom: 1px solid transparent;
  display: block;
}

.mob-lnk:hover {
  color: var(--c-primary-light);
  padding-left: 0.5rem;
  border-bottom-color: var(--c-border-accent);
}

.mob-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.8rem;
  background: var(--grad-cta);
  color: #fff;
  border-radius: var(--rad-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--trans);
  min-height: 48px;
}

.mob-cta:hover { color: #fff; opacity: 0.9; }


.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.35) saturate(0.7);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  opacity: 0.88;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--hdr-h) + 3rem) var(--space-md) var(--space-3xl);
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-secondary);
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.25);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: var(--space-lg);
  animation: fadeSlideUp 0.8s ease both;
}

.hero-h1 {
  font-family: 'Vollkorn', serif;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: var(--space-lg);
  max-width: 14ch;
}

.hero-line1 {
  display: block;
  color: #fff;
  animation: fadeSlideUp 0.8s ease 0.15s both;
}

.hero-line2 {
  display: block;
  animation: fadeSlideUp 0.8s ease 0.3s both;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.7);
  max-width: 52ch;
  line-height: 1.75;
  margin-bottom: var(--space-lg);
  animation: fadeSlideUp 0.8s ease 0.45s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  animation: fadeSlideUp 0.8s ease 0.6s both;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
  animation: fadeSlideUp 1s ease 1s both;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease infinite;
}


.pg-hero {
  position: relative;
  padding: calc(var(--hdr-h) + var(--space-2xl)) 0 var(--space-2xl);
  overflow: hidden;
}

.inner-hero .pg-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #1a0a2e 0%, #0d1b2a 60%, #13132a 100%);
  z-index: 0;
}

.inner-hero .pg-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(139,92,246,0.15) 0%, transparent 70%),
              radial-gradient(ellipse 50% 40% at 20% 80%, rgba(6,182,212,0.1) 0%, transparent 60%);
}

.pg-hero-content {
  position: relative;
  z-index: 1;
}

.pg-hero-h1 {
  font-family: 'Vollkorn', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}

.pg-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 55ch;
  line-height: 1.75;
  margin-top: var(--space-sm);
}


.intro-sec { background: var(--c-bg); }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.intro-txt { padding-right: 0; }

.intro-img-wrap {
  position: relative;
  border-radius: var(--rad-xl);
  overflow: hidden;
}

.intro-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--rad-xl);
  transition: transform 0.6s ease;
}

.intro-img-wrap:hover .intro-img { transform: scale(1.03); }

.intro-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  background: var(--grad-main);
  border-radius: 50%;
  opacity: 0.12;
  filter: blur(30px);
  pointer-events: none;
}


.feat-sec {
  background: var(--grad-section);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.feat-hd {
  margin-bottom: var(--space-xl);
}

.feat-grid {
  container-type: inline-size;
  container-name: feat;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.feat-col {
  display: flex;
  flex-direction: column;
}

.feat-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  align-items: flex-start;
}

.feat-ico {
  width: 48px;
  height: 48px;
  border-radius: var(--rad-md);
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--c-primary-light);
  flex-shrink: 0;
  transition: all var(--trans);
}

.feat-item:hover .feat-ico {
  background: rgba(139,92,246,0.2);
  border-color: rgba(139,92,246,0.4);
  color: #fff;
  transform: scale(1.05);
}

.feat-title {
  font-family: 'Vollkorn', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.feat-txt {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  line-height: 1.75;
}

.feat-sep {
  height: 1px;
  background: var(--c-border);
  margin: 0;
}


.approach-sec {
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
}

.approach-sec::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.approach-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.approach-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--rad-xl);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-lg);
}

.approach-points {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: var(--space-md) 0 var(--space-lg);
}

.ap-point {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--c-text-muted);
}

.ap-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad-main);
  flex-shrink: 0;
}


.tools-sec {
  background: var(--grad-section);
  border-top: 1px solid var(--c-border);
}

.tools-hd {
  margin-bottom: var(--space-xl);
  max-width: 55ch;
}

.tools-intro {
  color: var(--c-text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-top: 0.5rem;
}

.tools-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.crd {
  background: var(--grad-card);
  border: 1px solid var(--c-border);
  border-radius: var(--rad-lg);
  padding: var(--space-lg);
  transition: all var(--trans);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.crd::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-main);
  opacity: 0;
  transition: opacity var(--trans);
}

.crd:hover {
  border-color: var(--c-border-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.crd:hover::before { opacity: 1; }

.crd-ico {
  width: 52px;
  height: 52px;
  border-radius: var(--rad-md);
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--c-primary-light);
  margin-bottom: var(--space-md);
  transition: all var(--trans);
}

.crd:hover .crd-ico {
  background: rgba(139,92,246,0.22);
  border-color: rgba(139,92,246,0.4);
}

.crd-title {
  font-family: 'Vollkorn', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.crd-txt {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  line-height: 1.75;
}


.contact-strip-sec {
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
}

.contact-strip {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--rad-xl);
  padding: var(--space-xl);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.contact-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-main);
}

.cs-title {
  font-family: 'Vollkorn', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.cs-sub {
  color: var(--c-text-muted);
  font-size: 1rem;
  line-height: 1.7;
}


.frm { width: 100%; }

.frm-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.frm-grp {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: var(--space-sm);
}

.frm-lbl {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: 0.01em;
}

.frm-req { color: var(--c-accent); }

.frm-inp {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--c-border);
  border-radius: var(--rad-md);
  padding: 0.85rem 1rem;
  color: var(--c-text);
  font-family: 'Work Sans', sans-serif;
  font-size: 0.95rem;
  transition: all var(--trans);
  width: 100%;
  min-height: 48px;
}

.frm-inp::placeholder { color: var(--c-text-faint); }

.frm-inp:focus {
  outline: none;
  border-color: var(--c-primary);
  background: rgba(139,92,246,0.05);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.12);
}

.frm-ta { min-height: 120px; resize: vertical; }
.frm-ta-lg { min-height: 180px; }

.frm-hint {
  font-size: 0.8rem;
  color: var(--c-text-faint);
}

.frm-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
}

.frm-check input { margin-top: 3px; width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--c-primary); }
.frm-check label { font-size: 0.9rem; color: var(--c-text-muted); line-height: 1.5; }
.frm-check a { color: var(--c-primary-light); }

.frm-check-grp { margin-bottom: var(--space-md); }
.frm-check-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.frm-checkbox { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; accent-color: var(--c-primary); }
.frm-check-lbl { font-size: 0.9rem; color: var(--c-text-muted); line-height: 1.5; }
.frm-lnk { color: var(--c-primary-light); }

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


.svc-intro { max-width: 70ch; }
.svc-intro-txt {
  font-size: 1.15rem;
  color: var(--c-text-muted);
  line-height: 1.8;
}

.svc-list { display: flex; flex-direction: column; gap: 0; }

.svc-item {
  border-bottom: 1px solid var(--c-border);
  padding: var(--space-xl) 0;
}

.svc-item:first-child { border-top: 1px solid var(--c-border); }

.svc-item-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.svc-ico-wrap { display: flex; align-items: flex-start; }

.svc-ico {
  width: 64px;
  height: 64px;
  border-radius: var(--rad-lg);
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--c-primary-light);
  flex-shrink: 0;
  transition: all var(--trans);
}

.svc-item:hover .svc-ico {
  background: rgba(139,92,246,0.2);
  border-color: rgba(139,92,246,0.4);
  box-shadow: 0 0 20px rgba(139,92,246,0.2);
}

.svc-title {
  font-family: 'Vollkorn', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.svc-body {
  color: var(--c-text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.svc-details {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: var(--space-md);
}

.svc-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--c-text-muted);
}

.svc-detail i {
  color: var(--c-secondary);
  margin-top: 3px;
  flex-shrink: 0;
}

.svc-cta {
  text-align: center;
  padding: var(--space-xl);
  background: var(--c-surface);
  border-radius: var(--rad-xl);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-card);
}

.svc-cta-title {
  font-family: 'Vollkorn', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.svc-cta-sub {
  color: var(--c-text-muted);
  font-size: 1.05rem;
  margin-bottom: var(--space-lg);
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

.svc-cta-btns { display: flex; flex-wrap: wrap; gap: var(--space-sm); justify-content: center; }


.exp-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.exp-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--rad-xl);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-lg);
}

.exp-areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.exp-area-crd {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--rad-lg);
  padding: var(--space-lg);
  transition: all var(--trans);
  box-shadow: var(--shadow-card);
  position: relative;
}

.exp-area-crd::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--grad-main);
  border-radius: 3px 0 0 3px;
  opacity: 0;
  transition: opacity var(--trans);
}

.exp-area-crd:hover {
  border-color: var(--c-border-accent);
  transform: translateX(4px);
}

.exp-area-crd:hover::after { opacity: 1; }

.ea-num {
  font-family: 'Vollkorn', serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--grad-txt);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.4;
}

.ea-title {
  font-family: 'Vollkorn', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.ea-txt {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  line-height: 1.75;
}

.exp-img-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.exp-full-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--rad-xl);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-lg);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.val-item {
  background: var(--grad-card);
  border: 1px solid var(--c-border);
  border-radius: var(--rad-lg);
  padding: var(--space-lg);
  transition: all var(--trans);
  box-shadow: var(--shadow-sm);
}

.val-item:hover {
  border-color: var(--c-border-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), 0 0 20px rgba(139,92,246,0.08);
}

.val-ico {
  width: 48px;
  height: 48px;
  border-radius: var(--rad-md);
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--c-secondary);
  margin-bottom: var(--space-md);
  transition: all var(--trans);
}

.val-item:hover .val-ico {
  background: rgba(6,182,212,0.18);
  border-color: rgba(6,182,212,0.35);
}

.val-title {
  font-family: 'Vollkorn', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 0.5rem;
}

.val-txt {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  line-height: 1.75;
}


.wts-intro { max-width: 68ch; }

.wts-signs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.wts-sign {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--rad-lg);
  padding: var(--space-lg);
  transition: all var(--trans);
  box-shadow: var(--shadow-sm);
}

.wts-sign:hover {
  border-color: rgba(244,114,182,0.25);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), 0 0 20px rgba(244,114,182,0.06);
}

.wts-sign-ico {
  font-size: 1.3rem;
  color: var(--c-accent);
  margin-bottom: var(--space-sm);
}

.wts-sign-title {
  font-family: 'Vollkorn', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.wts-sign-txt {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  line-height: 1.75;
}

.wts-steps { display: flex; flex-direction: column; gap: 0; margin-top: var(--space-xl); }

.wts-step {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--c-border);
  align-items: flex-start;
}

.wts-step:last-child { border-bottom: none; }

.step-num {
  font-family: 'Vollkorn', serif;
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
  width: 2rem;
  margin-top: 0.2rem;
}

.step-title {
  font-family: 'Vollkorn', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.step-txt {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  line-height: 1.75;
}

.wts-img-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.wts-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--rad-xl);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-lg);
}


.faq-list { display: flex; flex-direction: column; gap: 0; margin-top: var(--space-xl); }

.faq-item {
  border-bottom: 1px solid var(--c-border);
}

.faq-item:first-child { border-top: 1px solid var(--c-border); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  background: none;
  border: none;
  color: var(--c-text);
  font-family: 'Vollkorn', serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color var(--trans);
}

.faq-q:hover { color: var(--c-primary-light); }

.faq-ico {
  color: var(--c-primary-light);
  font-size: 0.85rem;
  transition: transform var(--trans);
  flex-shrink: 0;
}

.faq-item.open .faq-ico { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-a p {
  padding-bottom: var(--space-md);
  color: var(--c-text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.faq-item.open .faq-a { max-height: 300px; }


.contact-main { padding-top: var(--hdr-h); }

.contact-facts-sec {
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  padding: var(--space-lg) 0;
}

.contact-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.cf-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.cf-ico {
  width: 40px;
  height: 40px;
  border-radius: var(--rad-md);
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--c-primary-light);
  flex-shrink: 0;
}

.cf-txt { display: flex; flex-direction: column; gap: 0.2rem; }

.cf-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-faint);
}

.cf-val {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  font-weight: 500;
}

a.cf-val:hover { color: var(--c-primary-light); }

.contact-ctr { max-width: 760px; }

.contact-form-wrap {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--rad-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-main);
}

.contact-form-hd { margin-bottom: var(--space-xl); }

.contact-h1 {
  font-family: 'Vollkorn', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--c-text);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.contact-intro {
  color: var(--c-text-muted);
  font-size: 1rem;
  line-height: 1.75;
}


.map-sec { background: var(--c-bg); border-top: 1px solid var(--c-border); }

.map-wrap { max-width: 900px; }

.map-title {
  font-family: 'Vollkorn', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 0.5rem;
}

.map-sub {
  color: var(--c-text-muted);
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.map-frame {
  border-radius: var(--rad-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-md);
}

.map-frame iframe { display: block; }


.thanks-body { display: flex; flex-direction: column; min-height: 100vh; }

.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-cta);
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) var(--space-md);
}

.thanks-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.thanks-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.thanks-icon {
  font-size: 3.5rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-lg);
}

.thanks-h1 {
  font-family: 'Vollkorn', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}

.thanks-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.thanks-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  margin-top: var(--space-lg);
}

.thanks-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.thanks-links a:hover { color: #fff; }


.legal-main { padding-top: var(--hdr-h); }

.legal-hero {
  background: linear-gradient(145deg, #1a0a2e 0%, #0d1b2a 100%);
  padding: var(--space-2xl) 0 var(--space-xl);
  border-bottom: 1px solid var(--c-border);
  position: relative;
  overflow: hidden;
}

.legal-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(139,92,246,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.legal-hero-alt { background: linear-gradient(145deg, #0d1b2a 0%, #13132a 100%); }

.legal-hero-b {
  background: linear-gradient(145deg, #0a1a2e 0%, #1a0a2e 100%);
}

.legal-h1 {
  font-family: 'Vollkorn', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.legal-date {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  position: relative;
  z-index: 1;
}

.legal-body { padding: var(--space-2xl) 0; }

.legal-ctr { max-width: 780px; }

.legal-intro {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--c-border);
}

.legal-intro p {
  color: var(--c-text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.legal-sec {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--c-border);
}

.legal-sec:last-child { border-bottom: none; }

.legal-sec h2 {
  font-family: 'Vollkorn', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: var(--space-sm);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--c-border);
}

.legal-sec p {
  color: var(--c-text-muted);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.legal-sec p:last-child { margin-bottom: 0; }

.legal-addr {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-left: 3px solid var(--c-primary);
  border-radius: 0 var(--rad-md) var(--rad-md) 0;
  padding: var(--space-md) var(--space-lg);
  color: var(--c-text-muted);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-top: var(--space-sm);
}

.legal-addr a { color: var(--c-primary-light); }


.cookie-tbl-wrap {
  overflow-x: auto;
  margin: var(--space-md) 0;
  border-radius: var(--rad-md);
  border: 1px solid var(--c-border);
}

.cookie-tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.cookie-tbl th {
  background: var(--c-surface-2);
  color: var(--c-text);
  font-weight: 600;
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--c-border);
}

.cookie-tbl td {
  padding: 0.75rem 1rem;
  color: var(--c-text-muted);
  border-bottom: 1px solid var(--c-border);
}

.cookie-tbl tr:last-child td { border-bottom: none; }
.cookie-tbl code {
  background: rgba(139,92,246,0.1);
  color: var(--c-primary-light);
  padding: 0.1em 0.4em;
  border-radius: 4px;
  font-size: 0.85em;
}


.ftr {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  padding: var(--space-2xl) 0 0;
  margin-top: auto;
}

.ftr-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--c-border);
}

.ftr-logo { margin-bottom: var(--space-sm); opacity: 0.9; }

.ftr-tagline {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-md);
  max-width: 32ch;
}

.ftr-addr {
  font-size: 0.875rem;
  color: var(--c-text-faint);
  line-height: 1.8;
}

.ftr-addr a { color: var(--c-text-faint); transition: color var(--trans); }
.ftr-addr a:hover { color: var(--c-primary-light); }

.ftr-hdg {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-faint);
  margin-bottom: var(--space-sm);
}

.ftr-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ftr-nav a {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  text-decoration: none;
  transition: color var(--trans);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.ftr-nav a:hover { color: var(--c-primary-light); }

.ftr-bottom {
  padding: var(--space-md) 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.ftr-copy, .ftr-legal {
  font-size: 0.8rem;
  color: var(--c-text-faint);
}


@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}


.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16,1,0.3,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


.cc-card {
  position: fixed;
  bottom: var(--space-md);
  right: var(--space-md);
  width: 320px;
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  border-radius: var(--rad-xl);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(0,0,0,0.5);
  z-index: 9999;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), opacity 0.4s ease;
  overflow: hidden;
}

.cc-card.cc-show {
  transform: translateY(0);
  opacity: 1;
}

.cc-card::before {
  content: '';
  display: block;
  height: 3px;
  background: var(--grad-main);
}

.cc-inner { padding: var(--space-md); }

.cc-icon {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  display: block;
}

.cc-title {
  font-family: 'Vollkorn', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 0.5rem;
}

.cc-txt {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-sm);
}

.cc-txt a { color: var(--c-primary-light); font-size: inherit; }

.cc-btns {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cc-btn {
  width: 100%;
  padding: 0.65rem 1rem;
  border-radius: var(--rad-md);
  font-family: 'Work Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--trans);
  border: none;
  min-height: 44px;
}

.cc-btn-accept {
  background: var(--grad-cta);
  color: #fff;
}

.cc-btn-accept:hover { opacity: 0.9; }

.cc-btn-reject {
  background: transparent;
  color: var(--c-text-muted);
  border: 1px solid var(--c-border);
}

.cc-btn-reject:hover { background: rgba(255,255,255,0.05); color: var(--c-text); }

.cc-btn-custom {
  background: transparent;
  color: var(--c-primary-light);
  border: 1px solid rgba(139,92,246,0.3);
  font-size: 0.8rem;
}

.cc-btn-custom:hover { background: rgba(139,92,246,0.08); }

.cc-custom-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.cc-custom-panel.open { max-height: 300px; }

.cc-toggles { padding: var(--space-sm) 0; display: flex; flex-direction: column; gap: 0.75rem; }

.cc-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.cc-toggle-label { font-size: 0.82rem; color: var(--c-text-muted); }

.cc-toggle-label strong { display: block; color: var(--c-text); font-size: 0.85rem; }

.cc-switch {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}

.cc-switch input { opacity: 0; width: 0; height: 0; }

.cc-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--c-surface-3);
  border-radius: 11px;
  transition: background var(--trans);
  border: 1px solid var(--c-border);
}

.cc-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--c-text-faint);
  border-radius: 50%;
  transition: all var(--trans);
}

.cc-switch input:checked + .cc-slider { background: var(--c-primary); border-color: var(--c-primary); }
.cc-switch input:checked + .cc-slider::before { transform: translateX(18px) translateY(-50%); background: #fff; }
.cc-switch input:disabled + .cc-slider { opacity: 0.5; cursor: not-allowed; }

.cc-save-btn {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.6rem;
  background: var(--grad-cta);
  color: #fff;
  border: none;
  border-radius: var(--rad-md);
  font-family: 'Work Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity var(--trans);
  min-height: 44px;
}

.cc-save-btn:hover { opacity: 0.9; }


@media (min-width: 768px) {
  .hdr-nav { display: flex; }
  .hdr-cta { display: inline-flex; }
  .hdr-burger { display: none; }

  .intro-grid { grid-template-columns: 1fr 1fr; }
  .intro-txt { padding-right: var(--space-md); }

  .approach-inner { grid-template-columns: 1fr 1fr; }

  .feat-grid { grid-template-columns: 1fr 1fr; gap: 0 var(--space-xl); }
  .feat-col:first-child { border-right: 1px solid var(--c-border); padding-right: var(--space-xl); }
  .feat-col:last-child { padding-left: var(--space-xl); }

  .tools-cards { grid-template-columns: 1fr 1fr; }

  .contact-strip { grid-template-columns: 1fr 1.2fr; }

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

  .exp-intro-grid { grid-template-columns: 1fr 1fr; }
  .exp-areas-grid { grid-template-columns: 1fr 1fr; }
  .exp-img-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }

  .wts-signs-grid { grid-template-columns: 1fr 1fr; }
  .wts-img-grid { grid-template-columns: 1fr 1fr; }

  .contact-facts { grid-template-columns: repeat(4, 1fr); }

  .svc-item-inner { grid-template-columns: 80px 1fr; }

  .ftr-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .ftr-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}


@media (min-width: 1024px) {
  .hero-content { padding-bottom: var(--space-3xl); }
  .tools-cards { grid-template-columns: repeat(4, 1fr); }
  .exp-areas-grid { grid-template-columns: 1fr 1fr; }
}


@media (max-width: 480px) {
  .mob-left { width: 75%; }
  .mob-right { width: 25%; }
  .mob-brand { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cc-card { left: var(--space-sm); right: var(--space-sm); width: auto; bottom: var(--space-sm); }
}


@container feat (min-width: 700px) {
  .feat-grid { grid-template-columns: 1fr 1fr; }
}