


:root {
  --primary: #1a6b5c;
  --secondary: #f4f7f5;
  --accent: #e8a020;
  --text: #1c2b27;
  --surface: #ffffff;

  --primary-light: color-mix(in oklch, var(--primary), white 88%);
  --primary-mid: color-mix(in oklch, var(--primary), white 60%);
  --primary-dark: color-mix(in oklch, var(--primary), black 15%);
  --accent-light: color-mix(in oklch, var(--accent), white 80%);
  --accent-dark: color-mix(in oklch, var(--accent), black 10%);
  --text-muted: color-mix(in oklch, var(--text), white 40%);
  --text-light: color-mix(in oklch, var(--text), white 65%);
  --surface-2: color-mix(in oklch, var(--secondary), white 50%);
  --border: color-mix(in oklch, var(--primary), white 82%);

  --shadow-sm: 0 1px 3px rgba(26,107,92,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(26,107,92,0.10), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(26,107,92,0.12), 0 4px 8px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 60px rgba(26,107,92,0.14), 0 8px 16px rgba(0,0,0,0.08);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Epilogue', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--surface);
  overflow-x: hidden;
}

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

a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-dark); }

ul { list-style: none; }

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


.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s;
}
.hdr.scrolled {
  box-shadow: 0 2px 20px rgba(26,107,92,0.14), 0 1px 4px rgba(0,0,0,0.06);
}
.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 68px;
}
.hdr-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.hdr-logo span {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  letter-spacing: -.01em;
}
.hdr-nav {
  display: none;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.hdr-nav a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: 8px 13px;
  border-radius: var(--radius-sm);
  transition: background .2s, color .2s;
}
.hdr-nav a:hover { background: var(--primary-light); color: var(--primary); }
.hdr-nav a.active { color: var(--primary); background: var(--primary-light); }
.hdr-cta {
  display: none;
  background: var(--primary);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .25s, transform .2s, box-shadow .2s;
  box-shadow: 0 2px 8px rgba(26,107,92,0.2);
}
.hdr-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.hdr-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: var(--accent);
  width: 0%;
  transition: width .1s linear;
}
.hdr-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: var(--radius-sm);
  transition: background .2s;
}
.hdr-hamburger:hover { background: var(--primary-light); }
.hdr-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .25s;
}


.mob-tab-bar {
  display: flex;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(26,107,92,0.10);
  padding: 6px 0 env(safe-area-inset-bottom, 6px);
}
.mob-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 4px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: .65rem;
  font-weight: 500;
  transition: color .2s, background .2s;
  border-radius: var(--radius-sm);
}
.mob-tab i { font-size: 1.1rem; }
.mob-tab.active { color: var(--primary); }
.mob-tab:hover { color: var(--primary); background: var(--primary-light); }


.sec {
  padding: var(--space-2xl) 0;
}
.sec--light { background: var(--secondary); }
.sec--white { background: var(--surface); }
.sec--teal {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, color-mix(in oklch, var(--primary), var(--accent) 20%) 100%);
}
.sec-hd {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-xl);
}
.sec-hd--light .sec-title,
.sec-hd--light .sec-sub { color: rgba(255,255,255,0.95); }
.sec-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: var(--space-sm);
}
.sec-tag--light {
  background: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.95);
}
.sec-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: var(--space-sm);
}
.sec-title--light { color: #fff; }
.sec-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.sec-sub--light { color: rgba(255,255,255,0.8); }


.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, color-mix(in oklch, var(--primary), black 8%) 0%, color-mix(in oklch, var(--primary), white 5%) 55%, color-mix(in oklch, var(--primary), var(--accent) 15%) 100%);
  display: flex;
  align-items: center;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-deco {
  position: absolute;
  border-radius: 50%;
  opacity: .07;
  pointer-events: none;
}
.hero-deco--1 {
  width: 500px; height: 500px;
  background: var(--accent);
  top: -120px; right: -80px;
}
.hero-deco--2 {
  width: 300px; height: 300px;
  background: #fff;
  bottom: -60px; left: -60px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding: var(--space-xl) var(--space-md);
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: .8rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: var(--space-md);
  backdrop-filter: blur(8px);
}
.hero-h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: var(--space-md);
}
.hero-h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: var(--space-lg);
}
.hero-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}
.hero-icon-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: .9rem;
  font-weight: 500;
}
.hero-icon-wrap {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
  color: var(--accent);
}
.hero-form-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-xl);
  position: relative;
}
.hero-form-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-xl) + 1px);
  background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(232,160,32,0.15));
  z-index: -1;
}
.hero-form-head { margin-bottom: var(--space-md); }
.hero-form-head h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.hero-form-head p {
  font-size: .9rem;
  color: var(--text-muted);
}


.frm { width: 100%; }
.frm-field {
  margin-bottom: var(--space-sm);
}
.frm-field label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.frm-field input,
.frm-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Epilogue', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--surface);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  resize: vertical;
}
.frm-field input:focus,
.frm-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--primary), white 80%);
}
.frm-field input::placeholder,
.frm-field textarea::placeholder { color: var(--text-light); }
.frm-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: var(--space-sm);
}
.frm-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
  cursor: pointer;
}
.frm-check label {
  font-size: .85rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.5;
}
.frm-check label a { color: var(--primary); text-decoration: underline; }
.frm-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-family: 'Epilogue', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .25s, transform .2s, box-shadow .2s;
  box-shadow: 0 2px 8px rgba(26,107,92,0.2);
  width: 100%;
  justify-content: center;
}
.frm-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.frm-btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  box-shadow: none;
  width: auto;
}
.frm-btn--ghost:hover {
  background: var(--secondary);
  color: var(--text);
  transform: none;
  box-shadow: none;
}
.frm-btns {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}
.frm-btns .frm-btn:not(.frm-btn--ghost) { flex: 1; }
.frm-step--hidden { display: none !important; }
.frm-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-md);
}
.frm-prog-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
  transition: background .3s;
}
.frm-prog-dot--done { background: var(--primary); }
.frm-prog-dot--active { background: var(--accent); }
.frm-prog-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
}
.frm-step-indicator {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-lg);
}
.fsi-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.fsi-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-muted);
  font-size: .85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, color .3s;
}
.fsi-lbl {
  font-size: .75rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color .3s;
}
.fsi-step--active .fsi-num { background: var(--primary); color: #fff; }
.fsi-step--active .fsi-lbl { color: var(--primary); }
.fsi-step--done .fsi-num { background: color-mix(in oklch, var(--primary), white 40%); color: #fff; }
.fsi-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 var(--space-sm);
  margin-bottom: 18px;
  border-radius: 2px;
}


.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.crd--topic {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: column;
}
.crd--topic:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-mid);
}
.crd-ico {
  width: 48px; height: 48px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: var(--space-sm);
  transition: background .25s, color .25s;
}
.crd--topic:hover .crd-ico {
  background: var(--primary);
  color: #fff;
}
.crd-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.crd-txt {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: var(--space-sm);
}
.crd-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s, color .2s;
}
.crd-link:hover { gap: 10px; color: var(--primary-dark); }


.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.about-img-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--primary);
  border: 1px solid var(--border);
}
.about-img-badge i { color: var(--accent); }
.about-txt .sec-title { text-align: left; margin-bottom: var(--space-sm); }
.about-txt p {
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
  font-size: .95rem;
}
.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--space-md);
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: .82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
}
.pill i { font-size: .75rem; }


.cred-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.cred-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}
.cred-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.cred-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary-light), color-mix(in oklch, var(--accent), white 70%));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: var(--space-sm);
  transition: background .25s;
}
.cred-card:hover .cred-icon { background: var(--primary); color: #fff; }
.cred-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.cred-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
}


.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-sm);
}
.photo-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .3s, box-shadow .3s;
}
.photo-item:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-xl);
}
.photo-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .4s;
  display: block;
}
.photo-item:hover img { transform: scale(1.04); }
.photo-item--tall { grid-row: span 2; }
.photo-item--tall img { height: 100%; min-height: 300px; }
.photo-item--wide { grid-column: span 2; }
.photo-item--wide img { height: 200px; }
.photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(26,43,39,0.75));
  color: #fff;
  font-size: .82rem;
  font-weight: 500;
  transform: translateY(100%);
  transition: transform .3s;
}
.photo-item:hover .photo-caption { transform: translateY(0); }


.acc-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.acc-item {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.acc-item.open {
  border-color: var(--primary-mid);
  box-shadow: var(--shadow-md);
}
.acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background .2s;
}
.acc-btn:hover { background: var(--secondary); }
.acc-btn-ico {
  width: 38px; height: 38px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: background .25s, color .25s;
}
.acc-item.open .acc-btn-ico { background: var(--primary); color: #fff; }
.acc-btn-txt {
  flex: 1;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
.acc-btn-arr {
  color: var(--text-muted);
  font-size: .85rem;
  transition: transform .3s;
  flex-shrink: 0;
}
.acc-item.open .acc-btn-arr { transform: rotate(180deg); }
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.acc-body p {
  padding: 0 var(--space-lg) var(--space-md);
  color: var(--text-muted);
  font-size: .93rem;
  line-height: 1.7;
}
.acc-body p + p { padding-top: 0; }


.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: var(--border);
}
.proc-step {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-md) 0;
  position: relative;
}
.proc-num {
  width: 56px; height: 56px;
  min-width: 56px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 800;
  color: var(--primary);
  transition: background .25s, border-color .25s, color .25s;
  position: relative;
  z-index: 1;
}
.proc-step:hover .proc-num {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.proc-content { padding-top: 12px; }
.proc-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.proc-content p {
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.65;
}


.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.val-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: background .25s, transform .25s;
  backdrop-filter: blur(4px);
}
.val-card:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-3px);
}
.val-ico {
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}
.val-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.val-card p {
  font-size: .9rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
}


.cta-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  background: var(--secondary);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  overflow: hidden;
  position: relative;
}
.cta-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-img-wrap img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.cta-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: var(--space-sm);
}
.cta-content p {
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  font-size: .97rem;
  line-height: 1.7;
}
.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-family: 'Epilogue', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .25s, transform .2s, box-shadow .2s, border-color .25s, color .25s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(26,107,92,0.2);
}
.btn--primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--outline:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}


.ftr {
  background: color-mix(in oklch, var(--text), white 5%);
  color: rgba(255,255,255,0.85);
  margin-top: auto;
}
.ftr-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md) var(--space-xl);
}
.ftr-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: var(--space-md);
}
.ftr-logo span {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}
.ftr-story {
  font-size: .9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  max-width: 380px;
}
.ftr-contact-info {
  margin-bottom: var(--space-md);
}
.ftr-contact-info p {
  font-size: .85rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.ftr-contact-info p i { color: var(--accent); width: 14px; }
.ftr-contact-info a {
  color: rgba(255,255,255,0.75);
  transition: color .2s;
}
.ftr-contact-info a:hover { color: #fff; }
.ftr-cta { display: inline-flex; margin-top: var(--space-sm); }
.ftr-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}
.ftr-col h4 {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-sm);
}
.ftr-col ul { display: flex; flex-direction: column; gap: 8px; }
.ftr-col a {
  font-size: .88rem;
  color: rgba(255,255,255,0.65);
  transition: color .2s, padding-left .2s;
  display: inline-block;
}
.ftr-col a:hover { color: #fff; padding-left: 4px; }
.ftr-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-md) var(--space-md);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-sm);
}
.ftr-bottom p {
  font-size: .82rem;
  color: rgba(255,255,255,0.45);
}
.ftr-bottom a {
  color: rgba(255,255,255,0.55);
  transition: color .2s;
}
.ftr-bottom a:hover { color: rgba(255,255,255,0.9); }


.pg-hero {
  background: linear-gradient(135deg, color-mix(in oklch, var(--primary), black 5%) 0%, var(--primary) 100%);
  padding: calc(68px + var(--space-xl)) 0 var(--space-xl);
  position: relative;
  overflow: hidden;
}
.pg-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41z'/%3E%3C/g%3E%3C/svg%3E");
}
.pg-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.pg-hero-h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: var(--space-sm);
}
.pg-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}


.inner-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-2xl);
  align-items: start;
}
.toc-sidebar {
  display: none;
}
.toc-inner {
  position: sticky;
  top: 88px;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.toc-title {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}
.toc-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.toc-link {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: background .2s, color .2s, padding-left .2s;
  border-left: 2px solid transparent;
}
.toc-link:hover {
  background: var(--primary-light);
  color: var(--primary);
  padding-left: 16px;
}
.toc-link.active {
  background: var(--primary-light);
  color: var(--primary);
  border-left-color: var(--primary);
  font-weight: 600;
}
.inner-content { min-width: 0; }
.inner-sec {
  margin-bottom: var(--space-2xl);
  scroll-margin-top: 90px;
}
.inner-sec h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.02em;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--border);
}
.inner-sec h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-top: var(--space-md);
  margin-bottom: 8px;
}
.inner-sec p {
  color: var(--text-muted);
  font-size: .97rem;
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}
.inner-sec ul {
  list-style: disc;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
}
.inner-sec ul li {
  color: var(--text-muted);
  font-size: .97rem;
  line-height: 1.7;
  margin-bottom: 6px;
}
.inner-img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-md);
  aspect-ratio: 16/9;
  object-fit: cover;
}


.rights-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: var(--space-md) 0;
}
.right-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md);
  background: var(--secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: border-color .25s, box-shadow .25s;
}
.right-item:hover {
  border-color: var(--primary-mid);
  box-shadow: var(--shadow-sm);
}
.right-ico {
  width: 44px; height: 44px;
  min-width: 44px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
}
.right-txt strong {
  display: block;
  font-size: .97rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.right-txt p {
  margin: 0;
  font-size: .88rem;
}


.card-type-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin: var(--space-md) 0;
}
.card-type-box {
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border: 2px solid var(--border);
  transition: border-color .25s, box-shadow .25s;
}
.card-type-box:hover {
  border-color: var(--primary-mid);
  box-shadow: var(--shadow-md);
}
.card-type-box--open { border-top: 3px solid var(--primary); }
.card-type-box--closed { border-top: 3px solid var(--accent); }
.ct-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}
.card-type-box--closed .ct-icon { color: var(--accent-dark); }
.card-type-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  margin-top: 0;
}
.card-type-box p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 8px;
}


.balance-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: var(--space-md) 0;
}
.bm-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md);
  background: var(--secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: border-color .25s, transform .25s;
}
.bm-item:hover {
  border-color: var(--primary-mid);
  transform: translateX(4px);
}
.bm-ico {
  width: 42px; height: 42px;
  min-width: 42px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
}
.bm-txt strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.bm-txt p { margin: 0; font-size: .88rem; }


.dormancy-highlight {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--primary);
  max-width: 900px;
  margin: 0 auto;
}
.dh-icon {
  width: 56px; height: 56px;
  min-width: 56px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
}
.dh-content h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: var(--space-sm);
}
.dh-content p {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}
.dh-content p:last-child { margin-bottom: 0; }
.dh-content strong { color: var(--primary); }


.cookie-table,
.cookie-detail-table {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  margin: var(--space-md) 0;
}
.ct-row,
.cdt-row {
  display: grid;
  padding: 12px 16px;
  font-size: .88rem;
  border-bottom: 1px solid var(--border);
  gap: 8px;
}
.ct-row { grid-template-columns: 1fr 2fr 1fr; }
.cdt-row { grid-template-columns: 1.2fr 2.5fr 1fr; }
.ct-row:last-child,
.cdt-row:last-child { border-bottom: none; }
.ct-row--head,
.cdt-row--head {
  background: var(--secondary);
  font-weight: 700;
  color: var(--text);
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.ct-row:not(.ct-row--head):hover,
.cdt-row:not(.cdt-row--head):hover {
  background: var(--secondary);
}
.ct-row span,
.cdt-row span { color: var(--text-muted); }
.ct-row--head span,
.cdt-row--head span { color: var(--text); }
code {
  font-family: 'Courier New', monospace;
  font-size: .85em;
  background: var(--secondary);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--primary);
}


.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.contact-info h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: var(--space-sm);
}
.contact-info > p {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
.contact-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}
.ci-ico {
  width: 44px; height: 44px;
  min-width: 44px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary);
  transition: background .25s, color .25s;
}
.contact-item:hover .ci-ico {
  background: var(--primary);
  color: #fff;
}
.ci-txt strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.ci-txt span,
.ci-txt a {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.ci-txt a:hover { color: var(--primary); }
.contact-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border-left: 3px solid var(--accent);
}
.contact-note i {
  color: var(--accent-dark);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.contact-note p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.contact-form-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}
.contact-form-card h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: var(--space-lg);
}
.map-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-md);
}
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}


.thanks-sec {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--space-md);
  padding-top: calc(68px + var(--space-2xl));
  background: var(--secondary);
}
.thanks-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
  box-shadow: var(--shadow-xl);
  text-align: center;
  max-width: 560px;
  width: 100%;
  border: 1px solid var(--border);
}
.thanks-anim {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-lg);
}
.checkmark {
  width: 80px;
  height: 80px;
}
.checkmark-circle {
  stroke: var(--primary);
  stroke-width: 2;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: stroke-circle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.checkmark-check {
  stroke: var(--primary);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke-check 0.4s cubic-bezier(0.65, 0, 0.45, 1) 0.7s forwards;
}
@keyframes stroke-circle {
  100% { stroke-dashoffset: 0; }
}
@keyframes stroke-check {
  100% { stroke-dashoffset: 0; }
}
.thanks-text h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: var(--space-sm);
}
.thanks-text p {
  color: var(--text-muted);
  font-size: .97rem;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}
.thanks-text .btn {
  margin-top: var(--space-md);
}


.legal-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-2xl);
  align-items: start;
}
.legal-toc-desktop { display: none; }
.legal-toc-mobile {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.ltoc-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: var(--space-sm) var(--space-md);
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Epilogue', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  transition: background .2s;
}
.ltoc-toggle:hover { background: var(--secondary); }
.ltoc-arr { margin-left: auto; transition: transform .3s; font-size: .8rem; color: var(--text-muted); }
.ltoc-toggle[aria-expanded="true"] .ltoc-arr { transform: rotate(180deg); }
.ltoc-body {
  border-top: 1px solid var(--border);
  padding: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ltoc-body a {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  color: var(--text-muted);
  transition: background .2s, color .2s;
}
.ltoc-body a:hover {
  background: var(--primary-light);
  color: var(--primary);
}
.legal-content { min-width: 0; }
.legal-sec {
  margin-bottom: var(--space-2xl);
  scroll-margin-top: 90px;
}
.legal-sec h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.02em;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--border);
}
.legal-sec h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-top: var(--space-md);
  margin-bottom: 8px;
}
.legal-sec p {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}
.legal-sec ul {
  list-style: disc;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
}
.legal-sec ul li {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 6px;
}
.legal-sec a { color: var(--primary); text-decoration: underline; }
.legal-sec a:hover { color: var(--primary-dark); }
.legal-contact-block {
  background: var(--secondary);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--border);
  margin-top: var(--space-sm);
}
.legal-contact-block p {
  margin-bottom: 6px;
  font-size: .93rem;
}
.legal-contact-block a { color: var(--primary); text-decoration: none; }
.legal-contact-block a:hover { text-decoration: underline; }
.ltoc-link {
  display: block;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: background .2s, color .2s, padding-left .2s, border-left-color .2s;
  border-left: 2px solid transparent;
  margin-bottom: 2px;
}
.ltoc-link:hover {
  background: var(--primary-light);
  color: var(--primary);
  padding-left: 16px;
}
.ltoc-link.active {
  background: var(--primary-light);
  color: var(--primary);
  border-left-color: var(--primary);
  font-weight: 600;
}


.cc-card {
  position: fixed;
  top: 88px;
  left: 16px;
  z-index: 9999;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  padding: 18px 20px;
  max-width: 300px;
  width: calc(100vw - 32px);
  transform: translateX(calc(-100% - 20px));
  transition: transform .4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cc-card.cc-visible { transform: translateX(0); }
.cc-card.cc-hidden { transform: translateX(calc(-100% - 20px)); }
.cc-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.cc-head i {
  font-size: 1.2rem;
  color: var(--primary);
}
.cc-head strong {
  font-size: .92rem;
  font-weight: 700;
  color: var(--text);
}
.cc-text {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}
.cc-text a { color: var(--primary); text-decoration: underline; }
.cc-btns {
  display: flex;
  gap: 8px;
}
.cc-btn {
  flex: 1;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-family: 'Epilogue', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background .2s, transform .2s;
}
.cc-btn:hover { transform: translateY(-1px); }
.cc-btn--accept {
  background: var(--primary);
  color: #fff;
}
.cc-btn--accept:hover { background: var(--primary-dark); }
.cc-btn--decline {
  background: var(--secondary);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.cc-btn--decline:hover { background: var(--border); }
.cc-btn--settings {
  background: none;
  color: var(--text-muted);
  font-size: .78rem;
  padding: 6px;
  text-decoration: underline;
  border: none;
  width: 100%;
  cursor: pointer;
  font-family: 'Epilogue', sans-serif;
  transition: color .2s;
  margin-top: 4px;
}
.cc-btn--settings:hover { color: var(--primary); }


.cc-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,43,39,0.5);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  backdrop-filter: blur(4px);
}
.cc-modal-overlay.cc-modal-open {
  opacity: 1;
  pointer-events: all;
}
.cc-modal {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px) scale(0.97);
  transition: transform .3s;
}
.cc-modal-overlay.cc-modal-open .cc-modal {
  transform: translateY(0) scale(1);
  height: 90%;
  overflow-y: auto;
}
.cc-modal h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: var(--space-sm);
}
.cc-modal p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}
.cc-category {
  background: var(--secondary);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-sm);
  border: 1px solid var(--border);
}
.cc-cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.cc-cat-name {
  font-size: .92rem;
  font-weight: 700;
  color: var(--text);
}
.cc-cat-badge {
  font-size: .72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--primary-light);
  color: var(--primary);
}
.cc-cat-badge--required {
  background: color-mix(in oklch, var(--accent), white 70%);
  color: var(--accent-dark);
}
.cc-toggle {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}
.cc-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.cc-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: background .25s;
}
.cc-toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  left: 3px; top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform .25s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.cc-toggle input:checked + .cc-toggle-slider { background: var(--primary); }
.cc-toggle input:checked + .cc-toggle-slider::before { transform: translateX(18px); }
.cc-toggle input:disabled + .cc-toggle-slider { opacity: .6; cursor: not-allowed; }
.cc-cat-desc {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.cc-modal-btns {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}
.cc-modal-btns .cc-btn { flex: 1; min-width: 100px; }


@media (min-width: 480px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .cred-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .card-type-grid { grid-template-columns: repeat(2, 1fr); }
}

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

  body { padding-bottom: 0; }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    padding: var(--space-2xl) var(--space-md);
  }
  .hero-icons { grid-template-columns: repeat(2, 1fr); }

  .about-grid { grid-template-columns: 1fr 1fr; }
  .about-txt .sec-tag { margin-top: 0; }

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

  .inner-layout {
    grid-template-columns: 240px 1fr;
  }
  .toc-sidebar { display: block; }

  .legal-layout {
    grid-template-columns: 220px 1fr;
  }
  .legal-toc-desktop { display: block; }
  .legal-toc-mobile { display: none; }
  .legal-toc-desktop h4 {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
    padding: 0 12px;
  }
  .legal-toc-desktop nav {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 88px;
    background: var(--surface);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
  }

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

  .ftr-inner { grid-template-columns: 1.4fr 1fr; }
  .ftr-links { grid-template-columns: repeat(3, 1fr); }

  .cta-block { grid-template-columns: 1fr 1fr; }

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

  .process-steps::before { display: block; }
}

@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .cred-grid { grid-template-columns: repeat(4, 1fr); }

  .hero-grid { gap: var(--space-2xl); }

  .photo-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: 220px 220px;
  }
  .photo-item img { height: 100%; }
  .photo-item--tall {
    grid-row: span 2;
    grid-column: 1;
  }
  .photo-item--wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  .photo-item--wide img { height: 100%; }

  .values-grid { grid-template-columns: repeat(5, 1fr); }
  .val-card { padding: var(--space-md); }
}

@media (max-width: 767px) {
  body { padding-bottom: 70px; }
  .sec { padding: var(--space-xl) 0; }
  .hero { min-height: auto; padding-bottom: var(--space-xl); }
  .hero-grid { padding: var(--space-lg) var(--space-md); }
  .hero-form-card { padding: var(--space-md); }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .photo-item--tall { grid-row: span 1; }
  .photo-item--wide { grid-column: span 2; }
  .dormancy-highlight { flex-direction: column; }
  .process-steps::before { display: none; }
  .proc-step { flex-direction: column; gap: var(--space-sm); }
  .ct-row { grid-template-columns: 1fr 1.5fr 0.8fr; font-size: .78rem; }
  .cdt-row { grid-template-columns: 1fr 1.5fr 0.8fr; font-size: .78rem; }
}

@media (max-width: 480px) {
  .hero-icons { grid-template-columns: 1fr 1fr; }
  .cta-btns { flex-direction: column; }
  .cta-btns .btn { width: 100%; justify-content: center; }
  .frm-btns { flex-direction: column; }
  .frm-btns .frm-btn--ghost { width: 100%; justify-content: center; }
  .cookie-table, .cookie-detail-table { overflow-x: auto; }
  .ct-row, .cdt-row { min-width: 360px; }
}


.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}