.il-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  font-family: var(--snays-font);
  font-size: var(--snays-fs-14);
  font-weight: 600;
  line-height: 1;
  letter-spacing: .01em;
  border: 0;
  cursor: pointer;
  position: relative;
  transition: transform var(--snays-fast) var(--snays-ease),
              background var(--snays-fast) var(--snays-ease),
              color var(--snays-fast) var(--snays-ease),
              box-shadow var(--snays-fast) var(--snays-ease);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.il-btn .snays-ico{ width: 16px; height: 16px; }
.il-btn-lg{ padding: 16px 28px; font-size: var(--snays-fs-15); }

.il-btn-primary{
  background: var(--snays-accent);
  color: var(--snays-on-accent);
}
.il-btn-primary:hover{
  background: var(--snays-accent-hover);
  transform: translateY(-1px);
}
.il-btn-line{
  background: var(--snays-surface);
  color: var(--snays-text);
  box-shadow: inset 0 0 0 1.5px var(--snays-border-strong);
}
.il-btn-line:hover{
  color: var(--snays-accent);
  box-shadow: inset 0 0 0 1.5px var(--snays-accent);
  transform: translateY(-1px);
}

.il-section-head{
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
  position: relative;
}
.il-section-head::before{
  content: "";
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 4px;
  background: var(--snays-accent);
  clip-path: polygon(0 0, 100% 0, calc(100% - 4px) 100%, 4px 100%);
}
.il-section-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  font-size: var(--snays-fs-12);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--snays-accent);
  background: var(--snays-accent-soft);
  margin-bottom: 18px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.il-section-title{
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700;
  line-height: 1.16;
  color: var(--snays-text);
  letter-spacing: -.018em;
  margin-bottom: 16px;
}
.il-section-title em{
  font-style: normal;
  color: var(--snays-accent);
  position: relative;
  padding: 0 4px;
}
.il-section-title em::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 8px;
  background: var(--snays-accent-soft);
  z-index: -1;
  clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
}
.il-section-sub{
  font-size: var(--snays-fs-16);
  line-height: 1.7;
  color: var(--snays-text-soft);
  max-width: 640px;
  margin: 0 auto;
}

.il-hero{
  position: relative;
  padding: clamp(60px, 10vw, 60px) 0 clamp(60px, 8vw, 60px);
  background: var(--snays-surface);
  overflow: hidden;
  border-bottom: 1px solid var(--snays-border);
}
.il-hero-grid-bg{
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--snays-border) 1px, transparent 1px),
    linear-gradient(to bottom, var(--snays-border) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 65% 55% at 50% 45%, #000 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 65% 55% at 50% 45%, #000 30%, transparent 80%);
  pointer-events: none;
}
.il-hero-cross{
  position: absolute;
  width: 28px;
  height: 28px;
  pointer-events: none;
}
.il-hero-cross::before,
.il-hero-cross::after{
  content: "";
  position: absolute;
  background: var(--snays-accent);
}
.il-hero-cross::before{
  inset: 50% 0;
  height: 2px;
  transform: translateY(-50%);
}
.il-hero-cross::after{
  inset: 0 50%;
  width: 2px;
  transform: translateX(-50%);
}
.il-hero-cross-1{ top: 100px; left: 8%; }
.il-hero-cross-2{ bottom: 80px; right: 10%; }
.il-hero-ring{
  position: absolute;
  width: 240px;
  height: 240px;
  border: 1.5px dashed var(--snays-border-strong);
  border-radius: 50%;
  top: 12%;
  right: -80px;
  pointer-events: none;
}
.il-hero-ring::after{
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid var(--snays-border);
  border-radius: 50%;
}

.il-hero-grid{
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.il-hero-title{
  font-size: clamp(28px, 5.2vw, 44px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.025em;
  color: var(--snays-text);
  margin-bottom: 24px;
}
.il-hero-title em{
  font-style: normal;
  color: var(--snays-accent);
  position: relative;
  display: inline-block;
}
.il-hero-title em::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 12px;
  background: var(--snays-accent-soft);
  z-index: -1;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.il-hero-sub{
  font-size: var(--snays-fs-16);
  line-height: 1.65;
  color: var(--snays-text-soft);
  max-width: 580px;
}
.il-hero-sub strong{
  color: var(--snays-text);
  font-weight: 600;
}

.il-hero-quick{
  position: relative;
  background: var(--snays-surface);
  padding: 36px 32px;
  border: 1.5px solid var(--snays-border);
}
.il-hero-quick-bracket{
  position: absolute;
  width: 28px;
  height: 28px;
  pointer-events: none;
}
.il-hero-quick-bracket-tl{
  top: -2px;
  left: -2px;
  border-top: 4px solid var(--snays-accent);
  border-left: 4px solid var(--snays-accent);
}
.il-hero-quick-bracket-br{
  bottom: -2px;
  right: -2px;
  border-bottom: 4px solid var(--snays-accent);
  border-right: 4px solid var(--snays-accent);
}
.il-hero-quick-tag{
  display: inline-block;
  padding: 4px 12px;
  font-size: var(--snays-fs-12);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--snays-accent);
  background: var(--snays-accent-soft);
  margin-bottom: 14px;
  clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
}
.il-hero-quick-title{
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--snays-text);
  margin-bottom: 12px;
  letter-spacing: -.012em;
}
.il-hero-quick-title em{
  font-style: normal;
  color: var(--snays-accent);
}
.il-hero-quick-text{
  font-size: var(--snays-fs-14);
  line-height: 1.6;
  color: var(--snays-text-soft);
  margin-bottom: 22px;
}
.il-hero-quick .il-btn{
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
}

.il-channels{
  padding: clamp(80px, 9vw, 120px) 0;
  background: var(--snays-bg);
  position: relative;
}
.il-channels::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--snays-border) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 0%, transparent 80%);
          mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 0%, transparent 80%);
  pointer-events: none;
  opacity: .6;
}

.il-channels-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.il-channel{
  position: relative;
  background: var(--snays-surface);
  padding: 32px 26px 26px;
  border: 1.5px solid var(--snays-border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--snays-mid) var(--snays-ease),
              border-color var(--snays-fast) var(--snays-ease),
              box-shadow var(--snays-mid) var(--snays-ease);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}
.il-channel:hover{
  transform: translateY(-4px);
  border-color: var(--snays-accent);
}
.il-channel::before{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 18px;
  height: 18px;
  background: var(--snays-accent);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  transition: background var(--snays-fast) var(--snays-ease);
}
.il-channel[data-tone="purple"]::before{ background: var(--snays-accent); }
.il-channel[data-tone="blue"]::before{ background: var(--snays-info); }
.il-channel[data-tone="green"]::before{ background: var(--snays-success); }
.il-channel[data-tone="orange"]::before{ background: var(--snays-warn); }
.il-channel::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 18px;
  height: 18px;
  background: var(--snays-border);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.il-channel-tag{
  display: inline-flex;
  font-size: var(--snays-fs-12);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--snays-text-soft);
}
.il-channel-ico{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  position: relative;
  color: var(--snays-accent);
  background: var(--snays-accent-soft);
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  margin-bottom: 4px;
}
.il-channel[data-tone="blue"] .il-channel-ico{ color: var(--snays-info); background: var(--snays-info-soft); }
.il-channel[data-tone="green"] .il-channel-ico{ color: var(--snays-success); background: var(--snays-success-soft); }
.il-channel[data-tone="orange"] .il-channel-ico{ color: var(--snays-warn); background: var(--snays-warn-soft); }
.il-channel-ico .snays-ico{ width: 24px; height: 24px; }

.il-channel-title{
  font-size: var(--snays-fs-18);
  font-weight: 700;
  color: var(--snays-text);
  letter-spacing: -.005em;
}
.il-channel-primary{
  display: block;
  font-size: var(--snays-fs-16);
  font-weight: 600;
  color: var(--snays-text);
  word-break: break-all;
  border-bottom: 2px solid var(--snays-accent);
  padding-bottom: 4px;
  width: max-content;
  max-width: 100%;
  transition: color var(--snays-fast) var(--snays-ease);
}
.il-channel-primary:not(.il-channel-primary-static):hover{ color: var(--snays-accent); }
.il-channel[data-tone="blue"] .il-channel-primary{ border-bottom-color: var(--snays-info); }
.il-channel[data-tone="green"] .il-channel-primary{ border-bottom-color: var(--snays-success); }
.il-channel[data-tone="orange"] .il-channel-primary{ border-bottom-color: var(--snays-warn); }

.il-channel-meta{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 4px 0 6px;
}
.il-channel-meta li{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--snays-fs-13);
  color: var(--snays-text-soft);
}
.il-channel-meta-mark{
  width: 6px;
  height: 6px;
  background: var(--snays-accent);
  flex: none;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.il-channel[data-tone="blue"] .il-channel-meta-mark{ background: var(--snays-info); }
.il-channel[data-tone="green"] .il-channel-meta-mark{ background: var(--snays-success); }
.il-channel[data-tone="orange"] .il-channel-meta-mark{ background: var(--snays-warn); }

.il-channel-cta{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 12px 0 0;
  font-size: var(--snays-fs-13);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--snays-accent);
  border-top: 1.5px dashed var(--snays-border-strong);
  transition: gap var(--snays-fast) var(--snays-ease);
}
.il-channel-cta .snays-ico{ width: 14px; height: 14px; }
.il-channel:hover .il-channel-cta{ gap: 14px; }
.il-channel[data-tone="blue"] .il-channel-cta{ color: var(--snays-info); }
.il-channel[data-tone="green"] .il-channel-cta{ color: var(--snays-success); }
.il-channel[data-tone="orange"] .il-channel-cta{ color: var(--snays-warn); }

.il-form-map{
  position: relative;
  padding: clamp(80px, 9vw, 120px) 0;
  background: var(--snays-surface);
  overflow: hidden;
}
.il-form-map-stripes{
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 10px,
    var(--snays-border) 10px,
    var(--snays-border) 11px
  );
  -webkit-mask-image: linear-gradient(to left, #000 0%, transparent 100%);
          mask-image: linear-gradient(to left, #000 0%, transparent 100%);
  pointer-events: none;
}

.il-form-map-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.il-form{
  position: relative;
  background: var(--snays-surface);
  padding: 40px 36px;
  border: 1.5px solid var(--snays-border);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.il-form-bracket{
  position: absolute;
  width: 32px;
  height: 32px;
  pointer-events: none;
}
.il-form-bracket-tl{
  top: -2px;
  left: -2px;
  border-top: 4px solid var(--snays-accent);
  border-left: 4px solid var(--snays-accent);
}
.il-form-bracket-br{
  bottom: -2px;
  right: -2px;
  border-bottom: 4px solid var(--snays-accent);
  border-right: 4px solid var(--snays-accent);
}

.il-form-row{
  display: flex;
  gap: 18px;
}
.il-form-row-2{ grid-template-columns: repeat(2, 1fr); display: grid; }

.il-form-field{ display: flex; flex-direction: column; gap: 8px; }

.il-form-label{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--snays-fs-13);
  font-weight: 600;
  color: var(--snays-text);
  letter-spacing: .01em;
}
.il-form-label-mark{
  width: 8px;
  height: 8px;
  background: var(--snays-accent);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.il-form-req{
  font-style: normal;
  color: var(--snays-danger);
  font-weight: 600;
}

.il-form-input,
.il-form-textarea{
  width: 100%;
  padding: 14px 16px;
  font-size: var(--snays-fs-15);
  color: var(--snays-text);
  background: var(--snays-bg);
  border: 1.5px solid var(--snays-border);
  outline: none;
  font-family: inherit;
  transition: border-color var(--snays-fast) var(--snays-ease),
              background var(--snays-fast) var(--snays-ease);
}
.il-form-textarea{ resize: vertical; min-height: 120px; line-height: 1.55; }
.il-form-input::placeholder,
.il-form-textarea::placeholder{ color: var(--snays-muted); }
.il-form-input:focus,
.il-form-textarea:focus{
  border-color: var(--snays-accent);
  background: var(--snays-surface);
  outline: none;
}

.il-form-hint{
  font-size: var(--snays-fs-12);
  color: var(--snays-text-soft);
  letter-spacing: .01em;
}

.il-form-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.il-form-chip{ position: relative; cursor: pointer; }
.il-form-chip input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.il-form-chip span{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: var(--snays-fs-13);
  font-weight: 500;
  color: var(--snays-text);
  background: var(--snays-bg);
  border: 1.5px solid var(--snays-border);
  transition: all var(--snays-fast) var(--snays-ease);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.il-form-chip span .snays-ico{ width: 14px; height: 14px; color: var(--snays-text-soft); }
.il-form-chip:hover span{
  border-color: var(--snays-accent);
  color: var(--snays-accent);
}
.il-form-chip:hover span .snays-ico{ color: var(--snays-accent); }
.il-form-chip input:checked + span{
  background: var(--snays-accent);
  color: var(--snays-on-accent);
  border-color: var(--snays-accent);
  font-weight: 600;
}
.il-form-chip input:checked + span .snays-ico{ color: var(--snays-on-accent); }

.il-form-consent{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 14px 18px;
  background: var(--snays-bg);
  border: 1.5px solid var(--snays-border);
  border-left: 4px solid var(--snays-accent);
  position: relative;
}
.il-form-consent input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.il-form-consent-box{
  width: 22px;
  height: 22px;
  flex: none;
  background: var(--snays-surface);
  border: 1.5px solid var(--snays-border-strong);
  position: relative;
  margin-top: 1px;
  transition: all var(--snays-fast) var(--snays-ease);
  clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
}
.il-form-consent input:checked + .il-form-consent-box{
  background: var(--snays-accent);
  border-color: var(--snays-accent);
}
.il-form-consent input:checked + .il-form-consent-box::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(45deg, transparent 46%, #fff 46%, #fff 54%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, #fff 46%, #fff 54%, transparent 54%);
  background-size: 14px 2px, 8px 2px;
  background-position: 4px 12px, 5px 9px;
  background-repeat: no-repeat;
}
.il-form-consent-text{
  font-size: var(--snays-fs-13);
  color: var(--snays-text-soft);
  line-height: 1.55;
}
.il-form-consent-text strong{
  color: var(--snays-accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-style: dashed;
  text-underline-offset: 3px;
}

.il-form-actions{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.il-form-promise{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--snays-fs-13);
  color: var(--snays-text-soft);
}
.il-form-promise .snays-ico{
  width: 16px;
  height: 16px;
  color: var(--snays-success);
}

.il-map{
  position: relative;
  background: var(--snays-surface);
  border: 1.5px solid var(--snays-border);
  overflow: hidden;
}
.il-map-bracket{
  position: absolute;
  width: 32px;
  height: 32px;
  pointer-events: none;
  z-index: 3;
}
.il-map-bracket-tl{
  top: -2px;
  left: -2px;
  border-top: 4px solid var(--snays-accent);
  border-left: 4px solid var(--snays-accent);
}
.il-map-bracket-br{
  bottom: -2px;
  right: -2px;
  border-bottom: 4px solid var(--snays-accent);
  border-right: 4px solid var(--snays-accent);
}
.il-map-frame{
  position: relative;
  height: 320px;
  width: 100%;
  background: var(--snays-surface-2);
}
.il-map-frame iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(.92);
}
html[data-theme="dark"] .il-map-frame iframe{ filter: invert(1) hue-rotate(180deg) saturate(.6); }

.il-map-pin{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.il-map-pin-dot{
  position: absolute;
  inset: 0;
  background: var(--snays-accent);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  z-index: 2;
}
.il-map-pin-ring{
  position: absolute;
  inset: -10px;
  border: 2px solid var(--snays-accent);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  animation: il-pin-ring 2.4s var(--snays-ease) infinite;
}
@keyframes il-pin-ring{
  0%{ transform: scale(.5); opacity: 1; }
  100%{ transform: scale(1.6); opacity: 0; }
}

.il-map-meta{
  padding: 20px 22px 22px;
  border-top: 1.5px dashed var(--snays-border-strong);
  position: relative;
}
.il-map-meta::before{
  content: "";
  position: absolute;
  top: -7px;
  left: 28px;
  width: 12px;
  height: 12px;
  background: var(--snays-surface);
  border-top: 1.5px dashed var(--snays-border-strong);
  border-left: 1.5px dashed var(--snays-border-strong);
  transform: rotate(45deg);
}
.il-map-meta-tag{
  display: inline-block;
  padding: 4px 10px;
  font-size: var(--snays-fs-12);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--snays-accent);
  background: var(--snays-accent-soft);
  margin-bottom: 10px;
  clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
}
.il-map-meta-title{
  font-size: var(--snays-fs-18);
  font-weight: 700;
  color: var(--snays-text);
  margin-bottom: 6px;
}
.il-map-meta-addr{
  font-size: var(--snays-fs-13);
  color: var(--snays-text-soft);
  line-height: 1.55;
  margin-bottom: 14px;
}
.il-map-meta-cta{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--snays-fs-13);
  font-weight: 600;
  color: var(--snays-accent);
  letter-spacing: .02em;
  border-bottom: 1.5px solid var(--snays-accent);
  padding-bottom: 2px;
  transition: gap var(--snays-fast) var(--snays-ease);
}
.il-map-meta-cta .snays-ico{ width: 12px; height: 12px; }
.il-map-meta-cta:hover{ gap: 10px; }

.il-departments{
  position: relative;
  padding: clamp(80px, 9vw, 120px) 0;
  background: var(--snays-bg);
}
.il-departments::before{
  content: "";
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 1px;
  background-image: repeating-linear-gradient(
    to right,
    var(--snays-border-strong) 0,
    var(--snays-border-strong) 6px,
    transparent 6px,
    transparent 12px
  );
}

.il-dept-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.il-dept{
  position: relative;
  background: var(--snays-surface);
  padding: 28px 26px 26px;
  border: 1.5px solid var(--snays-border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--snays-mid) var(--snays-ease),
              border-color var(--snays-fast) var(--snays-ease);
}
.il-dept:hover{
  transform: translateY(-3px);
  border-color: var(--snays-accent);
}
.il-dept-corner{
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-left: 28px solid var(--snays-accent);
  border-bottom: 28px solid transparent;
  pointer-events: none;
}
.il-dept[data-tone="blue"] .il-dept-corner{ border-left-color: var(--snays-info); }
.il-dept[data-tone="green"] .il-dept-corner{ border-left-color: var(--snays-success); }
.il-dept[data-tone="orange"] .il-dept-corner{ border-left-color: var(--snays-warn); }
.il-dept[data-tone="pink"] .il-dept-corner{ border-left-color: var(--snays-danger); }
.il-dept[data-tone="cyan"] .il-dept-corner{ border-left-color: var(--snays-primary); }

.il-dept::after{
  content: "+";
  position: absolute;
  top: 6px;
  right: 16px;
  font-size: 18px;
  font-weight: 600;
  color: var(--snays-border-strong);
  line-height: 1;
}

.il-dept-ico{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: var(--snays-accent);
  background: var(--snays-surface);
  border: 1.5px solid var(--snays-accent);
  position: relative;
  margin-bottom: 4px;
  clip-path: polygon(20% 0, 80% 0, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0 80%, 0 20%);
}
.il-dept[data-tone="blue"] .il-dept-ico{ color: var(--snays-info); border-color: var(--snays-info); }
.il-dept[data-tone="green"] .il-dept-ico{ color: var(--snays-success); border-color: var(--snays-success); }
.il-dept[data-tone="orange"] .il-dept-ico{ color: var(--snays-warn); border-color: var(--snays-warn); }
.il-dept[data-tone="pink"] .il-dept-ico{ color: var(--snays-danger); border-color: var(--snays-danger); }
.il-dept[data-tone="cyan"] .il-dept-ico{ color: var(--snays-primary); border-color: var(--snays-primary); }
.il-dept-ico .snays-ico{ width: 22px; height: 22px; }

.il-dept-tag{
  font-size: var(--snays-fs-12);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--snays-text-soft);
}
.il-dept-name{
  font-size: var(--snays-fs-18);
  font-weight: 700;
  color: var(--snays-text);
  letter-spacing: -.005em;
}
.il-dept-desc{
  font-size: var(--snays-fs-13);
  line-height: 1.6;
  color: var(--snays-text-soft);
}

.il-dept-channels{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1.5px dashed var(--snays-border-strong);
}
.il-dept-channels li{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--snays-fs-13);
  color: var(--snays-text-soft);
}
.il-dept-channels li .snays-ico{
  width: 14px;
  height: 14px;
  color: var(--snays-accent);
  flex: none;
}
.il-dept[data-tone="blue"] .il-dept-channels li .snays-ico{ color: var(--snays-info); }
.il-dept[data-tone="green"] .il-dept-channels li .snays-ico{ color: var(--snays-success); }
.il-dept[data-tone="orange"] .il-dept-channels li .snays-ico{ color: var(--snays-warn); }
.il-dept[data-tone="pink"] .il-dept-channels li .snays-ico{ color: var(--snays-danger); }
.il-dept[data-tone="cyan"] .il-dept-channels li .snays-ico{ color: var(--snays-primary); }
.il-dept-channels li a{
  color: var(--snays-text);
  font-weight: 500;
  transition: color var(--snays-fast) var(--snays-ease);
}
.il-dept-channels li a:hover{ color: var(--snays-accent); }

.il-offices{
  position: relative;
  padding: clamp(80px, 9vw, 120px) 0;
  background: var(--snays-surface);
  border-top: 1px solid var(--snays-border);
  border-bottom: 1px solid var(--snays-border);
  overflow: hidden;
}
.il-offices::before{
  content: "";
  position: absolute;
  top: 80px;
  right: -120px;
  width: 320px;
  height: 320px;
  border: 1px dashed var(--snays-border-strong);
  border-radius: 50%;
  pointer-events: none;
}
.il-offices::after{
  content: "";
  position: absolute;
  bottom: 60px;
  left: -100px;
  width: 240px;
  height: 240px;
  border: 1px solid var(--snays-border);
  border-radius: 50%;
  pointer-events: none;
}

.il-offices-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

.il-office{
  position: relative;
  background: var(--snays-surface);
  border: 1.5px solid var(--snays-border);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.il-office.is-primary{
  background: var(--snays-bg);
  border-color: var(--snays-accent);
}
.il-office-bracket{
  position: absolute;
  width: 32px;
  height: 32px;
  pointer-events: none;
}
.il-office-bracket-tl{
  top: -2px;
  left: -2px;
  border-top: 4px solid var(--snays-accent);
  border-left: 4px solid var(--snays-accent);
}
.il-office-bracket-br{
  bottom: -2px;
  right: -2px;
  border-bottom: 4px solid var(--snays-accent);
  border-right: 4px solid var(--snays-accent);
}
.il-office:not(.is-primary) .il-office-bracket{
  border-color: var(--snays-border-strong);
}

.il-office-head{
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  padding-bottom: 20px;
  border-bottom: 1.5px dashed var(--snays-border-strong);
}
.il-office-flag{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--snays-on-accent);
  background: var(--snays-accent);
  clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
}
.il-office:not(.is-primary) .il-office-flag{
  background: var(--snays-primary);
}
.il-office-head-text{ flex: 1; min-width: 0; }
.il-office-tag{
  display: inline-block;
  font-size: var(--snays-fs-12);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--snays-accent);
  margin-bottom: 4px;
}
.il-office:not(.is-primary) .il-office-tag{ color: var(--snays-primary); }
.il-office-name{
  font-size: 22px;
  font-weight: 700;
  color: var(--snays-text);
  letter-spacing: -.012em;
}
.il-office-pin{
  width: 18px;
  height: 18px;
  background: var(--snays-accent);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  flex: none;
}
.il-office:not(.is-primary) .il-office-pin{ background: var(--snays-primary); }

.il-office-info{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.il-office-info li{
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.il-office-info-ico{
  width: 36px;
  height: 36px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--snays-accent);
  background: var(--snays-accent-soft);
  clip-path: polygon(20% 0, 80% 0, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0 80%, 0 20%);
}
.il-office:not(.is-primary) .il-office-info-ico{
  color: var(--snays-primary);
  background: var(--snays-primary-soft);
}
.il-office-info-ico .snays-ico{ width: 16px; height: 16px; }
.il-office-info-text{ display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.il-office-info-text strong{
  font-size: var(--snays-fs-12);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--snays-text-soft);
}
.il-office-info-text em{
  font-style: normal;
  font-size: var(--snays-fs-14);
  color: var(--snays-text);
  line-height: 1.55;
}
.il-office-info-text em a{
  color: var(--snays-text);
  font-weight: 500;
  transition: color var(--snays-fast) var(--snays-ease);
}
.il-office-info-text em a:hover{ color: var(--snays-accent); }

.il-office-foot{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--snays-surface);
  border-left: 4px solid var(--snays-accent);
  font-size: var(--snays-fs-13);
}
.il-office:not(.is-primary) .il-office-foot{
  background: var(--snays-bg);
  border-left-color: var(--snays-primary);
}
.il-office-foot-tag{
  font-weight: 600;
  color: var(--snays-text);
  flex: none;
}
.il-office-foot-list{ color: var(--snays-text-soft); }

.il-office-cta{
  align-self: flex-start;
  margin-top: 4px;
}

.il-social{
  position: relative;
  padding: clamp(80px, 9vw, 120px) 0;
  background: var(--snays-bg);
  overflow: hidden;
}
.il-social-bg{
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 80px,
      var(--snays-border) 80px,
      var(--snays-border) 81px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 80px,
      var(--snays-border) 80px,
      var(--snays-border) 81px
    );
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 20%, transparent 75%);
          mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 20%, transparent 75%);
  pointer-events: none;
  opacity: .8;
}

.il-social-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  z-index: 2;
}

.il-social-card{
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  background: var(--snays-surface);
  border: 1.5px solid var(--snays-border);
  transition: all var(--snays-fast) var(--snays-ease);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.il-social-card::before{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background: var(--snays-accent);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  transition: background var(--snays-fast) var(--snays-ease);
}
.il-social-card:hover{
  border-color: var(--snays-accent);
  transform: translateY(-3px);
}
.il-social-mark{
  display: none;
}
.il-social-ico{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: none;
  color: var(--snays-text);
  background: var(--snays-bg);
  border: 1.5px solid var(--snays-border-strong);
  position: relative;
  transition: all var(--snays-fast) var(--snays-ease);
}
.il-social-ico .snays-ico{ width: 20px; height: 20px; }
.il-social-card:hover .il-social-ico{
  background: var(--snays-accent);
  border-color: var(--snays-accent);
  color: var(--snays-on-accent);
}

.il-social-card[data-net="linkedin"]::before{ background: #0A66C2; }
.il-social-card[data-net="instagram"]::before{ background: #E4405F; }
.il-social-card[data-net="x"]::before{ background: #0F1419; }
.il-social-card[data-net="youtube"]::before{ background: #FF0000; }
.il-social-card[data-net="github"]::before{ background: #181717; }
.il-social-card[data-net="facebook"]::before{ background: #1877F2; }
.il-social-card[data-net="tiktok"]::before{ background: #25F4EE; }
.il-social-card[data-net="whatsapp"]::before{ background: #25D366; }

.il-social-text{
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.il-social-text strong{
  font-size: var(--snays-fs-15);
  font-weight: 700;
  color: var(--snays-text);
  line-height: 1.2;
}
.il-social-text em{
  font-style: normal;
  font-size: var(--snays-fs-12);
  color: var(--snays-text-soft);
}
.il-social-arrow{
  width: 16px;
  height: 16px;
  color: var(--snays-text-soft);
  flex: none;
  transition: all var(--snays-fast) var(--snays-ease);
}
.il-social-card:hover .il-social-arrow{
  color: var(--snays-accent);
  transform: translate(2px, -2px);
}

.il-faq{
  padding: clamp(80px, 9vw, 120px) 0;
  background: var(--snays-surface);
  border-top: 1px solid var(--snays-border);
}
.il-faq-list{
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.il-faq-item{
  position: relative;
  background: var(--snays-bg);
  border: 1.5px solid var(--snays-border);
  transition: border-color var(--snays-fast) var(--snays-ease);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}
.il-faq-item:hover{ border-color: var(--snays-accent); }
.il-faq-item::before{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background: var(--snays-accent);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.il-faq-item details summary{
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.il-faq-item details summary::-webkit-details-marker{ display: none; }

.il-faq-num{
  font-size: var(--snays-fs-12);
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--snays-accent);
  background: var(--snays-accent-soft);
  padding: 6px 10px;
  flex: none;
  clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
}
.il-faq-q{
  flex: 1;
  font-size: var(--snays-fs-16);
  font-weight: 600;
  color: var(--snays-text);
  line-height: 1.4;
}
.il-faq-toggle{
  width: 28px;
  height: 28px;
  flex: none;
  position: relative;
  background: var(--snays-surface);
  border: 1.5px solid var(--snays-border-strong);
  transition: all var(--snays-fast) var(--snays-ease);
}
.il-faq-toggle::before,
.il-faq-toggle::after{
  content: "";
  position: absolute;
  background: var(--snays-text);
  transition: all var(--snays-fast) var(--snays-ease);
}
.il-faq-toggle::before{
  inset: 50% 6px;
  height: 2px;
  transform: translateY(-50%);
}
.il-faq-toggle::after{
  inset: 6px 50%;
  width: 2px;
  transform: translateX(-50%);
}
.il-faq-item details[open] .il-faq-toggle{
  background: var(--snays-accent);
  border-color: var(--snays-accent);
}
.il-faq-item details[open] .il-faq-toggle::before{ background: var(--snays-on-accent); }
.il-faq-item details[open] .il-faq-toggle::after{ opacity: 0; }

.il-faq-a{
  padding: 0 26px 22px 86px;
  font-size: var(--snays-fs-14);
  line-height: 1.7;
  color: var(--snays-text-soft);
  border-top: 1.5px dashed var(--snays-border-strong);
  padding-top: 18px;
  margin-top: -2px;
}
.il-faq-a p strong{ color: var(--snays-text); font-weight: 600; }
.il-faq-a a{
  color: var(--snays-accent);
  font-weight: 500;
  border-bottom: 1.5px dashed var(--snays-accent);
  padding-bottom: 1px;
}

.il-finale{
  position: relative;
  padding: clamp(80px, 9vw, 120px) 0;
  background: var(--snays-bg);
  overflow: hidden;
}
.il-finale-grid{
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--snays-border) 1px, transparent 1px),
    linear-gradient(to bottom, var(--snays-border) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
  opacity: .7;
}

.il-finale-shell{
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  background: var(--snays-surface);
  padding: 56px 56px 48px;
  border: 2px solid var(--snays-text);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.il-finale-bracket{
  position: absolute;
  width: 44px;
  height: 44px;
  pointer-events: none;
}
.il-finale-bracket-tl{
  top: -8px;
  left: -8px;
  border-top: 6px solid var(--snays-accent);
  border-left: 6px solid var(--snays-accent);
}
.il-finale-bracket-tr{
  top: -8px;
  right: -8px;
  border-top: 6px solid var(--snays-accent);
  border-right: 6px solid var(--snays-accent);
}
.il-finale-bracket-bl{
  bottom: -8px;
  left: -8px;
  border-bottom: 6px solid var(--snays-accent);
  border-left: 6px solid var(--snays-accent);
}
.il-finale-bracket-br{
  bottom: -8px;
  right: -8px;
  border-bottom: 6px solid var(--snays-accent);
  border-right: 6px solid var(--snays-accent);
}

.il-finale-text{ display: flex; flex-direction: column; gap: 16px; }
.il-finale-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--snays-fs-12);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--snays-accent);
}
.il-finale-eyebrow-mark{
  width: 24px;
  height: 2px;
  background: var(--snays-accent);
}
.il-finale-title{
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--snays-text);
  letter-spacing: -.012em;
}
.il-finale-title em{
  font-style: normal;
  color: var(--snays-accent);
}
.il-finale-sub{
  font-size: var(--snays-fs-14);
  line-height: 1.65;
  color: var(--snays-text-soft);
}
.il-finale-sub strong{ color: var(--snays-text); font-weight: 600; }

.il-finale-form{
  position: relative;
  background: var(--snays-bg);
  padding: 28px 24px 22px;
  border: 1.5px solid var(--snays-border);
}
.il-finale-form-tag{
  position: absolute;
  top: -10px;
  left: 18px;
  padding: 4px 10px;
  background: var(--snays-text);
  color: var(--snays-bg);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
}
.il-finale-form-row{
  display: flex;
  gap: 0;
  margin-bottom: 16px;
}
.il-finale-input{
  flex: 1;
  padding: 14px 16px;
  font-size: var(--snays-fs-14);
  background: var(--snays-surface);
  border: 1.5px solid var(--snays-border-strong);
  outline: none;
  font-family: inherit;
  color: var(--snays-text);
  border-right: 0;
  transition: border-color var(--snays-fast) var(--snays-ease);
}
.il-finale-input:focus{ border-color: var(--snays-accent); }
.il-finale-input::placeholder{ color: var(--snays-muted); }
.il-finale-btn{
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  padding: 14px 22px;
}
.il-finale-promises{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.il-finale-promises li{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--snays-fs-12);
  color: var(--snays-text-soft);
  font-weight: 500;
}
.il-finale-promise-mark{
  width: 14px;
  height: 14px;
  position: relative;
  flex: none;
  background: var(--snays-success-soft);
  clip-path: polygon(20% 0, 80% 0, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0 80%, 0 20%);
}
.il-finale-promise-mark::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 6px;
  height: 3px;
  border-bottom: 2px solid var(--snays-success);
  border-right: 2px solid var(--snays-success);
}

@media (max-width: 1100px){
  .il-hero-grid{ grid-template-columns: 1fr; gap: 36px; }
  .il-hero-quick{ max-width: 480px; }
  .il-channels-grid{ grid-template-columns: repeat(2, 1fr); }
  .il-form-map-grid{ grid-template-columns: 1fr; }
  .il-dept-grid{ grid-template-columns: repeat(2, 1fr); }
  .il-offices-grid{ grid-template-columns: 1fr; }
  .il-social-grid{ grid-template-columns: repeat(3, 1fr); }
  .il-finale-shell{ grid-template-columns: 1fr; gap: 28px; padding: 40px 36px; }
}

@media (max-width: 720px){
  .il-hero{ padding-top: 60px; padding-bottom: 60px; }
  .il-hero-quick{ padding: 28px 24px; }
  .il-channels-grid{ grid-template-columns: 1fr; }
  .il-form{ padding: 28px 22px; }
  .il-form-row-2{ grid-template-columns: 1fr; }
  .il-form-actions{ flex-direction: column; align-items: stretch; }
  .il-form-actions .il-btn{ justify-content: center; }
  .il-dept-grid{ grid-template-columns: 1fr; }
  .il-office{ padding: 28px 22px 24px; }
  .il-office-info-text em{ font-size: var(--snays-fs-13); }
  .il-social-grid{ grid-template-columns: repeat(2, 1fr); }
  .il-faq-item details summary{ padding: 18px 18px; gap: 12px; }
  .il-faq-q{ font-size: var(--snays-fs-15); }
  .il-faq-a{ padding-left: 60px; padding-right: 18px; }
  .il-finale-shell{ padding: 32px 24px; }
  .il-finale-form{ padding: 24px 18px 18px; }
  .il-finale-form-row{ flex-direction: column; }
  .il-finale-input{ border-right: 1.5px solid var(--snays-border-strong); border-bottom: 0; }
  .il-finale-btn{ width: 100%; justify-content: center; }
}

@media (max-width: 520px){
  .il-section-head{ margin-bottom: 36px; }
  .il-hero-title{ font-size: 28px; }
  .il-hero-quick-bracket{ width: 22px; height: 22px; border-width: 3px; }
  .il-form-bracket,
  .il-map-bracket,
  .il-office-bracket{ width: 24px; height: 24px; border-width: 3px; }
  .il-social-grid{ grid-template-columns: 1fr; }
  .il-finale-bracket{ width: 32px; height: 32px; border-width: 4px; }
  .il-form-chips{ gap: 8px; }
  .il-form-chip span{ padding: 8px 12px; font-size: var(--snays-fs-12); }
  .il-faq-num{ font-size: 11px; padding: 4px 8px; }
  .il-faq-a{ padding-left: 18px; }
}

html[data-theme="dark"] .il-hero{ background: var(--snays-surface); }
html[data-theme="dark"] .il-channel,
html[data-theme="dark"] .il-dept,
html[data-theme="dark"] .il-office,
html[data-theme="dark"] .il-form,
html[data-theme="dark"] .il-map,
html[data-theme="dark"] .il-faq-item,
html[data-theme="dark"] .il-social-card,
html[data-theme="dark"] .il-finale-shell{
  background: var(--snays-surface-2);
}
html[data-theme="dark"] .il-channels::before{ opacity: .35; }
html[data-theme="dark"] .il-social-card[data-net="x"]::before{ background: #F7F9FA; }
html[data-theme="dark"] .il-social-card[data-net="github"]::before{ background: #F0F6FC; }
html[data-theme="dark"] .il-finale-shell{ border-color: var(--snays-border-strong); }
html[data-theme="dark"] .il-finale-form-tag{
  background: var(--snays-accent);
  color: var(--snays-on-accent);
}

@media (prefers-reduced-motion: reduce){
  .il-map-pin-ring{ animation: none; }
  .il-channel,
  .il-dept,
  .il-social-card{ transition: none; }
}
