.page-contact {
  --fc-blue: #0A1F44;
  --fc-bg: #061021;
  --fc-card: #112B5A;
  --fc-accent: #39FF14;
  --fc-gold: #FFD700;
  --fc-text: #E6EDF7;
  --fc-muted: #7B8DB0;
  --fc-border: #1A3A6B;
  --fc-teal: #2DD4BF;
  --fc-mono: 'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;
  --fc-head: 'Oswald', 'Helvetica Neue', Arial, sans-serif;

  background:
    radial-gradient(ellipse at 78% 0%, rgba(57, 255, 20, 0.07), transparent 30%),
    radial-gradient(ellipse at 15% 100%, rgba(255, 215, 0, 0.05), transparent 24%),
    linear-gradient(165deg, var(--fc-bg), var(--fc-blue) 52%, var(--fc-bg));
  color: var(--fc-text);
  padding-bottom: 64px;
  overflow-x: hidden;
}

.page-contact .breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--fc-muted);
  padding: 18px 0 8px;
}

.page-contact .breadcrumb a {
  color: var(--fc-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.page-contact .breadcrumb a:hover {
  color: var(--fc-accent);
}

.page-contact .breadcrumb .sep {
  color: var(--fc-border);
}

.page-contact .contact-hero {
  position: relative;
}

.page-contact .contact-hero__grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px 0 24px;
}

.page-contact .contact-hero__badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.page-contact .contact-hero__badge {
  position: relative;
}

.page-contact .contact-hero__badge::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fc-accent);
  margin-right: 8px;
  vertical-align: 2px;
  box-shadow: 0 0 8px var(--fc-accent);
}

.page-contact .contact-hero__title {
  font-family: var(--fc-head);
  font-weight: 700;
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin: 0 0 16px;
  max-width: 860px;
  transform: skewX(-2deg);
  transform-origin: left bottom;
}

.page-contact .contact-hero__title em {
  font-style: normal;
  color: var(--fc-gold);
}

.page-contact .contact-hero__lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fc-text);
  max-width: 620px;
  margin: 0;
}

.page-contact .contact-hero__stamp {
  position: relative;
  width: 100%;
  max-width: 240px;
}

.page-contact .contact-hero__stamp-inner {
  background: linear-gradient(135deg, var(--fc-card), rgba(17, 43, 90, 0.4));
  border: 1px solid var(--fc-border);
  border-left: 3px solid var(--fc-accent);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  overflow: hidden;
}

.page-contact .contact-hero__stamp-inner::after {
  content: "";
  position: absolute;
  right: -24px;
  top: -24px;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 50%;
}

.page-contact .contact-hero__stamp-label {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fc-muted);
}

.page-contact .contact-hero__stamp-time {
  font-family: var(--fc-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--fc-text);
  letter-spacing: -0.02em;
}

.page-contact .contact-hero__stamp-days {
  font-size: 13px;
  color: var(--fc-muted);
}

.page-contact .contact-hero__jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--fc-border);
  border-bottom: 1px solid var(--fc-border);
  margin-top: 6px;
}

.page-contact .contact-hero__jump-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px 16px 0;
  color: var(--fc-text);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.page-contact .contact-hero__jump-link span {
  font-family: var(--fc-mono);
  color: var(--fc-gold);
  font-size: 12px;
}

.page-contact .contact-hero__jump-link:hover {
  color: var(--fc-accent);
}

.page-contact .contact-hero__jump-link:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: var(--fc-border);
}

.page-contact .contact-hero__jump-link:last-child {
  padding-right: 0;
}

.page-contact .contact-channel {
  scroll-margin-top: 80px;
  padding-top: 40px;
}

.page-contact .container {
  max-width: var(--max-width, 1240px);
  margin: 0 auto;
  padding: 0 20px;
}

.page-contact .section-kicker {
  display: block;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fc-accent);
  margin-bottom: 10px;
  font-family: var(--fc-mono);
}

.page-contact .section-title {
  font-family: var(--fc-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 12px;
  position: relative;
  padding-left: 14px;
  transform: skewX(-2deg);
}

.page-contact .section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  background: var(--fc-gold);
}

.page-contact .contact-channel__head {
  margin-bottom: 28px;
}

.page-contact .contact-channel__intro,
.page-contact .contact-schedule__summary,
.page-contact .contact-prep__summary {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fc-muted);
  max-width: 680px;
  margin: 0;
}

.page-contact .contact-filing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.page-contact .contact-dossier {
  background: linear-gradient(160deg, rgba(17, 43, 90, 0.72), rgba(10, 31, 68, 0.6));
  border: 1px solid var(--fc-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow, 0 4px 24px rgba(0, 0, 0, 0.35));
  overflow: hidden;
  position: relative;
}

.page-contact .contact-dossier::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fc-accent), transparent 70%);
}

.page-contact .contact-dossier__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px 16px;
  border-bottom: 1px solid var(--fc-border);
  background: rgba(6, 16, 33, 0.4);
}

.page-contact .contact-dossier__eyebrow {
  font-family: var(--fc-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--fc-muted);
  text-transform: uppercase;
}

.page-contact .contact-dossier__code {
  font-family: var(--fc-mono);
  font-size: 13px;
  color: var(--fc-gold);
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: var(--radius-sm);
  padding: 3px 8px;
}

.page-contact .contact-dossier__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-contact .contact-entry {
  display: flex;
  gap: 16px;
  border-bottom: 2px solid var(--fc-gold);
  padding-bottom: 20px;
}

.page-contact .contact-entry--email {
  border-bottom: 2px solid var(--fc-gold);
}

.page-contact .contact-entry--dual {
  border-bottom: 1px solid var(--fc-border);
  gap: 0;
  flex-direction: column;
}

.page-contact .contact-entry__mark {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--fc-border);
  border-radius: 8px;
  background: linear-gradient(145deg, var(--fc-blue), var(--fc-bg));
  font-family: var(--fc-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--fc-accent);
}

.page-contact .contact-entry__body {
  flex: 1;
  min-width: 0;
}

.page-contact .contact-entry__title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.page-contact .contact-entry__title {
  font-size: 14px;
  color: var(--fc-muted);
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.03em;
}

.page-contact .contact-entry__badge {
  font-size: 11px;
}

.page-contact .contact-entry__value {
  font-family: var(--fc-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--fc-text);
  display: inline-block;
  margin: 4px 0 6px;
  line-height: 1.4;
  word-break: break-word;
}

.page-contact .contact-entry__value--link {
  text-decoration: none;
  color: var(--fc-text);
  border-bottom: 1px dashed rgba(57, 255, 20, 0.4);
  transition: color 0.2s, border-color 0.2s;
  cursor: pointer;
}

.page-contact .contact-entry__value--link:hover {
  color: var(--fc-accent);
  border-bottom-color: var(--fc-accent);
}

.page-contact .contact-entry__value--address {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
  cursor: text;
}

.page-contact .contact-entry__toolbar {
  margin: 2px 0 4px;
}

.page-contact .contact-entry__tooltip {
  display: inline-block;
  font-size: 12px;
  color: var(--fc-muted);
  background: rgba(57, 255, 20, 0.08);
  border: 1px solid rgba(57, 255, 20, 0.18);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  letter-spacing: 0.04em;
}

.page-contact .contact-entry__note {
  font-size: 13px;
  color: var(--fc-muted);
  line-height: 1.6;
  margin: 6px 0 0;
}

.page-contact .contact-entry__part {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  width: 100%;
}

.page-contact .contact-entry__divider {
  border-top: 1px solid var(--fc-border);
  height: 1px;
  margin: 0;
  width: 100%;
}

.page-contact .contact-dossier__foot {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}

.page-contact .contact-dossier__foot a {
  font-size: 13px;
  color: var(--fc-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.page-contact .contact-dossier__foot a:hover {
  color: var(--fc-accent);
  border-bottom-color: var(--fc-accent);
}

.page-contact .contact-dossier__dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--fc-border);
}

.page-contact .contact-flap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-contact .contact-map {
  position: relative;
  margin: 0;
  border: 1px solid var(--fc-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow, 0 4px 24px rgba(0, 0, 0, 0.35));
  background: linear-gradient(145deg, var(--fc-card), var(--fc-bg));
}

.page-contact .contact-map__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  min-height: 160px;
}

.page-contact .contact-map__tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6, 16, 33, 0.82);
  border: 1px solid var(--fc-border);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fc-text);
  margin: 0;
}

.page-contact .contact-map__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fc-accent);
  box-shadow: 0 0 10px var(--fc-accent);
}

.page-contact .contact-note-strip {
  background: linear-gradient(150deg, var(--fc-card), rgba(10, 31, 68, 0.3));
  border: 1px solid var(--fc-border);
  border-left: 4px solid var(--fc-accent);
  border-radius: var(--radius);
  padding: 20px;
}

.page-contact .contact-note-strip__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.page-contact .contact-note-strip__label {
  font-family: var(--fc-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fc-accent);
}

.page-contact .contact-note-strip__icon {
  font-size: 18px;
  color: var(--fc-muted);
  line-height: 1;
}

.page-contact .contact-note-strip__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-contact .contact-note-strip__list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--fc-text);
}

.page-contact .contact-note-strip__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--fc-gold);
}

.page-contact .contact-schedule {
  scroll-margin-top: 80px;
  padding-top: 52px;
}

.page-contact .contact-schedule__head {
  margin-bottom: 28px;
}

.page-contact .contact-schedule__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.page-contact .contact-schedule__visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(160deg, var(--fc-card), rgba(6, 16, 33, 0.5));
  border: 1px solid var(--fc-border);
  border-radius: var(--radius);
  padding: 16px;
}

.page-contact .contact-schedule__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: rgba(6, 16, 33, 0.4);
}

.page-contact .contact-schedule__captions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-contact .contact-schedule__captions-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--fc-muted);
  border: 1px solid var(--fc-border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
}

.page-contact .contact-schedule__captions-num {
  font-family: var(--fc-mono);
  font-weight: 700;
  font-size: 15px;
  color: var(--fc-gold);
}

.page-contact .contact-schedule__timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-left: 20px;
}

.page-contact .contact-schedule__timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, var(--fc-accent), rgba(57, 255, 20, 0.08));
}

.page-contact .contact-slot {
  position: relative;
}

.page-contact .contact-slot::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 22px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--fc-bg);
  border: 2px solid var(--fc-accent);
  box-shadow: 0 0 8px rgba(57, 255, 20, 0.4);
}

.page-contact .contact-slot {
  padding: 16px 0 16px 22px;
  border-bottom: 1px solid var(--fc-border);
}

.page-contact .contact-slot:last-child {
  border-bottom: none;
}

.page-contact .contact-slot__time {
  font-family: var(--fc-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--fc-accent);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.page-contact .contact-slot__content h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--fc-text);
}

.page-contact .contact-slot__content p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--fc-muted);
  margin: 0;
}

.page-contact .contact-prep {
  scroll-margin-top: 80px;
  padding-top: 52px;
}

.page-contact .contact-prep__head {
  margin-bottom: 28px;
}

.page-contact .contact-prep__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-contact .contact-prep-card {
  position: relative;
  background: linear-gradient(150deg, rgba(17, 43, 90, 0.72), rgba(10, 31, 68, 0.4));
  border: 1px solid var(--fc-border);
  border-radius: var(--radius);
  padding: 24px 22px 22px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.page-contact .contact-prep-card:hover {
  border-color: rgba(57, 255, 20, 0.35);
  box-shadow: 0 0 24px rgba(57, 255, 20, 0.08);
}

.page-contact .contact-prep-card::after {
  content: "";
  position: absolute;
  right: -32px;
  top: -32px;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 50%;
}

.page-contact .contact-prep-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-family: var(--fc-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--fc-gold);
  border: 1px solid rgba(255, 215, 0, 0.35);
  background: rgba(255, 215, 0, 0.06);
  border-radius: 50%;
  margin-bottom: 16px;
}

.page-contact .contact-prep-card__title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--fc-text);
}

.page-contact .contact-prep-card__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--fc-muted);
  margin: 0;
}

.page-contact .contact-prep__context {
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(6, 16, 33, 0.5);
  border: 1px dashed var(--fc-border);
  border-radius: var(--radius);
}

.page-contact .contact-prep__context-label {
  flex-shrink: 0;
  font-family: var(--fc-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--fc-gold);
  padding-top: 2px;
  white-space: nowrap;
}

.page-contact .contact-prep__context p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--fc-text);
  margin: 0;
}

.page-contact .contact-prep__cta {
  margin-top: 28px;
  background: linear-gradient(135deg, var(--fc-blue), var(--fc-bg));
  border: 1px solid var(--fc-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-contact .contact-prep__cta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--fc-accent), var(--fc-gold));
}

.page-contact .contact-prep__cta-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fc-text);
  max-width: 600px;
  margin: 0 auto 18px;
}

.page-contact .contact-prep__cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.page-contact .contact-prep__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-size: 14px;
  font-family: var(--fc-mono);
  font-weight: 600;
  color: var(--fc-text);
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid var(--fc-accent);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transform: skewX(-2deg);
  transition: background 0.2s, box-shadow 0.2s;
}

.page-contact .contact-prep__btn:hover {
  background: rgba(57, 255, 20, 0.2);
  box-shadow: 0 0 16px rgba(57, 255, 20, 0.15);
}

.page-contact .contact-prep__btn--phone {
  color: var(--fc-gold);
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.45);
}

.page-contact .contact-prep__btn--phone:hover {
  background: rgba(255, 215, 0, 0.15);
  box-shadow: 0 0 16px rgba(255, 215, 0, 0.12);
}

.page-contact .contact-prep__btn--ghost {
  font-family: var(--font-body, 'Inter', sans-serif);
  background: transparent;
  border-color: var(--fc-border);
  color: var(--fc-muted);
}

.page-contact .contact-prep__btn--ghost:hover {
  border-color: var(--fc-text);
  color: var(--fc-text);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.page-contact .select-all {
  user-select: all;
  -webkit-user-select: all;
}

@media (min-width: 600px) {
  .page-contact .contact-hero__grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .page-contact .contact-hero__main {
    flex: 1;
  }

  .page-contact .contact-hero__stamp {
    flex-shrink: 0;
    margin-top: 8px;
  }

  .page-contact .contact-entry--dual {
    flex-direction: row;
  }

  .page-contact .contact-entry__part {
    flex: 1;
  }

  .page-contact .contact-entry__divider {
    width: 1px;
    height: auto;
    min-height: 80px;
    border-top: none;
    border-left: 1px solid var(--fc-border);
    margin: 14px 0;
  }

  .page-contact .contact-prep__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .page-contact .contact-schedule__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
    align-items: start;
  }

  .page-contact .contact-schedule__visual {
    flex-direction: column;
    align-items: stretch;
  }

  .page-contact .contact-filing {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    align-items: start;
  }

  .page-contact .contact-dossier {
    position: sticky;
    top: 20px;
  }
}

@media (min-width: 960px) {
  .page-contact .contact-filing {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  }

  .page-contact .contact-hero__title {
    font-size: 52px;
  }

  .page-contact .contact-prep__grid {
    gap: 24px;
  }

  .page-contact .contact-schedule__visual {
    padding: 20px;
  }

  .page-contact .contact-hero__jump-link {
    padding-left: 18px;
    padding-right: 24px;
  }
}
