:root {
  --ink: #0b132b;
  --muted: #56657f;
  --line: #dbe5f4;
  --surface: #ffffff;
  --soft: #f5f8fc;
  --accent: #1677ff;
  --accent-dark: #1727a8;
  --cyan: #00a7e8;
  --green: #18a66a;
  --amber: #f5a623;
  --shadow: 0 24px 70px rgba(11, 19, 43, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(22, 119, 255, 0.1), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f3f7fd 100%);
  font-family: Inter, Arial, sans-serif;
}

a {
  color: inherit;
}

.site-header {
  width: min(1180px, calc(100% - 36px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: clamp(150px, 18vw, 198px);
  height: auto;
  display: block;
}

.support-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.support-links a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.support-links a:hover {
  border-color: rgba(22, 119, 255, 0.45);
  color: var(--accent-dark);
  transform: translateY(-1px);
}

.contact-hero {
  width: min(1180px, calc(100% - 36px));
  min-height: calc(100vh - 178px);
  margin: 0 auto;
  padding: 58px 0 46px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 470px);
  gap: 56px;
  align-items: center;
}

.hero-copy {
  max-width: 675px;
}

.eyebrow,
.panel-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  margin: 24px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

.notice {
  margin-top: 28px;
  max-width: 620px;
  padding: 18px 20px;
  border-left: 4px solid var(--amber);
  background: rgba(255, 255, 255, 0.86);
  color: var(--muted);
  line-height: 1.55;
  box-shadow: 0 10px 35px rgba(11, 19, 43, 0.05);
}

.notice strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
}

.contact-panel {
  border: 1px solid rgba(219, 229, 244, 0.9);
  border-radius: 8px;
  padding: clamp(24px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.05;
}

.contact-panel p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-actions {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.primary-button,
.secondary-button {
  min-height: 88px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 18px 20px;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.primary-button {
  color: #fff;
  background: linear-gradient(180deg, #2b8aff 0%, var(--accent) 100%);
  box-shadow: 0 12px 28px rgba(22, 119, 255, 0.25);
}

.secondary-button {
  border: 1px solid rgba(22, 119, 255, 0.24);
  color: var(--accent-dark);
  background: #eef5ff;
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-1px);
}

.secondary-button:hover {
  border-color: rgba(22, 119, 255, 0.48);
}

.primary-button span,
.secondary-button span,
.hours-card span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.primary-button strong,
.secondary-button strong {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.15;
}

.hours-card {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.hours-card span {
  color: var(--green);
}

.hours-card strong {
  display: block;
  margin-top: 8px;
  font-size: 17px;
}

.hours-card p {
  margin-top: 6px;
  font-size: 14px;
}

.info-band {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.info-item {
  min-height: 176px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.info-item:last-child {
  border-right: 0;
}

.step {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--accent);
  font-weight: 900;
}

.info-item h3 {
  margin: 18px 0 8px;
  font-size: 18px;
}

.info-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 920px) {
  .contact-hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 34px;
  }

  .hero-copy {
    max-width: 760px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 106px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .support-links {
    justify-content: flex-start;
  }

  .support-links a {
    font-size: 13px;
  }

  .info-band {
    grid-template-columns: 1fr;
  }

  .info-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .info-item:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 460px) {
  .site-header,
  .contact-hero,
  .info-band {
    width: min(100% - 24px, 1180px);
  }

  .contact-panel {
    padding: 22px;
  }

  h1 {
    font-size: 38px;
  }

  .primary-button strong,
  .secondary-button strong {
    font-size: 17px;
  }
}
