@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ==============================
   COLOR SYSTEM via color-mix()
   ============================== */
:root {
  --base: #0d0f14;
  --surface: #13161e;
  --primary: #4a6cf7;
  --gold: #c9a84c;
  --text: #e8eaf2;
  --text-muted: #8b90a8;
  --border: color-mix(in oklch, var(--text), transparent 85%);

  --primary-dim: color-mix(in oklch, var(--primary), var(--base) 50%);
  --primary-glow: color-mix(in oklch, var(--primary), white 20%);
  --primary-ultra-dim: color-mix(in oklch, var(--primary), transparent 85%);
  --gold-dim: color-mix(in oklch, var(--gold), var(--base) 40%);
  --gold-ultra-dim: color-mix(in oklch, var(--gold), transparent 88%);
  --surface-2: color-mix(in oklch, var(--surface), white 4%);
  --surface-3: color-mix(in oklch, var(--surface), white 8%);
  --surface-hover: color-mix(in oklch, var(--surface), white 12%);

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.6);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.5), 0 2px 6px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.6), 0 4px 16px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 30px color-mix(in oklch, var(--primary), transparent 70%);

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

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

/* ==============================
   RESET & BASE
   ============================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background-color: var(--base);
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s ease, opacity 0.25s ease; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ==============================
   TYPOGRAPHY
   ============================== */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

.sec-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.sec-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-xs);
  padding: 0.3em 0.8em;
  background: var(--gold-ultra-dim);
  border: 1px solid color-mix(in oklch, var(--gold), transparent 75%);
  border-radius: 100px;
}

.sec-sub {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

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

.sec-hd {
  text-align: center;
  margin-bottom: var(--space-xl);
}

/* ==============================
   BUTTONS
   ============================== */
.btn-pri {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: linear-gradient(135deg, var(--primary), color-mix(in oklch, var(--primary), #7b4cf7 40%));
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75em 1.6em;
  border-radius: var(--radius-md);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  box-shadow: 0 4px 16px color-mix(in oklch, var(--primary), transparent 55%), 0 2px 4px rgba(0,0,0,0.4);
}

.btn-pri:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px color-mix(in oklch, var(--primary), transparent 40%), 0 3px 8px rgba(0,0,0,0.5);
  background: linear-gradient(135deg, var(--primary-glow), color-mix(in oklch, var(--primary), #7b4cf7 30%));
}

.btn-pri:active { transform: translateY(0); }

.btn-out {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75em 1.6em;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.btn-out:hover {
  border-color: var(--primary);
  background: var(--primary-ultra-dim);
  transform: translateY(-2px);
}

.btn-lg { font-size: 1rem; padding: 0.9em 2em; }

.lnk-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  color: var(--primary-glow);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.2s ease, color 0.2s ease;
  background: none;
  border: none;
  padding: 0;
}
.lnk-arrow:hover { gap: 0.7em; color: var(--gold); }

/* ==============================
   HEADER
   ============================== */
.hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  border-bottom: 1px solid transparent;
}

.hdr.scrolled {
  background: color-mix(in oklch, var(--surface), transparent 12%);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hdr-inner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 1.1rem var(--space-md);
  max-width: 1300px;
  margin: 0 auto;
}

.hdr-logo {
  display: flex;
  align-items: center;
  gap: 0.6em;
  flex-shrink: 0;
  text-decoration: none;
}

.hdr-logo-img { width: 36px; height: 36px; }

.hdr-logo-txt {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.hdr-logo-accent { color: var(--gold); }

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

.hdr-nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.4em 0.6em;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.hdr-nav-link:hover, .hdr-nav-link.active {
  color: var(--text);
  background: var(--surface-3);
}

.hdr-nav-link.active { color: var(--gold); }

.hdr-cta { margin-left: var(--space-sm); white-space: nowrap; }

.hdr-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.hdr-burger:hover { background: var(--surface-3); }
.hdr-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ==============================
   MOBILE MENU (slide from LEFT)
   ============================== */
.mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 950;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mob-overlay.active { display: block; opacity: 1; }

.mob-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 340px;
  height: 100%;
  background: color-mix(in oklch, var(--surface), #0a0c12 30%);
  z-index: 960;
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 4px 0 40px rgba(0,0,0,0.7);
  border-right: 1px solid var(--border);
}

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

.mob-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: background 0.2s, color 0.2s;
}
.mob-close:hover { background: var(--surface-3); color: var(--text); }

.mob-logo {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
}

.mob-link {
  display: block;
  padding: 0.85em 0.6em;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s, transform 0.25s ease;
  transform: translateX(-20px);
  opacity: 0;
}

.mob-menu.open .mob-link {
  animation: mobLinkIn 0.35s ease forwards;
  animation-delay: calc(var(--i) * 0.07s + 0.1s);
}

@keyframes mobLinkIn {
  to { transform: translateX(0); opacity: 1; }
}

.mob-link:hover { color: var(--text); background: var(--surface-3); }
.mob-cta { margin-top: var(--space-md); text-align: center; justify-content: center; }

/* ==============================
   HERO SECTION
   ============================== */
.sec-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

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

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    color-mix(in oklch, var(--base), transparent 5%) 0%,
    color-mix(in oklch, var(--base), transparent 20%) 45%,
    color-mix(in oklch, var(--base), transparent 55%) 70%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 10rem var(--space-md) var(--space-2xl) calc((100vw - 1200px)/2 + var(--space-md));
  max-width: 680px;
}

@media (max-width: 1200px) {
  .hero-content { padding-left: var(--space-lg); }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-ultra-dim);
  border: 1px solid color-mix(in oklch, var(--gold), transparent 70%);
  padding: 0.4em 1em;
  border-radius: 100px;
  margin-bottom: var(--space-md);
}

.hero-h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--text) 0%, color-mix(in oklch, var(--text), var(--primary) 25%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero-card {
  position: absolute;
  bottom: var(--space-xl);
  right: calc((100vw - 1200px)/2 + var(--space-md));
  z-index: 3;
  background: color-mix(in oklch, var(--surface), transparent 15%);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: translateX(30px);
}

@media (max-width: 1200px) {
  .hero-card { right: var(--space-md); }
}

.hero-card-ico {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary), color-mix(in oklch, var(--primary), #7b4cf7 40%));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px color-mix(in oklch, var(--primary), transparent 50%);
}

.hero-card-title {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
}

.hero-card-desc {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==============================
   INTRO SECTION
   ============================== */
.sec-intro { padding: var(--space-2xl) 0; }

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

.intro-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.intro-right p { color: var(--text-muted); margin-bottom: var(--space-sm); }

/* ==============================
   BENTO GRID
   ============================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--space-sm);
}

.bento-crd {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
  position: relative;
}

.bento-crd::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bento-crd:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 0 1px color-mix(in oklch, var(--primary), transparent 80%);
  border-color: color-mix(in oklch, var(--primary), transparent 70%);
}
.bento-crd:hover::before { opacity: 1; }

.bento-lg { grid-column: span 2; grid-row: span 1; }
.bento-wide { grid-column: span 2; }

.bento-ico {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-ultra-dim);
  border: 1px solid color-mix(in oklch, var(--primary), transparent 75%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-glow);
  margin-bottom: var(--space-sm);
  transition: background 0.25s, color 0.25s;
}
.bento-crd:hover .bento-ico { background: var(--primary-dim); color: #fff; }

.bento-h {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6em;
}

.bento-p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

.bento-img {
  width: 100%;
  border-radius: var(--radius-md);
  margin-top: var(--space-sm);
  object-fit: cover;
  height: 180px;
}

.bento-img-sm { height: 130px; }

/* ==============================
   PROCESS STEPS
   ============================== */
.sec-process { background: var(--surface); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.step {
  position: relative;
  padding: var(--space-lg);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: color-mix(in oklch, var(--primary), transparent 60%);
  line-height: 1;
  margin-bottom: var(--space-sm);
  font-variant-numeric: tabular-nums;
}

.step-h { font-size: 1rem; font-weight: 700; margin-bottom: 0.5em; }
.step p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }

/* ==============================
   SOLUTIONS PREVIEW
   ============================== */
.sol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.sol-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.sol-img { width: 100%; height: 100%; object-fit: cover; }

.sol-content p { color: var(--text-muted); margin-bottom: var(--space-sm); }
.sol-content .btn-pri { margin-top: var(--space-md); }

/* ==============================
   WHY CARDS
   ============================== */
.sec-why { background: var(--surface); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.why-crd {
  padding: var(--space-lg);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.why-crd:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in oklch, var(--gold), transparent 70%);
}

.why-ico {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  display: block;
  transition: transform 0.25s ease;
}
.why-crd:hover .why-ico { transform: scale(1.1); }

.why-h { font-size: 1rem; font-weight: 700; margin-bottom: 0.5em; }
.why-crd p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }

/* ==============================
   BLOG SECTION
   ============================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.blog-crd {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.blog-crd:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-img-wrap {
  overflow: hidden;
  aspect-ratio: 16/9;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-crd:hover .blog-img { transform: scale(1.05); }

.blog-body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-glow);
  background: var(--primary-ultra-dim);
  padding: 0.25em 0.7em;
  border-radius: 100px;
  margin-bottom: var(--space-xs);
}

.blog-h {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6em;
  line-height: 1.35;
}

.blog-excerpt {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: var(--space-sm);
}

/* ==============================
   ARTICLE MODALS
   ============================== */
.art-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1100;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  backdrop-filter: blur(8px);
}

.art-modal.open { display: flex; }

.art-modal-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.art-modal-box h2 { font-size: 1.5rem; margin: 0.5em 0 1em; }
.art-modal-box p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: var(--space-sm); }

.art-modal-img {
  width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  aspect-ratio: 16/9;
  object-fit: cover;
}

.art-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--surface-3);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.art-modal-close:hover { background: var(--surface-hover); color: var(--text); }

/* ==============================
   CTA SECTION
   ============================== */
.sec-cta { padding: var(--space-2xl) 0; }

.cta-box {
  background: linear-gradient(135deg, var(--primary-dim), color-mix(in oklch, #7b4cf7, var(--base) 50%));
  border: 1px solid color-mix(in oklch, var(--primary), transparent 60%);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-2xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.cta-h {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  margin-bottom: 0.4em;
}

.cta-p { color: var(--text-muted); font-size: 0.95rem; max-width: 480px; }

/* ==============================
   PAGE HERO
   ============================== */
.pg-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-2xl);
  overflow: hidden;
}

.pg-hero-short { min-height: 45vh; }

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

.pg-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pg-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-top: 7rem;
}

.pg-hero-h {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: var(--space-sm);
  margin-bottom: 0.4em;
}

.pg-hero-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
}

/* ==============================
   BREADCRUMB
   ============================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.bc-lnk { color: var(--text-muted); transition: color 0.2s; }
.bc-lnk:hover { color: var(--gold); }
.bc-sep { font-size: 0.65rem; color: var(--text-muted); }
.bc-cur { color: var(--text); font-weight: 500; }

/* ==============================
   EXPERTISE PAGE
   ============================== */
.sec-exp-intro { padding-top: var(--space-2xl); }

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

.exp-intro-grid p { color: var(--text-muted); margin-bottom: var(--space-sm); }
.exp-intro-grid h2 { margin-bottom: var(--space-md); }

.exp-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.exp-img { width: 100%; height: 100%; object-fit: cover; }

.exp-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.exp-area-crd {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.exp-area-crd:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.exp-area-num {
  font-size: 2.8rem;
  font-weight: 700;
  color: color-mix(in oklch, var(--gold), transparent 65%);
  line-height: 1;
  margin-bottom: 0.4em;
}

.exp-area-crd h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.6em; color: var(--text); }
.exp-area-crd p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; margin-bottom: 0.5em; }

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

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

.tools-left p { color: var(--text-muted); margin-top: var(--space-sm); }

.tools-right {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.tool-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.tool-item:hover {
  background: var(--surface-3);
  border-color: color-mix(in oklch, var(--primary), transparent 70%);
  transform: translateX(4px);
}

.tool-ico { color: var(--primary-glow); font-size: 1.1rem; width: 20px; text-align: center; }

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.approach-crd {
  padding: var(--space-lg);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.approach-crd:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.approach-ico {
  font-size: 1.8rem;
  color: var(--primary-glow);
  margin-bottom: var(--space-sm);
  display: block;
  transition: transform 0.25s ease;
}
.approach-crd:hover .approach-ico { transform: scale(1.1) rotate(5deg); }

.approach-crd h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5em; }
.approach-crd p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }

/* ==============================
   SOLUTIONS PAGE
   ============================== */
.sec-sol-intro { padding: var(--space-xl) 0 var(--space-sm); }

.sol-intro-wrap { max-width: 800px; margin: 0 auto; text-align: center; }

.sol-intro-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.sol-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  align-items: start;
}

.sol-crd {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.sol-crd:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.sol-crd-featured {
  background: linear-gradient(160deg, var(--primary-dim), color-mix(in oklch, #7b4cf7, var(--base) 60%));
  border-color: color-mix(in oklch, var(--primary), transparent 55%);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.sol-crd-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-ultra-dim);
  border: 1px solid color-mix(in oklch, var(--gold), transparent 65%);
  padding: 0.3em 0.8em;
  border-radius: 100px;
}

.sol-crd-header { display: flex; align-items: center; gap: var(--space-sm); }

.sol-crd-ico {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-ultra-dim);
  border: 1px solid color-mix(in oklch, var(--primary), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary-glow);
  flex-shrink: 0;
  transition: background 0.25s;
}
.sol-crd:hover .sol-crd-ico { background: var(--primary-dim); }

.sol-crd-h { font-size: 1.2rem; font-weight: 700; }

.sol-crd-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

.sol-crd-includes h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.6em;
}

.sol-crd-includes ul { display: flex; flex-direction: column; gap: 0.4em; }

.sol-crd-includes li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 1.2em;
  position: relative;
  line-height: 1.4;
}

.sol-crd-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
}

.sol-crd-for {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 0.6em 0;
  border-top: 1px solid var(--border);
}

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

.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.ind-crd {
  padding: var(--space-lg);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.ind-crd:hover {
  transform: translateY(-3px);
  border-color: color-mix(in oklch, var(--gold), transparent 65%);
}

.ind-ico {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  display: block;
  transition: transform 0.25s;
}
.ind-crd:hover .ind-ico { transform: scale(1.1); }

.ind-crd h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4em; }
.ind-crd p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.55; }

.sec-process-sol { background: var(--surface); }

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

.proc-sol-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.proc-img { width: 100%; height: 100%; object-fit: cover; }

.proc-sol-steps { display: flex; flex-direction: column; gap: var(--space-md); }

.proc-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.proc-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 0.3em;
  box-shadow: 0 0 12px color-mix(in oklch, var(--primary), transparent 50%);
}

.proc-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.3em; }
.proc-item p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.55; }

/* ==============================
   CONTACT PAGE
   ============================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-xl);
  align-items: start;
}

.cont-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  margin-bottom: var(--space-lg);
}

.cont-ico {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--primary-ultra-dim);
  border: 1px solid color-mix(in oklch, var(--primary), transparent 75%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-glow);
  flex-shrink: 0;
  font-size: 1rem;
}

.cont-item h4 { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 0.3em; }
.cont-item p { color: var(--text); font-size: 0.92rem; }
.cont-link { color: var(--primary-glow); font-size: 0.95rem; transition: color 0.2s; }
.cont-link:hover { color: var(--gold); }

/* ==============================
   FORM
   ============================== */
.frm-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.frm-grp-msg { grid-column: span 2; }

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

.frm-lbl { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.05em; }

.frm-inp {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  padding: 0.75em 1em;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
  width: 100%;
}

.frm-inp:focus {
  border-color: var(--primary);
  background: var(--surface-3);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--primary), transparent 80%);
}

.frm-inp::placeholder { color: color-mix(in oklch, var(--text-muted), transparent 40%); }
.frm-txt { resize: vertical; min-height: 70px; }

.frm-bottom {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.frm-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: pointer;
  flex: 1;
  min-width: 200px;
  line-height: 1.5;
}

.frm-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.1em;
  accent-color: var(--primary);
  cursor: pointer;
}

.frm-check a { color: var(--primary-glow); text-decoration: underline; }
.frm-check a:hover { color: var(--gold); }

/* ==============================
   TIPS SECTION
   ============================== */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.tip-crd {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tip-crd:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.tip-num {
  font-size: 2rem;
  font-weight: 700;
  color: color-mix(in oklch, var(--gold), transparent 60%);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.tip-crd h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5em; }
.tip-crd p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }

/* ==============================
   MAP
   ============================== */
.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.map-wrap iframe { display: block; }

/* ==============================
   THANKS PAGE
   ============================== */
.thanks-sec { padding: calc(var(--space-2xl) + 4rem) 0 var(--space-2xl); }

.thanks-wrap {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.thanks-icon {
  font-size: 4rem;
  color: var(--primary-glow);
  margin-bottom: var(--space-md);
  filter: drop-shadow(0 0 20px color-mix(in oklch, var(--primary), transparent 50%));
}

.thanks-h {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: var(--space-sm);
}

.thanks-p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: var(--space-xl);
}

.thanks-next {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
  text-align: left;
}

.thanks-next-h {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.thanks-steps { display: flex; flex-direction: column; gap: var(--space-md); }

.thanks-step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.thanks-step-ico {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--primary-ultra-dim);
  border: 1px solid color-mix(in oklch, var(--primary), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-glow);
  flex-shrink: 0;
  font-size: 1rem;
}

.thanks-step h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.3em; }
.thanks-step p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }
.thanks-home-btn { margin-top: 0; }

/* ==============================
   LEGAL PAGES
   ============================== */
.legal-hero {
  padding: calc(var(--space-2xl) + 4rem) 0 var(--space-xl);
  background: linear-gradient(180deg, color-mix(in oklch, var(--surface), transparent 30%) 0%, transparent 100%);
}

.legal-h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-top: var(--space-sm); }

.legal-meta {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 0.5em;
}

.legal-sec { padding-top: var(--space-md); }

.legal-body { max-width: 820px; }
.legal-intro { color: var(--text-muted); font-size: 0.95rem; margin-bottom: var(--space-xl); line-height: 1.7; }

.legal-item {
  margin-bottom: var(--space-lg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.legal-summary {
  padding: var(--space-md) var(--space-lg);
  background: var(--surface-2);
  font-size: 0.95rem;
}

.legal-summary strong { color: var(--text); }

.legal-detail {
  padding: var(--space-md) var(--space-lg) var(--space-lg);
  background: var(--surface);
}

.legal-detail p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: var(--space-sm); }
.legal-detail p:last-child { margin-bottom: 0; }
.legal-detail strong { color: var(--text); }
.legal-detail a { color: var(--primary-glow); text-decoration: underline; }


.legal-body-alt { max-width: 820px; }

.legal-intro-p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: var(--space-xl);
  padding: var(--space-md) var(--space-lg);
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--primary);
}

.terms-block {
  margin-bottom: var(--space-xl);
}

.terms-summary-box {
  background: var(--gold-ultra-dim);
  border: 1px solid color-mix(in oklch, var(--gold), transparent 70%);
  border-radius: var(--radius-md);
  padding: 0.8em var(--space-md);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.terms-summary-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  white-space: nowrap;
  padding-top: 0.15em;
}

.terms-summary-box p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0;
}

.terms-h { font-size: 1.1rem; font-weight: 700; margin-bottom: var(--space-sm); }

.terms-block p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: var(--space-sm); }


.legal-body-cookies { max-width: 860px; }

.cookie-intro-box {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.cookie-intro-ico {
  font-size: 2rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.2em;
}

.cookie-intro-box p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; margin: 0; }

.cookie-section { margin-bottom: var(--space-xl); }

.cookie-h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: var(--space-md); color: var(--text); }

.cookie-section p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: var(--space-sm); }
.cookie-section a { color: var(--primary-glow); text-decoration: underline; }

.cookie-cat-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
}

.cookie-necessary { border-left: 3px solid var(--gold); }

.cookie-cat-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.cookie-cat-badge {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25em 0.7em;
  border-radius: 100px;
  background: var(--primary-ultra-dim);
  color: var(--primary-glow);
  border: 1px solid color-mix(in oklch, var(--primary), transparent 70%);
}

.cookie-badge-req {
  background: var(--gold-ultra-dim);
  color: var(--gold);
  border-color: color-mix(in oklch, var(--gold), transparent 65%);
}

.cookie-cat-card h3 { font-size: 1rem; font-weight: 700; }

.cookie-table-wrap {
  overflow-x: auto;
  margin: var(--space-sm) 0;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.cookie-table th {
  text-align: left;
  padding: 0.7em 1em;
  background: var(--surface-3);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border);
}

.cookie-table td {
  padding: 0.7em 1em;
  color: var(--text-muted);
  border-bottom: 1px solid color-mix(in oklch, var(--border), transparent 50%);
}

.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table td:first-child { color: var(--text); font-weight: 500; font-family: monospace; font-size: 0.82rem; }

.cookie-basis {
  font-size: 0.82rem !important;
  color: color-mix(in oklch, var(--text-muted), transparent 20%) !important;
  font-style: italic;
}

.cookie-manage-btn-wrap { margin: var(--space-sm) 0; }

/* ==============================
   FOOTER
   ============================== */
.ftr {
  background: var(--surface);
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.ftr-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: var(--space-xl);
  padding: var(--space-2xl) var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}

.ftr-logo {
  display: flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
  font-weight: 700;
}

.ftr-logo-img { width: 32px; height: 32px; }

.ftr-story {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: var(--space-md);
  max-width: 320px;
}

.ftr-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.ftr-col { display: flex; flex-direction: column; gap: 0.6rem; }

.ftr-col-h {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.4em;
}

.ftr-lnk {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.ftr-lnk:hover { color: var(--gold); }
.ftr-lnk i { font-size: 0.8rem; width: 14px; }

.ftr-cta { align-self: flex-start; }

.ftr-bottom {
  border-top: 1px solid var(--border);
  padding: var(--space-md);
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.ftr-bottom p { color: var(--text-muted); font-size: 0.82rem; }

/* ==============================
   COOKIE CONSENT
   ============================== */
.ck-banner {
  position: fixed;
  top: -100px;
  left: 0;
  right: 0;
  z-index: 1200;
  background: color-mix(in oklch, var(--surface), #060810 30%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
  transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
}

.ck-banner.visible { top: 0; }

.ck-inner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 0.9rem var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.ck-txt {
  font-size: 0.85rem;
  color: var(--text-muted);
  flex: 1;
  min-width: 200px;
}

.ck-txt a { color: var(--primary-glow); text-decoration: underline; }

.ck-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.ck-btn {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5em 1.1em;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  white-space: nowrap;
}

.ck-accept {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px color-mix(in oklch, var(--primary), transparent 55%);
}
.ck-accept:hover { background: var(--primary-glow); transform: translateY(-1px); }

.ck-custom {
  background: var(--surface-3);
  color: var(--text);
  border: 1px solid var(--border);
}
.ck-custom:hover { background: var(--surface-hover); }

.ck-decline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.ck-decline:hover { color: var(--text); border-color: var(--text-muted); }

.ck-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 1300;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  backdrop-filter: blur(8px);
}

.ck-modal-overlay.open { display: flex; }

.ck-modal-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.ck-modal-box h3 { font-size: 1.2rem; margin-bottom: var(--space-md); }

.ck-category {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border);
}

.ck-category:last-of-type { border-bottom: none; margin-bottom: var(--space-sm); }

.ck-toggle-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: var(--space-sm);
}

.ck-toggle-label span:first-child {
  font-size: 0.9rem;
  font-weight: 600;
}

.ck-toggle-label small {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
}

.ck-toggle-label input[type="checkbox"] {
  display: none;
}

.ck-slider {
  position: relative;
  width: 42px;
  height: 24px;
  background: var(--surface-3);
  border-radius: 100px;
  flex-shrink: 0;
  transition: background 0.25s;
  border: 1px solid var(--border);
}

.ck-slider::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: var(--text-muted);
  border-radius: 50%;
  transition: transform 0.25s, background 0.25s;
}

.ck-toggle-label input:checked + .ck-slider { background: var(--primary); border-color: var(--primary); }
.ck-toggle-label input:checked + .ck-slider::after { transform: translateX(18px); background: #fff; }
.ck-toggle-label input:disabled + .ck-slider { opacity: 0.5; cursor: not-allowed; }
.ck-toggle-label input:disabled + .ck-slider::after { background: var(--gold); }

.ck-modal-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: var(--space-md);
}

.ck-modal-actions .ck-btn { flex: 1; justify-content: center; }

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-lg { grid-column: span 2; }
  .bento-wide { grid-column: span 2; }
  .tips-grid { grid-template-columns: repeat(2, 1fr); }
  .sol-cards-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-areas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hdr-nav { display: none; }
  .hdr-cta { display: none; }
  .hdr-burger { display: flex; }

  .sec-hero { grid-template-columns: 1fr; }
  .hero-content { padding: 8rem var(--space-md) var(--space-2xl); max-width: 100%; }
  .hero-card {
    position: relative;
    bottom: auto; right: auto;
    margin: 0 var(--space-md) var(--space-xl);
    transform: none;
  }

  .intro-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .sol-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .tools-wrap { grid-template-columns: 1fr; }
  .proc-sol-wrap { grid-template-columns: 1fr; }
  .exp-intro-grid { grid-template-columns: 1fr; }
  .ftr-top { grid-template-columns: 1fr; gap: var(--space-lg); }
  .ftr-links { grid-template-columns: repeat(3, 1fr); }

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

  .cta-box { flex-direction: column; text-align: center; padding: var(--space-xl) var(--space-lg); }
  .cta-p { margin: 0 auto; }
}

@media (max-width: 640px) {
  :root {
    --space-2xl: 4rem;
    --space-xl: 2.5rem;
  }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-lg { grid-column: span 1; }
  .bento-wide { grid-column: span 1; }
  .process-steps { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: 1fr; }
  .exp-areas-grid { grid-template-columns: 1fr; }
  .ftr-links { grid-template-columns: 1fr; }

  .frm-row { grid-template-columns: 1fr; }
  .frm-grp-msg { grid-column: span 1; }
  .frm-bottom { flex-direction: column; }

  .hero-btns { flex-direction: column; }
  .hero-btns .btn-pri,
  .hero-btns .btn-out { width: 100%; justify-content: center; }

  .pg-hero { min-height: 45vh; }
  .pg-hero-short { min-height: 38vh; }

  .ck-inner { flex-direction: column; align-items: flex-start; }
  .ck-actions { width: 100%; justify-content: flex-start; }

  .sol-cards-grid { max-width: 100%; }

  .art-modal-box { padding: var(--space-lg); }
  .art-modal-box h2 { font-size: 1.2rem; }

  .thanks-next { padding: var(--space-lg); }

  .cookie-table { font-size: 0.78rem; }
  .cookie-table th, .cookie-table td { padding: 0.5em 0.7em; }

  .legal-summary, .legal-detail { padding: var(--space-sm) var(--space-md); }
}

@media (max-width: 400px) {
  .hero-h1 { font-size: 2rem; }
  .sec-title { font-size: 1.5rem; }
  .hdr-logo-txt { font-size: 0.95rem; }
}