/* ============================================
   QULARVIX HUB - MAIN STYLESHEET
   Type-Driven Design | Bold Editorial
   ============================================ */


:root {
  --c-bg: #f5f3ef;
  --c-bg-alt: #eceae4;
  --c-dark: #0f1117;
  --c-dark-2: #1c1f2a;
  --c-dark-3: #2a2e3d;
  --c-text: #1c1f2a;
  --c-text-muted: #5a5f72;
  --c-text-light: #8a8f9e;
  --c-accent: #d4500a;
  --c-accent-2: #e8873a;
  --c-accent-light: #fdf0e8;
  --c-white: #fdfcfa;
  --c-border: #ddd9d2;

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

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;
  --r-xl: 28px;
  --r-full: 9999px;

  --sh-sm: 0 1px 3px rgba(15,17,23,0.08), 0 1px 2px rgba(15,17,23,0.05);
  --sh-md: 0 4px 12px rgba(15,17,23,0.10), 0 2px 6px rgba(15,17,23,0.07);
  --sh-lg: 0 10px 30px rgba(15,17,23,0.12), 0 4px 12px rgba(15,17,23,0.08), 0 1px 3px rgba(15,17,23,0.05);
  --sh-xl: 0 20px 60px rgba(15,17,23,0.15), 0 8px 24px rgba(15,17,23,0.10), 0 2px 6px rgba(15,17,23,0.06);
  --sh-accent: 0 8px 24px rgba(212,80,10,0.25), 0 2px 8px rgba(212,80,10,0.15);

  --hdr-h: 88px;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.45s cubic-bezier(0.4,0,0.2,1);
}


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

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

body {
  font-family: 'Onest', sans-serif;
  background-color: var(--c-bg);
  color: var(--c-text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-accent); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }


.hero-h1 {
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
}
.pg-hero-h1 {
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  display: flex;
  flex-direction: column;
  gap: 0.05em;
}
.sec-title {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.sec-title-md {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.sec-title em, .hero-h1 em, .pg-hero-h1 em {
  font-style: normal;
  color: var(--c-accent);
}
.sec-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
  background: var(--c-accent-light);
  border: 1px solid rgba(212,80,10,0.2);
  padding: 0.35em 0.9em;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-md);
}
.accent { color: var(--c-accent); }


.sec { position: relative; }


.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 2rem;
  background: rgba(245,243,239,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: padding var(--transition), background var(--transition), box-shadow var(--transition);
  border-bottom: 1px solid transparent;
}
.hdr.scrolled {
  padding: 0.85rem 2rem;
  background: rgba(245,243,239,0.96);
  box-shadow: var(--sh-sm);
  border-bottom-color: var(--c-border);
}
.hdr-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.hdr-logo { flex-shrink: 0; }
.hdr-logo-img {
  height: 36px;
  width: auto;
  transition: height var(--transition);
}
.hdr.scrolled .hdr-logo-img { height: 28px; }
.hdr-nav {
  display: flex;
  gap: 0.25rem;
  margin-left: auto;
}
.hdr-nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text-muted);
  padding: 0.5rem 0.85rem;
  border-radius: var(--r-md);
  transition: color var(--transition), background var(--transition);
}
.hdr-nav-link:hover, .hdr-nav-link.active {
  color: var(--c-text);
  background: rgba(15,17,23,0.06);
}
.hdr-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-white);
  background: var(--c-accent);
  padding: 0.6rem 1.35rem;
  border-radius: var(--r-full);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
  box-shadow: var(--sh-accent);
}
.hdr-cta:hover {
  color: var(--c-white);
  background: #b8420a;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(212,80,10,0.35), 0 3px 10px rgba(212,80,10,0.2);
}
.hdr-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r-md);
  transition: background var(--transition);
  min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
}
.hdr-burger:hover { background: rgba(15,17,23,0.06); }
.hdr-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hdr-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hdr-burger.open span:nth-child(2) { opacity: 0; }
.hdr-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.mob-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
}
.mob-menu-overlay {
  position: absolute;
  inset: 0;
  background: var(--c-dark);
  clip-path: circle(0% at calc(100% - 60px) 60px);
  transition: clip-path 0.55s cubic-bezier(0.77,0,0.18,1);
}
.mob-menu.open .mob-menu-overlay {
  clip-path: circle(150% at calc(100% - 60px) 60px);
}
.mob-menu.open { pointer-events: all; }
.mob-menu-nav {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease 0.3s, transform 0.35s ease 0.3s;
}
.mob-menu.open .mob-menu-nav {
  opacity: 1;
  transform: translateY(0);
}
.mob-link {
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  font-weight: 700;
  color: var(--c-white);
  padding: 0.4rem 1rem;
  border-radius: var(--r-md);
  transition: color var(--transition);
  letter-spacing: -0.02em;
}
.mob-link:hover { color: var(--c-accent-2); }
.mob-cta {
  margin-top: 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-dark);
  background: var(--c-white);
  padding: 0.85rem 2.5rem;
  border-radius: var(--r-full);
  transition: background var(--transition), transform var(--transition);
}
.mob-cta:hover { background: var(--c-accent-light); color: var(--c-accent); transform: scale(1.03); }


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--r-full);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-accent);
  color: var(--c-white);
  box-shadow: var(--sh-accent);
}
.btn-primary:hover {
  background: #b8420a;
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212,80,10,0.35), 0 4px 12px rgba(212,80,10,0.2);
}
.btn-ghost {
  background: transparent;
  color: var(--c-text);
  border-color: var(--c-border);
}
.btn-ghost:hover {
  background: var(--c-dark);
  color: var(--c-white);
  border-color: var(--c-dark);
  transform: translateY(-2px);
}
.btn-lg { font-size: 1rem; padding: 1rem 2.25rem; }
.btn-full { width: 100%; justify-content: center; }


.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--hdr-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c-bg) 55%, transparent 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: var(--sp-xl) 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 1.25rem;
}
.hero-h1 { display: flex; flex-direction: column; margin-bottom: 1.5rem; }
.hero-h1-line { display: block; }
.hero-desc {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-cards {
  position: relative;
  height: 420px;
}
.hero-crd {
  position: absolute;
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--c-border);
  width: 280px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.hero-crd:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--sh-xl);
}
.hero-crd--1 { top: 0; right: 0; transform: rotate(2deg); z-index: 1; }
.hero-crd--2 { top: 90px; right: 40px; transform: rotate(-1.5deg); z-index: 2; }
.hero-crd--3 { top: 180px; right: 10px; transform: rotate(1deg); z-index: 3; }
.hero-crd-ico {
  width: 44px; height: 44px;
  background: var(--c-accent-light);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-accent);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.hero-crd h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.hero-crd p { font-size: 0.82rem; color: var(--c-text-muted); line-height: 1.55; }
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--c-text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  animation: bounce 2.5s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}


.band {
  background: var(--c-dark);
  padding: 3rem 2rem;
  position: relative;
  z-index: 2;
  margin-top: -1px;
}
.band-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.band-txt {
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  font-weight: 500;
  color: var(--c-white);
  line-height: 1.55;
  letter-spacing: -0.01em;
}


.snap-sec {
  padding: var(--sp-2xl) 0;
  background: var(--c-bg);
  overflow: hidden;
}
.snap-head {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  margin-bottom: 3rem;
}
.snap-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 2rem 2rem;
  scrollbar-width: none;
  cursor: grab;
}
.snap-track::-webkit-scrollbar { display: none; }
.snap-track:active { cursor: grabbing; }
.snap-crd {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: 2.25rem;
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.snap-crd:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}
.snap-crd-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--c-accent);
  margin-bottom: 1rem;
}
.snap-crd-ico {
  width: 52px; height: 52px;
  background: var(--c-accent-light);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-accent);
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}
.snap-crd h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.015em;
}
.snap-crd p {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.snap-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}
.snap-link:hover { gap: 0.7rem; color: var(--c-accent); }
.snap-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  padding: 0 2rem;
}
.snap-dot {
  width: 8px; height: 8px;
  border-radius: var(--r-full);
  background: var(--c-border);
  transition: background var(--transition), width var(--transition);
  border: none;
}
.snap-dot.active {
  background: var(--c-accent);
  width: 24px;
}


.why {
  background: var(--c-dark-2);
  padding: var(--sp-2xl) 2rem;
  position: relative;
}
.why::before {
  content: '';
  position: absolute;
  top: -60px; left: 0; right: 0;
  height: 60px;
  background: var(--c-dark-2);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.why-inner { max-width: 1320px; margin: 0 auto; }
.why-head { margin-bottom: var(--sp-xl); }
.why-head .sec-title { color: var(--c-white); }
.why-head .sec-tag { background: rgba(212,80,10,0.15); border-color: rgba(212,80,10,0.3); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-crd {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: 2rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.why-crd:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.why-crd .crd-ico {
  width: 52px; height: 52px;
  background: rgba(212,80,10,0.15);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-accent-2);
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}
.why-crd h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.why-crd .crd-txt {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}


.cmp {
  padding: var(--sp-2xl) 2rem;
  background: var(--c-bg-alt);
  position: relative;
}
.cmp::before {
  content: '';
  position: absolute;
  top: -60px; left: 0; right: 0;
  height: 60px;
  background: var(--c-bg-alt);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}
.cmp-inner { max-width: 1320px; margin: 0 auto; }
.cmp-head { margin-bottom: var(--sp-xl); }
.cmp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.cmp-col {
  border-radius: var(--r-xl);
  padding: 2.5rem;
  border: 1px solid var(--c-border);
}
.cmp-col--without {
  background: var(--c-white);
}
.cmp-col--with {
  background: var(--c-dark);
  border-color: transparent;
}
.cmp-col-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.cmp-col--without .cmp-col-head i { color: #c0392b; font-size: 1.3rem; }
.cmp-col--with .cmp-col-head i { color: #2ecc71; font-size: 1.3rem; }
.cmp-col-head h3 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.cmp-col--with .cmp-col-head h3 { color: var(--c-white); }
.cmp-list { display: flex; flex-direction: column; gap: 0.85rem; }
.cmp-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
}
.cmp-col--without .cmp-list li { color: var(--c-text-muted); }
.cmp-col--with .cmp-list li { color: rgba(255,255,255,0.75); }
.cmp-col--without .cmp-list li i { color: #c0392b; margin-top: 3px; flex-shrink: 0; }
.cmp-col--with .cmp-list li i { color: #2ecc71; margin-top: 3px; flex-shrink: 0; }


.img-break {
  padding: var(--sp-2xl) 2rem;
  background: var(--c-bg);
}
.img-break-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.img-break-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  aspect-ratio: 4/3;
}
.img-break-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-break-txt .sec-tag { margin-bottom: 1rem; }
.img-break-txt .sec-title-md { margin-bottom: 1.5rem; }
.img-break-txt p {
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.img-break-txt p:last-of-type { margin-bottom: 2rem; }


.nws {
  background: var(--c-accent);
  padding: var(--sp-xl) 2rem;
  position: relative;
  overflow: hidden;
}
.nws::before {
  content: 'MARPOL';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12rem;
  font-weight: 800;
  color: rgba(255,255,255,0.06);
  letter-spacing: -0.05em;
  pointer-events: none;
  white-space: nowrap;
}
.nws-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.nws-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}
.nws-txt p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.6;
}
.nws-frm .frm-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.nws-frm .frm-input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border-radius: var(--r-full);
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.15);
  color: var(--c-white);
  font-size: 0.9rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}
.nws-frm .frm-input::placeholder { color: rgba(255,255,255,0.55); }
.nws-frm .frm-input:focus {
  border-color: var(--c-white);
  background: rgba(255,255,255,0.2);
}
.nws-frm .btn-primary {
  background: var(--c-dark);
  box-shadow: none;
  white-space: nowrap;
}
.nws-frm .btn-primary:hover { background: var(--c-dark-3); }
.frm-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}
.frm-note a { color: rgba(255,255,255,0.8); text-decoration: underline; }


.proc {
  padding: var(--sp-2xl) 2rem;
  background: var(--c-bg);
}
.proc-inner { max-width: 1320px; margin: 0 auto; }
.proc-head { margin-bottom: var(--sp-xl); }
.proc-steps { display: flex; flex-direction: column; gap: 1.5rem; }
.proc-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2rem;
  background: var(--c-white);
  border-radius: var(--r-xl);
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.proc-step:hover {
  box-shadow: var(--sh-md);
  transform: translateX(6px);
}
.proc-step-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--c-accent);
  letter-spacing: -0.04em;
  line-height: 1;
}
.proc-step-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.proc-step-body p {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.65;
}


.gal {
  padding: var(--sp-2xl) 2rem;
  background: var(--c-bg-alt);
}
.gal-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
}
.gal-item {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--sh-md);
}
.gal-item--lg { grid-row: span 2; }
.gal-col { display: flex; flex-direction: column; gap: 1.5rem; }
.gal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
  transition: transform 0.5s ease;
}
.gal-item:hover .gal-img { transform: scale(1.04); }
.gal-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem 1.5rem 1rem;
  background: linear-gradient(to top, rgba(15,17,23,0.8) 0%, transparent 100%);
  color: var(--c-white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}


.cta-final {
  padding: var(--sp-3xl) 2rem;
  background: var(--c-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,80,10,0.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.cta-final-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.cta-final-inner .sec-tag { background: rgba(212,80,10,0.15); border-color: rgba(212,80,10,0.3); }
.cta-final-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.cta-final-inner p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}


.ftr {
  background: var(--c-dark-2);
  padding-top: var(--sp-2xl);
}
.ftr-inner { max-width: 1320px; margin: 0 auto; padding: 0 2rem; }
.ftr-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  padding-bottom: var(--sp-xl);
}
.ftr-logo { height: 32px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.ftr-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.55; }
.ftr-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.ftr-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}
.ftr-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  padding: 0.2rem 0;
  transition: color var(--transition);
}
.ftr-col a:hover { color: var(--c-white); }
.ftr-col p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.ftr-col p i { margin-right: 0.4rem; color: var(--c-accent); font-size: 0.75rem; }
.ftr-col p a { display: inline; color: rgba(255,255,255,0.6); }
.ftr-col p a:hover { color: var(--c-white); }
.ftr-sep { height: 1px; background: rgba(255,255,255,0.08); }
.ftr-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 1rem;
}
.ftr-legal-links { display: flex; gap: 1.5rem; }
.ftr-legal-links a {
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}
.ftr-legal-links a:hover { color: rgba(255,255,255,0.7); }


.pg-hero {
  padding: calc(var(--hdr-h) + 4rem) 2rem 5rem;
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
}
.pg-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,80,10,0.06) 0%, transparent 70%);
}
.pg-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.pg-hero-sub {
  font-size: 1.1rem;
  color: var(--c-text-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-top: 1.5rem;
}


.about-story {
  padding: var(--sp-2xl) 2rem;
  background: var(--c-bg);
}
.about-story-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-story-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  aspect-ratio: 4/3;
}
.about-story-img img { width: 100%; height: 100%; object-fit: cover; }
.about-story-txt h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.about-story-txt p {
  color: var(--c-text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-vals {
  padding: var(--sp-2xl) 2rem;
  background: var(--c-bg-alt);
}
.about-vals-inner { max-width: 1320px; margin: 0 auto; }
.about-vals-head { margin-bottom: var(--sp-xl); }
.about-vals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.about-val-crd {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: 2rem;
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.about-val-crd:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
}
.about-val-crd i {
  font-size: 1.5rem;
  color: var(--c-accent);
  margin-bottom: 1rem;
  display: block;
}
.about-val-crd h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.about-val-crd p { font-size: 0.875rem; color: var(--c-text-muted); line-height: 1.65; }
.about-team {
  padding: var(--sp-2xl) 2rem;
  background: var(--c-bg);
}
.about-team-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-team-txt .sec-title-md { margin-bottom: 1.5rem; }
.about-team-txt p {
  color: var(--c-text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-team-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  aspect-ratio: 3/4;
}
.about-team-img img { width: 100%; height: 100%; object-fit: cover; }


.prog-info {
  padding: var(--sp-2xl) 2rem;
  background: var(--c-bg);
}
.prog-info-inner { max-width: 1320px; margin: 0 auto; }
.prog-info-head { margin-bottom: var(--sp-xl); }
.prog-modules { display: flex; flex-direction: column; gap: 1.25rem; }
.prog-mod {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 2rem;
  align-items: start;
  padding: 1.75rem 2rem;
  background: var(--c-white);
  border-radius: var(--r-xl);
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.prog-mod:hover {
  box-shadow: var(--sh-md);
  transform: translateX(6px);
}
.prog-mod-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--c-accent);
  letter-spacing: -0.04em;
  line-height: 1;
}
.prog-mod-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.prog-mod-body p { font-size: 0.875rem; color: var(--c-text-muted); line-height: 1.65; }
.prog-form-sec {
  padding: var(--sp-2xl) 2rem;
  background: var(--c-dark-2);
}
.prog-form-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.prog-form-txt .sec-tag { background: rgba(212,80,10,0.15); border-color: rgba(212,80,10,0.3); }
.prog-form-txt .sec-title-md { color: var(--c-white); margin-bottom: 1.5rem; }
.prog-form-txt .sec-title-md em { color: var(--c-accent-2); }
.prog-form-txt p { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.65; margin-bottom: 1.5rem; }
.prog-form-items { display: flex; flex-direction: column; gap: 0.75rem; }
.prog-form-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.prog-form-item i { color: var(--c-accent-2); flex-shrink: 0; }
.prog-form-wrap {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--sh-xl);
}


.frm-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.frm-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: 0.01em;
}
.frm-group input,
.frm-group textarea,
.frm-group select {
  padding: 0.85rem 1.1rem;
  border: 2px solid var(--c-border);
  border-radius: var(--r-md);
  font-size: 0.9rem;
  color: var(--c-text);
  background: var(--c-bg);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
  width: 100%;
}
.frm-group input:focus,
.frm-group textarea:focus,
.frm-group select:focus {
  border-color: var(--c-accent);
  background: var(--c-white);
  box-shadow: 0 0 0 4px rgba(212,80,10,0.1);
}
.frm-group textarea { resize: vertical; min-height: 120px; }
.frm-hint {
  font-size: 0.78rem;
  color: var(--c-text-light);
  line-height: 1.4;
}
.frm-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}
.frm-check input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--c-accent);
  cursor: pointer;
}
.frm-check label {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--c-text-muted);
  cursor: pointer;
  line-height: 1.5;
}
.frm-check label a { color: var(--c-accent); text-decoration: underline; }


.frm-group:has(input:focus) label,
.frm-group:has(textarea:focus) label,
.frm-group:has(select:focus) label {
  color: var(--c-accent);
}
.frm-group:has(input:invalid:not(:placeholder-shown)) input,
.frm-group:has(textarea:invalid:not(:placeholder-shown)) textarea {
  border-color: #c0392b;
}


.contact-pg {
  padding: calc(var(--hdr-h) + 3rem) 2rem var(--sp-2xl);
  background: var(--c-bg);
}
.contact-pg-inner { max-width: 1320px; margin: 0 auto; }
.contact-pg-head { margin-bottom: var(--sp-xl); }
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
.contact-form-wrap {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--c-border);
}
.contact-info-card {
  background: var(--c-dark);
  border-radius: var(--r-xl);
  padding: 2rem;
  margin-bottom: 2rem;
}
.contact-info-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item i {
  color: var(--c-accent-2);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-info-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.contact-info-item p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.contact-info-item p a { color: rgba(255,255,255,0.75); }
.contact-info-item p a:hover { color: var(--c-white); }
.contact-news h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.news-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--c-border);
}
.news-item:last-child { border-bottom: none; }
.news-date {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.35rem;
}
.news-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.news-item p { font-size: 0.82rem; color: var(--c-text-muted); line-height: 1.55; }
.contact-map {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1px solid var(--c-border);
}


.guide-sec {
  padding: var(--sp-2xl) 2rem;
  background: var(--c-bg);
}
.guide-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  align-items: start;
}
.guide-toc {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-sm);
  position: sticky;
  top: calc(var(--hdr-h) + 2rem);
  margin-bottom: 1.5rem;
}
.guide-toc h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: 1rem;
}
.guide-toc a {
  display: block;
  font-size: 0.875rem;
  color: var(--c-text-muted);
  padding: 0.4rem 0;
  border-left: 2px solid transparent;
  padding-left: 0.75rem;
  transition: color var(--transition), border-color var(--transition);
}
.guide-toc a:hover {
  color: var(--c-accent);
  border-left-color: var(--c-accent);
}
.guide-cta-box {
  background: var(--c-accent-light);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  border: 1px solid rgba(212,80,10,0.15);
}
.guide-cta-box p {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.guide-art {
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--c-border);
}
.guide-art:last-child { border-bottom: none; }
.guide-art h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.guide-art p {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.guide-img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
  margin-bottom: 1.5rem;
  aspect-ratio: 16/7;
  object-fit: cover;
}


.thanks-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--hdr-h) + 3rem) 2rem var(--sp-2xl);
  background: var(--c-bg);
}
.thanks-inner {
  max-width: 680px;
  width: 100%;
  text-align: center;
}
.thanks-icon {
  width: 80px; height: 80px;
  background: var(--c-accent-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: var(--c-accent);
  box-shadow: var(--sh-accent);
}
.thanks-h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.thanks-sub {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  line-height: 1.65;
  margin-bottom: 3rem;
}
.thanks-next {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-md);
  text-align: left;
  margin-bottom: 2.5rem;
}
.thanks-next h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.thanks-steps { display: flex; flex-direction: column; gap: 1.25rem; }
.thanks-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1rem;
  align-items: start;
}
.thanks-step-num {
  width: 36px; height: 36px;
  background: var(--c-accent-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-accent);
  flex-shrink: 0;
}
.thanks-step h3 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.thanks-step p { font-size: 0.85rem; color: var(--c-text-muted); line-height: 1.55; }


.legal-pg {
  padding: calc(var(--hdr-h) + 3rem) 2rem var(--sp-2xl);
  background: var(--c-bg);
}
.legal-inner { max-width: 860px; margin: 0 auto; }
.legal-head { margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 2px solid var(--c-border); }
.legal-head h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}
.legal-updated {
  font-size: 0.85rem;
  color: var(--c-text-muted);
}
.legal-body h2 {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 2.5rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--c-border);
}
.legal-body h2:first-child { border-top: none; }
.legal-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 1.5rem 0 0.75rem;
}
.legal-body p {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.legal-body ul {
  margin: 0.75rem 0 1rem 1.5rem;
  list-style: disc;
}
.legal-body ul li {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 0.4rem;
}
.legal-term {
  color: var(--c-accent);
  font-weight: 600;
}
.legal-def-box {
  background: var(--c-accent-light);
  border-left: 3px solid var(--c-accent);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 1rem 1.25rem;
  margin: 1rem 0 1.5rem;
}
.legal-def-box strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.legal-def-box p {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin: 0;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.875rem;
}
.legal-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--c-border);
  vertical-align: top;
}
.legal-table td:first-child {
  width: 40%;
  color: var(--c-text-muted);
}
.legal-table tr:last-child td { border-bottom: none; }
.terms-clause { margin-bottom: 0.5rem; }
.terms-intro { font-size: 1rem; margin-bottom: 1.5rem; }
.cookie-table-wrap { overflow-x: auto; margin: 1rem 0 1.5rem; }
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.cookie-table th {
  background: var(--c-dark);
  color: var(--c-white);
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.cookie-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text-muted);
  vertical-align: top;
}
.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table code {
  font-family: monospace;
  background: var(--c-bg-alt);
  padding: 0.15em 0.4em;
  border-radius: 3px;
  font-size: 0.85em;
}


.ck-pill {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: var(--c-dark);
  color: var(--c-white);
  border-radius: var(--r-full);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--sh-xl);
  font-size: 0.85rem;
  white-space: nowrap;
  transition: all var(--transition-slow);
  border: 1px solid rgba(255,255,255,0.1);
  max-width: calc(100vw - 2rem);
}
.ck-pill.expanded {
  border-radius: var(--r-xl);
  flex-direction: column;
  align-items: stretch;
  white-space: normal;
  padding: 1.75rem;
  width: 420px;
  max-width: calc(100vw - 2rem);
}
.ck-pill-txt { flex: 1; }
.ck-pill-txt a { color: var(--c-accent-2); text-decoration: underline; }
.ck-pill-btns { display: flex; gap: 0.5rem; flex-shrink: 0; }
.ck-pill.expanded .ck-pill-btns { flex-wrap: wrap; }
.ck-btn {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
  min-height: 36px;
}
.ck-btn-accept {
  background: var(--c-accent);
  color: var(--c-white);
}
.ck-btn-accept:hover { background: #b8420a; }
.ck-btn-reject {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}
.ck-btn-reject:hover { background: rgba(255,255,255,0.15); color: var(--c-white); }
.ck-btn-custom {
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  text-decoration: underline;
  padding: 0.4rem;
}
.ck-categories {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1rem 0;
}
.ck-pill.expanded .ck-categories { display: flex; }
.ck-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-md);
}
.ck-cat-info strong { display: block; font-size: 0.82rem; color: var(--c-white); }
.ck-cat-info span { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.ck-toggle {
  position: relative;
  width: 40px; height: 22px;
  flex-shrink: 0;
}
.ck-toggle input { opacity: 0; width: 0; height: 0; }
.ck-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  border-radius: var(--r-full);
  cursor: pointer;
  transition: background var(--transition);
}
.ck-toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  left: 3px; bottom: 3px;
  background: var(--c-white);
  border-radius: 50%;
  transition: transform var(--transition);
}
.ck-toggle input:checked + .ck-toggle-slider { background: var(--c-accent); }
.ck-toggle input:checked + .ck-toggle-slider::before { transform: translateX(18px); }
.ck-toggle input:disabled + .ck-toggle-slider { opacity: 0.5; cursor: not-allowed; }
.ck-pill-title { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.25rem; }
.ck-pill-desc { font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.5; }


@media (max-width: 1100px) {
  .why-grid,
  .about-vals-grid { grid-template-columns: repeat(2, 1fr); }
  .ftr-cols { grid-template-columns: repeat(2, 1fr); }
  .hero-cards { height: 380px; }
  .hero-crd { width: 240px; }
}

@media (max-width: 900px) {
  :root { --hdr-h: 72px; }
  .hdr-nav, .hdr-cta { display: none; }
  .hdr-burger { display: flex; margin-left: auto; }
  .hero-content { grid-template-columns: 1fr; gap: 2rem; }
  .hero-cards { height: 300px; }
  .hero-crd { width: 220px; }
  .hero-crd--1 { right: 0; }
  .hero-crd--2 { right: 30px; top: 70px; }
  .hero-crd--3 { right: 5px; top: 145px; }
  .cmp-grid { grid-template-columns: 1fr; }
  .img-break-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .nws-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-story-inner,
  .about-team-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-team-img { aspect-ratio: 4/3; }
  .prog-form-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .guide-inner { grid-template-columns: 1fr; }
  .guide-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .guide-toc { position: static; }
  .ftr-top { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 640px) {
  :root {
    --sp-xl: 3rem;
    --sp-2xl: 4rem;
    --sp-3xl: 5rem;
  }
  .hero-content { padding: var(--sp-lg) 1.25rem; }
  .hero-cards { display: none; }
  .hero-h1 { font-size: clamp(2.5rem, 12vw, 4.5rem); }
  .why-grid,
  .about-vals-grid { grid-template-columns: 1fr; }
  .ftr-cols { grid-template-columns: 1fr 1fr; }
  .proc-step { grid-template-columns: 50px 1fr; gap: 1rem; }
  .guide-sidebar { grid-template-columns: 1fr; }
  .nws-frm .frm-row { flex-direction: column; }
  .nws-frm .frm-input { border-radius: var(--r-md); }
  .nws-frm .btn { border-radius: var(--r-md); }
  .hdr { padding: 1rem 1.25rem; }
  .hdr.scrolled { padding: 0.7rem 1.25rem; }
  .gal-inner { grid-template-columns: 1fr; }
  .gal-item--lg { grid-row: auto; }
  .gal-col { gap: 1rem; }
  .snap-crd { flex: 0 0 280px; }
  .prog-mod { grid-template-columns: 1fr; gap: 0.75rem; }
  .prog-mod-num { font-size: 1.2rem; }
  .ftr-cols { grid-template-columns: 1fr; }
  .contact-form-wrap,
  .prog-form-wrap { padding: 1.5rem; }
  .legal-inner { padding: 0; }
}

@media (max-width: 400px) {
  .hero-h1 { font-size: 2.2rem; }
  .pg-hero-h1 { font-size: 2rem; }
  .sec-title { font-size: 1.7rem; }
  .snap-crd { flex: 0 0 260px; }
}