body { margin: 0; padding: 0; width: 100%; }

.site-header {
  transform: translateY(-100%);
  transition: transform 0.6s ease-out;
}
body.page-loaded .site-header { transform: translateY(0); }

.loader {
  height: 3px;
  background: repeating-linear-gradient(90deg, #0033FE 0px, #0033FE 10px, transparent 10px, transparent 20px);
  position: fixed; top: 50%; left: 0; width: 0%;
  z-index: 9999; margin-top: -1.5px;
}
.loader-svg {
  position: fixed; top: 50%; left: 0;
  width: 20px; height: 20px; margin-top: -10px;
  z-index: 10000;
  background-image: url('../images/S1.svg');
  background-size: contain; background-repeat: no-repeat;
  opacity: 0; visibility: hidden;
}
.content { display: none; }
body.page-loaded .loader { display: none !important; }
body.page-loaded .content { display: block; }

.primary-nav a.active { color: var(--lime); }

/* ══════════════════════════════════════
   01 / PAGE HERO
══════════════════════════════════════ */
.ch-section {
  width: 100%;
  padding: 0 var(--side);
  position: sticky;
  top: var(--header-h, 60px);
  z-index: 1;
}
.ch-card {
  width: 100%;
  border-radius: clamp(8px, 0.8vw, 12px);
  background: linear-gradient(160deg, rgb(9,30,58) 0%, rgb(0,51,254) 100%);
  border: 1px solid rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 4vw, 56px) clamp(22px, 3vw, 40px) clamp(36px, 4.5vw, 60px);
  min-height: clamp(200px, 22vw, 320px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ch-card::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(237,238,240,0.10) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.ch-inner { position: relative; z-index: 1; }
.ch-badge {
  display: inline-flex;
  align-items: center;
  height: clamp(18px, 1.8vw, 22px);
  padding: 0 clamp(8px, 0.8vw, 12px);
  background: var(--lime);
  color: var(--ink);
  border-radius: 2px;
  font-size: clamp(7px, 0.6vw, 9px);
  letter-spacing: 0.08em;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: clamp(12px, 1.5vw, 20px);
}
.ch-title {
  margin: 0 0 clamp(10px, 1.2vw, 16px);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  max-width: 20ch;
}
.ch-sub {
  margin: 0;
  font-size: var(--text-md);
  line-height: 1.45;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
  max-width: 52ch;
}

/* ══════════════════════════════════════
   02 / FORM + INFO
══════════════════════════════════════ */
.cfi-section {
  width: 100%;
  padding: clamp(40px, 5vw, 72px) var(--side);
  position: relative;
  z-index: 2;
}
.cfi-grid {
  display: grid;
  grid-template-columns: 1fr clamp(260px, 32vw, 460px);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}

/* ── Form card ── */
.cform-card {
  background: var(--white);
  border-radius: clamp(8px, 0.8vw, 12px);
  border: 1px solid rgba(25,36,59,0.1);
  padding: clamp(24px, 3vw, 44px);
}
.cform-title {
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.01em;
  margin: 0 0 clamp(20px, 2.5vw, 32px);
}
.cform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(10px, 1.5vw, 20px);
  margin-bottom: clamp(12px, 1.5vw, 18px);
}
.cform-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: clamp(12px, 1.5vw, 18px);
}
.cform-group:last-of-type { margin-bottom: 0; }
.cform-label {
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(25,36,59,0.5);
  font-weight: 500;
}
.cform-input,
.cform-select,
.cform-textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid rgba(25,36,59,0.15);
  border-radius: 5px;
  padding: clamp(10px, 1.2vw, 14px) clamp(12px, 1.4vw, 16px);
  font-family: inherit;
  font-size: var(--text-sm);
  color: var(--ink);
  letter-spacing: 0.02em;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
  appearance: none;
}
.cform-input::placeholder,
.cform-textarea::placeholder { color: rgba(25,36,59,0.3); }
.cform-input:focus,
.cform-select:focus,
.cform-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,51,254,0.08);
}
.cform-select-wrap {
  position: relative;
}
.cform-select-wrap::after {
  content: '';
  position: absolute;
  right: clamp(12px, 1.4vw, 16px);
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 6px; height: 6px;
  border-right: 1.5px solid rgba(25,36,59,0.4);
  border-bottom: 1.5px solid rgba(25,36,59,0.4);
  pointer-events: none;
}
.cform-select { padding-right: 36px; cursor: pointer; }
.cform-textarea {
  resize: vertical;
  min-height: clamp(100px, 12vw, 150px);
  line-height: 1.55;
}
.cform-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: clamp(20px, 2.5vw, 32px);
}
.cform-privacy {
  font-size: var(--text-xs);
  color: rgba(25,36,59,0.4);
  letter-spacing: 0.02em;
  line-height: 1.5;
  max-width: 28ch;
}
.cform-privacy a { color: var(--blue); text-decoration: none; }

/* ── Info column ── */
.cinfo-col {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3.5vw, 48px);
}
.cinfo-block {}
.cinfo-label {
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(25,36,59,0.4);
  margin: 0 0 clamp(6px, 0.8vw, 10px);
  font-weight: 500;
}
.cinfo-heading {
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin: 0 0 clamp(8px, 1vw, 14px);
}
.cinfo-text {
  font-size: var(--text-md);
  line-height: 1.55;
  color: rgba(25,36,59,0.65);
  letter-spacing: 0.02em;
  margin: 0;
}
.cinfo-text a { color: var(--blue); text-decoration: none; }
.cinfo-text a:hover { text-decoration: underline; }

.cinfo-divider {
  width: 100%;
  height: 1px;
  background: rgba(25,36,59,0.1);
}

/* Social icons */
.cinfo-social {
  display: flex;
  gap: clamp(8px, 1vw, 12px);
  flex-wrap: wrap;
}
.cinfo-social-btn {
  width: clamp(36px, 3.5vw, 44px);
  height: clamp(36px, 3.5vw, 44px);
  border-radius: 5px;
  background: var(--ink);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
  text-decoration: none;
}
.cinfo-social-btn:hover { background: var(--blue); }
.cinfo-social-btn svg { display: block; }

/* Extra contact list */
.cinfo-list {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1vw, 12px);
}
.cinfo-list-item {
  display: flex;
  align-items: flex-start;
  gap: clamp(10px, 1.2vw, 16px);
}
.cinfo-list-icon {
  width: clamp(30px, 3vw, 38px);
  height: clamp(30px, 3vw, 38px);
  border-radius: 4px;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.15);
}
.cinfo-list-body {}
.cinfo-list-key {
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(25,36,59,0.4);
  line-height: 1;
  margin-bottom: 3px;
}
.cinfo-list-val {
  font-size: var(--text-sm);
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

/* ══════════════════════════════════════
   03 / MAP
══════════════════════════════════════ */
.cmap-section {
  width: 100%;
  padding: 0 var(--side) clamp(40px, 5vw, 72px);
}
.cmap-wrap {
  width: 100%;
  border-radius: clamp(8px, 0.8vw, 12px);
  overflow: hidden;
  border: 1px solid rgba(25,36,59,0.1);
  position: relative;
}
.cmap-wrap iframe {
  width: 100%;
  height: clamp(280px, 32vw, 480px);
  display: block;
  border: none;
  filter: grayscale(20%) contrast(1.02);
}
.cmap-label {
  position: absolute;
  bottom: clamp(12px, 1.5vw, 20px);
  left: clamp(12px, 1.5vw, 20px);
  background: var(--ink);
  color: var(--white);
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  padding: clamp(6px, 0.7vw, 10px) clamp(10px, 1.2vw, 16px);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}
.cmap-label svg { flex-shrink: 0; }

/* ══════════════════════════════════════
   04 / FAQ
══════════════════════════════════════ */
.cfaq-section {
  width: 100%;
  padding: clamp(40px, 5vw, 72px) var(--side);
}
.cfaq-head {
  text-align: center;
  margin-bottom: clamp(32px, 4vw, 56px);
}
.cfaq-head .section-title { margin-bottom: clamp(8px, 1vw, 14px); }
.cfaq-head .section-intro {
  max-width: 54ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.cfaq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cfaq-item {
  border-top: 1px solid rgba(25,36,59,0.12);
}
.cfaq-item:last-child { border-bottom: 1px solid rgba(25,36,59,0.12); }

.cfaq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2vw, 28px);
  padding: clamp(16px, 2vw, 24px) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.cfaq-q-text {
  font-size: clamp(14px, 1.4vw, 19px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.01em;
  line-height: 1.3;
}
.cfaq-icon {
  width: clamp(26px, 2.5vw, 32px);
  height: clamp(26px, 2.5vw, 32px);
  border-radius: 4px;
  background: var(--ink);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}
.cfaq-item.open .cfaq-icon {
  background: var(--blue);
  transform: rotate(45deg);
}
.cfaq-icon svg { display: block; }

.cfaq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
  opacity: 0;
}
.cfaq-item.open .cfaq-a {
  max-height: 400px;
  opacity: 1;
}
.cfaq-a-inner {
  padding: 0 0 clamp(16px, 2vw, 24px);
  font-size: var(--text-md);
  line-height: 1.65;
  letter-spacing: 0.02em;
  color: rgba(25,36,59,0.65);
  max-width: 68ch;
}
.cfaq-a-inner a { color: var(--blue); text-decoration: none; }
.cfaq-a-inner a:hover { text-decoration: underline; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .cfi-grid { grid-template-columns: 1fr; }
  .cinfo-col { flex-direction: row; flex-wrap: wrap; gap: clamp(20px, 3vw, 32px); }
  .cinfo-block { flex: 1 1 clamp(200px, 40%, 320px); }
  .cinfo-divider { display: none; }
}
@media (max-width: 580px) {
  .cform-row { grid-template-columns: 1fr; }
  .cinfo-col { flex-direction: column; }
}
