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

:root {
  --clr-bg: #0d0e1a;
  --clr-bg2: #111228;
  --clr-surface: rgba(255,255,255,0.04);
  --clr-surface2: rgba(255,255,255,0.08);
  --clr-border: rgba(255,255,255,0.1);
  --clr-text: #e8eaf0;
  --clr-text-muted: #9da3b8;
  --clr-text-heading: #f0f2ff;
  --clr-pri: #7c6ef0;
  --clr-pri-light: #9d92f5;
  --clr-pri-dark: #5b4fd4;
  --clr-sec: #e05fc4;
  --clr-acc: #3dd6c0;
  --clr-acc2: #f5a623;
  --clr-grad-a: #7c6ef0;
  --clr-grad-b: #e05fc4;
  --clr-grad-c: #3dd6c0;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3), 0 1px 3px rgba(0,0,0,0.2);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.4), 0 2px 8px rgba(0,0,0,0.2);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5), 0 4px 16px rgba(0,0,0,0.3);
  --shadow-glow: 0 0 40px rgba(124,110,240,0.25), 0 8px 32px rgba(0,0,0,0.4);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;
}

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

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

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

main { flex: 1; }

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

a { color: var(--clr-pri-light); text-decoration: none; transition: color 0.25s ease; }
a:hover { color: var(--clr-acc); }

address { font-style: normal; }

.cnt {
  width: min(90%, 1200px);
  margin: 0 auto;
}

.sec {
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.sec-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-acc);
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: rgba(61,214,192,0.1);
  border: 1px solid rgba(61,214,192,0.25);
  border-radius: 100px;
}

.sec-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--clr-text-heading);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.lnk-arr {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--clr-pri-light);
  font-weight: 600;
  transition: gap 0.25s ease, color 0.25s ease;

  &:hover {
    gap: 0.85rem;
    color: var(--clr-acc);
  }
}

.btn-pri {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, var(--clr-pri), var(--clr-sec));
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(124,110,240,0.35), 0 2px 6px rgba(0,0,0,0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  text-decoration: none;
  white-space: nowrap;

  &:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124,110,240,0.5), 0 4px 12px rgba(0,0,0,0.3);
    color: #fff;
    opacity: 0.95;
  }

  &:active { transform: translateY(0); }
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--clr-text);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 100px;
  border: 1.5px solid var(--clr-border);
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
  text-decoration: none;
  white-space: nowrap;

  &:hover {
    border-color: var(--clr-pri-light);
    background: rgba(124,110,240,0.08);
    color: var(--clr-pri-light);
  }
}

.btn-lg { padding: 1.1rem 2.75rem; font-size: 1.05rem; }


[class^="blob-"], [class*=" blob-"] {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.blob-c { width: 500px; height: 500px; background: radial-gradient(circle, rgba(124,110,240,0.35) 0%, transparent 70%); top: -150px; right: -100px; filter: blur(90px); }
.blob-d { width: 400px; height: 400px; background: radial-gradient(circle, rgba(224,95,196,0.25) 0%, transparent 70%); bottom: -100px; left: -80px; filter: blur(100px); }
.blob-e { width: 600px; height: 600px; background: radial-gradient(circle, rgba(61,214,192,0.2) 0%, transparent 70%); top: 0; left: 50%; transform: translateX(-50%); filter: blur(120px); }
.blob-f { width: 450px; height: 450px; background: radial-gradient(circle, rgba(124,110,240,0.3) 0%, transparent 70%); bottom: 0; right: -120px; filter: blur(100px); }
.blob-g { width: 550px; height: 550px; background: radial-gradient(circle, rgba(224,95,196,0.2) 0%, transparent 70%); top: -100px; left: -100px; filter: blur(110px); }
.blob-h { width: 400px; height: 400px; background: radial-gradient(circle, rgba(61,214,192,0.25) 0%, transparent 70%); top: 50%; right: 0; transform: translateY(-50%); filter: blur(90px); }
.blob-i { width: 500px; height: 500px; background: radial-gradient(circle, rgba(124,110,240,0.2) 0%, transparent 70%); bottom: -150px; left: 30%; filter: blur(110px); }
.blob-j { width: 600px; height: 600px; background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%); top: 0; right: -150px; filter: blur(130px); }
.blob-k { width: 700px; height: 700px; background: radial-gradient(circle, rgba(124,110,240,0.3) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); filter: blur(120px); }
.blob-l { width: 500px; height: 500px; background: radial-gradient(circle, rgba(61,214,192,0.12) 0%, transparent 70%); top: 0; right: 0; filter: blur(100px); }


.hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;

  & .hdr-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.25rem 5%;
    background: rgba(13,14,26,0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--clr-border);
  }
}

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

  & img { width: 36px; height: 36px; }
  & span {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--clr-text-heading);
    letter-spacing: -0.01em;
  }
}

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

.hdr-lnk {
  padding: 0.5rem 0.9rem;
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: color 0.25s ease, background 0.25s ease;
  text-decoration: none;

  &:hover, &.active {
    color: var(--clr-text-heading);
    background: var(--clr-surface2);
  }
}

.hdr-cta { margin-left: 0.5rem; font-size: 0.85rem; padding: 0.65rem 1.4rem; }

.hdr-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;

  & span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-text-heading);
    border-radius: 2px;
    transition: all 0.3s ease;
  }
}

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


.mini-nav {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transform: translateY(-10px);

  &.visible {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }
}

.mini-pill {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-pri), var(--clr-sec));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: var(--shadow-glow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;

  &:hover {
    transform: scale(1.08);
    box-shadow: 0 0 50px rgba(124,110,240,0.4), 0 8px 24px rgba(0,0,0,0.4);
  }
}


.mob-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: linear-gradient(145deg, #0d0e1a 0%, #1a1040 50%, #0d1a1a 100%);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;

  &.open {
    opacity: 1;
    pointer-events: all;
  }
}

.mob-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.mob-close {
  width: 44px;
  height: 44px;
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: 50%;
  color: var(--clr-text);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;

  &:hover { background: rgba(124,110,240,0.2); }
}

.mob-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  flex: 1;
  align-content: center;
}

.mob-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  color: var(--clr-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;

  & i { font-size: 1.5rem; color: var(--clr-pri-light); }

  &:hover {
    background: rgba(124,110,240,0.12);
    border-color: var(--clr-pri);
    transform: translateY(-2px);
    color: var(--clr-text-heading);
  }
}

.mob-cta-item {
  background: linear-gradient(135deg, rgba(124,110,240,0.2), rgba(224,95,196,0.2));
  border-color: rgba(124,110,240,0.4);

  & i { color: var(--clr-sec); }
}


.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: stretch;
  padding-top: 80px;
}

.hero-diag {
  display: flex;
  width: 100%;
  min-height: calc(100vh - 80px);
}

.hero-img-side {
  flex: 0 0 60%;
  position: relative;
  overflow: hidden;

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

  &::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, var(--clr-bg) 100%),
                linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 40%);
  }
}

.hero-blur-1 {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,110,240,0.4) 0%, transparent 70%);
  top: -100px; left: -100px;
  filter: blur(80px);
  z-index: 1;
}

.hero-blur-2 {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(61,214,192,0.3) 0%, transparent 70%);
  bottom: -50px; right: 0;
  filter: blur(90px);
  z-index: 1;
}

.hero-content-side {
  flex: 0 0 40%;
  display: flex;
  align-items: center;
  background: var(--clr-bg);
  position: relative;
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

.hero-blob-a {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,110,240,0.25) 0%, transparent 70%);
  top: -150px; right: -150px;
  filter: blur(100px);
  pointer-events: none;
}

.hero-blob-b {
  position: absolute;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(224,95,196,0.2) 0%, transparent 70%);
  bottom: -100px; left: -50px;
  filter: blur(90px);
  pointer-events: none;
}

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

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-acc);
  margin-bottom: 1.25rem;
  padding: 0.35rem 1rem;
  background: rgba(61,214,192,0.1);
  border: 1px solid rgba(61,214,192,0.3);
  border-radius: 100px;
}

.hero-txt h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--clr-text-heading);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;

  & em {
    font-style: normal;
    background: linear-gradient(135deg, var(--clr-pri-light), var(--clr-sec));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
}

.hero-sub {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-meta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;

  & span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    font-weight: 500;

    & i { color: var(--clr-pri-light); }
  }
}


.intro-sec {
  background: var(--clr-bg2);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.intro-txt {
  & p {
    color: var(--clr-text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.75;
  }
}

.intro-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}


.crd {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;

  &::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124,110,240,0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  &:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), 0 0 30px rgba(124,110,240,0.1);
    border-color: rgba(124,110,240,0.3);

    &::before { opacity: 1; }
  }
}

.crd-sm {
  padding: 1.25rem;
}

.crd-accent {
  background: linear-gradient(135deg, rgba(124,110,240,0.08), rgba(224,95,196,0.08));
  border-color: rgba(124,110,240,0.2);
}

.crd-ico {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--clr-pri), var(--clr-sec));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(124,110,240,0.3);
}

.crd-txt {
  & h3, & h4 {
    font-weight: 700;
    color: var(--clr-text-heading);
    margin-bottom: 0.5rem;
    font-size: 1rem;
  }
  & p {
    color: var(--clr-text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
  }
}


.program-sec { background: var(--clr-bg); }

.prog-head {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.prog-days {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.prog-day {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: box-shadow 0.3s ease;

  &:hover { box-shadow: var(--shadow-md); }
}

.prog-day-hd {
  margin-bottom: 1.75rem;

  & h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-text-heading);
    margin-top: 0.75rem;
    line-height: 1.3;
  }
}

.day-badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: linear-gradient(135deg, var(--clr-pri), var(--clr-pri-dark));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
}

.day-badge-2 {
  background: linear-gradient(135deg, var(--clr-sec), #b03a9a);
}

.prog-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;

  & li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    line-height: 1.55;

    & i {
      color: var(--clr-acc);
      margin-top: 0.2rem;
      flex-shrink: 0;
    }
  }
}

.prog-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  z-index: 1;

  & .prog-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
  }
}

.prog-img-over {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(13,14,26,0.95), transparent);

  & span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--clr-text-heading);
  }
}


.cta-mid-sec { padding: var(--space-lg) 0; }

.cta-mid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: linear-gradient(135deg, rgba(124,110,240,0.12), rgba(224,95,196,0.08));
  border: 1px solid rgba(124,110,240,0.25);
  border-radius: var(--radius-xl);
  padding: 3rem 3.5rem;
  position: relative;
  z-index: 1;
  overflow: hidden;

  &::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124,110,240,0.6), rgba(224,95,196,0.4), transparent);
  }
}

.cta-mid-txt {
  & h2 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--clr-text-heading);
    margin-bottom: 0.75rem;
  }
  & p { color: var(--clr-text-muted); max-width: 500px; }
}

.cta-mid-acts {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}


.topics-sec { background: var(--clr-bg2); }

.topics-head {
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.topics-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.ben-item {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  &:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
}

.ben-large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.ben-med {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
}

.ben-sm { padding: 2rem; }

.ben-tinted {
  background: linear-gradient(135deg, rgba(61,214,192,0.07), rgba(124,110,240,0.07));
  border-color: rgba(61,214,192,0.15);
}

.ben-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 250px;
}

.ben-over {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(13,14,26,0.97), rgba(13,14,26,0.7) 60%, transparent);

  & h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-text-heading);
    margin-bottom: 0.5rem;
  }
  & p {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
  }
}

.ben-ico {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--clr-pri), var(--clr-acc));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(124,110,240,0.3);
}

.ben-sm h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-text-heading);
  margin-bottom: 0.6rem;
}

.ben-sm p {
  color: var(--clr-text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}


.calc-sec { background: var(--clr-bg); }

.calc-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.calc-txt {
  & p { color: var(--clr-text-muted); line-height: 1.7; margin-top: 1rem; }
}

.calc-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.frm-grp {
  margin-bottom: 1.5rem;

  & label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
  }
}

.frm-inp {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  color: var(--clr-text-heading);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  outline: none;

  &::placeholder { color: rgba(157,163,184,0.5); }

  &:focus {
    border-color: var(--clr-pri);
    background: rgba(124,110,240,0.05);
    box-shadow: 0 0 0 3px rgba(124,110,240,0.15);
  }
}

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

.frm-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;

  & input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--clr-pri);
    cursor: pointer;
  }

  & label {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
    cursor: pointer;

    & a { color: var(--clr-pri-light); }
  }
}

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

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

.calc-result {
  margin-top: 1.5rem;
  animation: fadeIn 0.4s ease;
}

.calc-res-inner {
  background: linear-gradient(135deg, rgba(124,110,240,0.12), rgba(61,214,192,0.08));
  border: 1px solid rgba(124,110,240,0.3);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}

.calc-res-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 0.5rem;
}

.calc-res-val {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--clr-pri-light), var(--clr-acc));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}

.calc-res-note {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}


.approach-sec { background: var(--clr-bg2); }

.approach-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.approach-img-col {
  position: relative;
}

.approach-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.approach-float-crd {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: linear-gradient(135deg, var(--clr-pri), var(--clr-sec));
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-md);
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  max-width: 260px;

  & i { font-size: 1.3rem; }
}

.approach-txt-col {
  & p {
    color: var(--clr-text-muted);
    line-height: 1.75;
    margin-bottom: 1.25rem;
  }
}

.approach-feats {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.appr-ft {
  display: flex;
  align-items: flex-start;
  gap: 1rem;

  & i {
    color: var(--clr-acc);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
  }

  & strong {
    display: block;
    color: var(--clr-text-heading);
    font-weight: 600;
    margin-bottom: 0.25rem;
  }

  & p {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0;
  }
}


.gallery-sec {
  background: var(--clr-bg);

  & .sec-label, & .sec-title { margin-bottom: 2rem; }
}

.gallery-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 1rem;
  height: 500px;
}

.gal-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;

  & img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  &:hover img { transform: scale(1.04); }
}

.gal-tall { grid-row: 1 / -1; }

.gal-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;

  & .gal-item {
    flex: 1;
  }
}


.faq-sec { background: var(--clr-bg2); }

.faq-head {
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.faq-item {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s ease;

  &:hover { border-color: rgba(124,110,240,0.3); }
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--clr-text-heading);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.25s ease;

  &:hover { color: var(--clr-pri-light); }

  &[aria-expanded="true"] {
    color: var(--clr-pri-light);

    & .faq-ico { transform: rotate(180deg); color: var(--clr-pri-light); }
  }
}

.faq-ico {
  flex-shrink: 0;
  color: var(--clr-text-muted);
  transition: transform 0.35s ease, color 0.25s ease;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25,0.46,0.45,0.94), padding 0.3s ease;

  & p {
    padding: 0 1.5rem 1.5rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
  }
}

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


.final-cta-sec { background: var(--clr-bg); }

.final-cta {
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;

  & h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--clr-text-heading);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
  }

  & p {
    color: var(--clr-text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}


.pg-hero {
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
  background: var(--clr-bg);
}

.pg-hero-txt {
  position: relative;
  z-index: 1;
  max-width: 700px;

  & h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--clr-text-heading);
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    line-height: 1.15;
  }

  & p { color: var(--clr-text-muted); font-size: 1.1rem; line-height: 1.7; }
}

.legal-hero { padding: 8rem 0 4rem; }


.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

.about-txt-col {
  & p { color: var(--clr-text-muted); line-height: 1.75; margin-bottom: 1.25rem; }
}


.vals-head { margin-bottom: 2.5rem; position: relative; z-index: 1; }

.vals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.val-crd { text-align: left; }


.process-sec { background: var(--clr-bg); }

.steps-timeline {
  position: relative;
  z-index: 1;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;

  &::before {
    content: '';
    position: absolute;
    left: 36px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--clr-pri), var(--clr-sec), var(--clr-acc));
    border-radius: 2px;
  }
}

.step-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  position: relative;

  &:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.05); }
}

.step-num {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--clr-pri), var(--clr-sec));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(124,110,240,0.4);
  position: relative;
  z-index: 2;
}

.step-content {
  padding-top: 1rem;

  & h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-text-heading);
    margin-bottom: 0.75rem;
  }

  & p { color: var(--clr-text-muted); line-height: 1.7; }
}


.format-sec { background: var(--clr-bg2); }

.format-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.format-txt {
  & p { color: var(--clr-text-muted); line-height: 1.7; margin-bottom: 2rem; }
}

.format-schedule {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.sch-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  align-items: center;
  border-bottom: 1px solid var(--clr-border);
  transition: background 0.25s ease;

  &:last-child { border-bottom: none; }
  &:hover { background: var(--clr-surface); }
}

.sch-time {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--clr-pri-light);
  font-variant-numeric: tabular-nums;
}

.sch-desc {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

.format-img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }


.location-sec { background: var(--clr-bg); }

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.loc-details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.loc-det-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;

  & i { color: var(--clr-pri-light); font-size: 1.1rem; margin-top: 0.1rem; flex-shrink: 0; }

  & strong { display: block; color: var(--clr-text-heading); font-weight: 600; margin-bottom: 0.2rem; }
  & span { color: var(--clr-text-muted); font-size: 0.9rem; }
}

.loc-info {
  & p { color: var(--clr-text-muted); line-height: 1.7; margin-bottom: 0; }
}

.loc-map-col { }

.loc-map-placeholder {
  width: 100%;
  height: 400px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--clr-text-muted);

  & i { font-size: 3rem; color: var(--clr-pri-light); }
  & span { font-weight: 600; }
}


.onsite-sec { background: var(--clr-bg2); }

.onsite-wrap {
  position: relative;
  z-index: 1;

  & p { color: var(--clr-text-muted); line-height: 1.7; margin: 1rem 0 2.5rem; max-width: 650px; }
}

.onsite-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.onsite-crd .crd-ico { background: linear-gradient(135deg, var(--clr-acc), var(--clr-pri)); }


.contact-sec { background: var(--clr-bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.contact-frm { }

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.ci-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: border-color 0.25s ease;

  &:hover { border-color: rgba(124,110,240,0.3); }
}

.ci-ico {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--clr-pri), var(--clr-sec));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.ci-txt {
  & strong { display: block; color: var(--clr-text-heading); font-weight: 600; margin-bottom: 0.2rem; }
  & a, & span { color: var(--clr-text-muted); font-size: 0.9rem; }
  & a:hover { color: var(--clr-pri-light); }
}

.contact-methods {
  & h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-text-heading);
    margin-bottom: 1.25rem;
  }
}

.cm-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--clr-border);

  &:last-child { border-bottom: none; }

  & .cm-ico {
    width: 36px; height: 36px;
    background: var(--clr-surface2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-pri-light);
    flex-shrink: 0;
    font-size: 0.95rem;
  }

  & strong { display: block; color: var(--clr-text-heading); font-weight: 600; font-size: 0.9rem; margin-bottom: 0.3rem; }
  & p { color: var(--clr-text-muted); font-size: 0.85rem; line-height: 1.55; margin: 0; }
}


.map-sec { background: var(--clr-bg2); }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border);
  margin-top: 2rem;
}


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

.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.thanks-blob-a {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,110,240,0.3) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(120px);
  pointer-events: none;
}

.thanks-blob-b {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(61,214,192,0.2) 0%, transparent 70%);
  bottom: 0; right: 0;
  filter: blur(100px);
  pointer-events: none;
}

.thanks-center {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.thanks-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-pri), var(--clr-acc));
  margin: 0 auto 2.5rem;
  box-shadow: 0 0 40px rgba(124,110,240,0.6);
  animation: dotPop 0.8s cubic-bezier(0.34,1.56,0.64,1) forwards;
}

.thanks-h {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--clr-text-heading);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.5s forwards;
}

.thanks-p {
  color: var(--clr-text-muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.7s forwards;
}

.thanks-lnk {
  opacity: 0;
  animation: fadeUp 0.7s ease 1s forwards;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: 100px;
  color: var(--clr-text-muted);
  font-weight: 600;
  transition: border-color 0.25s ease, color 0.25s ease;

  &:hover { border-color: var(--clr-pri); color: var(--clr-pri-light); }
}

@keyframes dotPop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

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


.legal-sec { background: var(--clr-bg); }

.legal-layout {
  max-width: 820px;
}

.legal-body {
  & h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--clr-text-heading);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--clr-border);
  }

  & p {
    color: var(--clr-text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
  }

  & ul {
    margin: 1rem 0 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;

    & li { color: var(--clr-text-muted); line-height: 1.65; }
  }

  & strong { color: var(--clr-text-heading); }
}

.legal-def-box {
  background: linear-gradient(135deg, rgba(124,110,240,0.08), rgba(61,214,192,0.05));
  border-left: 3px solid var(--clr-pri);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;

  & strong { display: block; color: var(--clr-pri-light); margin-bottom: 0.5rem; font-size: 0.9rem; }
  & p { color: var(--clr-text-muted); font-size: 0.88rem; line-height: 1.65; margin: 0; }
}

.term { color: var(--clr-pri-light); }
.term-t { color: var(--clr-acc); }
.term-c { color: var(--clr-sec); }


.terms-body {
  & h2 {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--clr-text-heading);
    margin: 2.5rem 0 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--clr-border);
  }
}

.terms-clause {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);

  &:last-child { border-bottom: none; }
}

.clause-num {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--clr-pri-light);
  padding-top: 0.2rem;
  font-variant-numeric: tabular-nums;
}

.clause-body {
  & p { color: var(--clr-text-muted); line-height: 1.75; margin: 0; }
}


.ck-intro-box {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 2rem;

  & p { color: var(--clr-text-muted); line-height: 1.7; font-size: 0.95rem; margin: 0; }
}

.ck-ico {
  font-size: 2rem;
  color: var(--clr-acc2);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.ck-def { margin: 1.25rem 0; }

.ck-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.25rem 0;
}

.ck-type-item {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;

  & h4 { color: var(--clr-text-heading); font-weight: 700; margin-bottom: 0.5rem; font-size: 0.95rem; }
  & p { color: var(--clr-text-muted); font-size: 0.88rem; line-height: 1.6; margin: 0; }
}

.ck-cat {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 1.5rem 0;

  & p { color: var(--clr-text-muted); font-size: 0.9rem; line-height: 1.7; margin: 0.75rem 0 0; }

  & h3 {
    color: var(--clr-text-heading);
    font-size: 1rem;
    font-weight: 700;
  }
}

.ck-cat-hd {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.ck-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}

.ck-badge-req { background: rgba(61,214,192,0.15); color: var(--clr-acc); border: 1px solid rgba(61,214,192,0.3); }
.ck-badge-ana { background: rgba(124,110,240,0.15); color: var(--clr-pri-light); border: 1px solid rgba(124,110,240,0.3); }
.ck-badge-pref { background: rgba(245,166,35,0.12); color: var(--clr-acc2); border: 1px solid rgba(245,166,35,0.25); }

.ck-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.85rem;

  & th {
    text-align: left;
    padding: 0.6rem 0.75rem;
    background: rgba(255,255,255,0.04);
    color: var(--clr-text-muted);
    font-weight: 600;
    border-bottom: 1px solid var(--clr-border);
  }

  & td {
    padding: 0.6rem 0.75rem;
    color: var(--clr-text-muted);
    border-bottom: 1px solid rgba(255,255,255,0.03);
  }

  & code {
    background: rgba(124,110,240,0.12);
    border: 1px solid rgba(124,110,240,0.2);
    border-radius: 4px;
    padding: 0.1rem 0.4rem;
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--clr-pri-light);
  }
}


.ck-consent {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: min(460px, calc(100vw - 2rem));
}

.ck-card {
  background: rgba(20,22,40,0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(124,110,240,0.35);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(124,110,240,0.15);
  transition: all 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
}

.ck-msg {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;

  & a { color: var(--clr-pri-light); }
}

.ck-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.ck-btn-accept {
  flex: 1;
  padding: 0.7rem 1rem;
  background: linear-gradient(135deg, var(--clr-pri), var(--clr-sec));
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease;

  &:hover { opacity: 0.9; transform: translateY(-1px); }
}

.ck-btn-settings {
  flex: 1;
  padding: 0.7rem 1rem;
  background: transparent;
  color: var(--clr-text-muted);
  border: 1px solid var(--clr-border);
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease;

  &:hover { border-color: var(--clr-pri-light); color: var(--clr-text); }
}

.ck-settings-panel {
  display: none;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--clr-border);
}

.ck-settings-panel.open { display: block; }

.ck-cat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);

  &:last-of-type { border-bottom: none; }
}

.ck-cat-info {
  & strong { display: block; font-size: 0.85rem; color: var(--clr-text-heading); margin-bottom: 0.2rem; }
  & span { font-size: 0.75rem; color: var(--clr-text-muted); }
}

.ck-toggle {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;

  & input {
    opacity: 0;
    width: 0;
    height: 0;

    &:checked + .ck-slider {
      background: var(--clr-pri);
    }

    &:checked + .ck-slider::before {
      transform: translateX(18px);
    }
  }
}

.ck-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 22px;
  transition: background 0.3s ease;

  &::before {
    content: '';
    position: absolute;
    width: 16px; height: 16px;
    left: 3px; bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s ease;
  }
}

.ck-toggle-disabled .ck-slider {
  cursor: not-allowed;
  background: rgba(61,214,192,0.5);
}

.ck-save-btn {
  width: 100%;
  margin-top: 1.25rem;
  padding: 0.7rem;
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: 100px;
  color: var(--clr-text);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;

  &:hover { background: rgba(124,110,240,0.15); border-color: var(--clr-pri); }
}


.ftr {
  background: var(--clr-bg2);
  border-top: 1px solid var(--clr-border);
  position: relative;
  overflow: hidden;
  margin-top: auto;
}

.ftr-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0 2.5rem;
  position: relative;
  z-index: 1;
}

.ftr-brand {
  & p { color: var(--clr-text-muted); font-size: 0.9rem; line-height: 1.7; margin: 1rem 0 1.5rem; }
  & address {
    color: var(--clr-text-muted);
    font-size: 0.85rem;
    line-height: 2;

    & a { color: var(--clr-text-muted); transition: color 0.25s ease; &:hover { color: var(--clr-pri-light); } }
    & i { margin-right: 0.4rem; color: var(--clr-pri-light); width: 14px; }
  }
}

.ftr-logo { margin-bottom: 0; }

.ftr-col {
  & h4 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clr-text-heading);
    margin-bottom: 1.25rem;
  }
  & ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  & li a {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    transition: color 0.25s ease, padding-left 0.25s ease;

    &:hover { color: var(--clr-pri-light); padding-left: 4px; }
  }
}

.ftr-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  border-top: 1px solid var(--clr-border);
  position: relative;
  z-index: 1;

  & p { color: var(--clr-text-muted); font-size: 0.82rem; }
  & a { color: var(--clr-text-muted); margin: 0 0.25rem; &:hover { color: var(--clr-pri-light); } }
}


@media (max-width: 1024px) {
  .vals-grid { grid-template-columns: repeat(2, 1fr); }
  .ftr-grid { grid-template-columns: 1fr 1fr; }
  .topics-bento { grid-template-columns: 1fr 1fr; }
  .ben-large { grid-column: 1 / 2; grid-row: 1 / 2; }
  .ben-med { grid-column: 2 / 3; grid-row: 1 / 2; }
  .ben-sm { grid-column: auto; grid-row: auto; }
}

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

  .hero-diag { flex-direction: column; }
  .hero-img-side { flex: 0 0 50vh; }
  .hero-content-side { flex: 1; padding: 3rem 2rem; }
  .hero-txt h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); }

  .intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .prog-days { grid-template-columns: 1fr; }
  .approach-split { grid-template-columns: 1fr; gap: 3rem; }
  .approach-float-crd { right: 0; bottom: -1rem; }
  .calc-wrap { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .format-grid { grid-template-columns: 1fr; }
  .loc-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .onsite-cards { grid-template-columns: 1fr 1fr; }
  .gallery-row { grid-template-columns: 1fr 1fr; height: auto; }
  .gal-tall { grid-row: auto; height: 250px; }
  .gal-col .gal-item { height: 200px; }
  .cta-mid { flex-direction: column; text-align: center; }
  .cta-mid-acts { justify-content: center; }
}

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

  .sec { padding: 4rem 0; }
  .pg-hero { padding: 7rem 0 3rem; }
  .intro-cards { grid-template-columns: 1fr; }
  .vals-grid { grid-template-columns: 1fr; }
  .onsite-cards { grid-template-columns: 1fr; }
  .topics-bento { grid-template-columns: 1fr; }
  .ben-large, .ben-med { grid-column: auto; grid-row: auto; }
  .ftr-grid { grid-template-columns: 1fr; gap: 2rem; }
  .ftr-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .gallery-row { grid-template-columns: 1fr; height: auto; }
  .gal-col { display: contents; }
  .gal-tall { height: 280px; }
  .cta-mid { padding: 2rem; border-radius: var(--radius-lg); }
  .step-item { grid-template-columns: 56px 1fr; gap: 1rem; }
  .step-num { width: 52px; height: 52px; font-size: 1rem; }
  .mob-grid { gap: 0.75rem; }
  .hero-actions { flex-direction: column; }
  .ck-type-grid { grid-template-columns: 1fr; }
  .terms-clause { grid-template-columns: 1fr; gap: 0.5rem; }
}