:root {
  --cp-navy: #082a4a;
  --cp-navy-deep: #041d35;
  --cp-green: #0b8f63;
  --cp-green-dark: #087451;
  --cp-mint: #e9f7f1;
  --cp-blue-soft: #eef5fa;
  --cp-ink: #102a43;
  --cp-muted: #52677a;
  --cp-line: #d8e4ec;
  --cp-white: #ffffff;
  --cp-shadow: 0 18px 46px rgba(8, 42, 74, 0.11);
  --cp-shadow-soft: 0 10px 28px rgba(8, 42, 74, 0.08);
  --cp-radius-lg: 28px;
  --cp-radius-md: 20px;
  --cp-radius-sm: 14px;
}

html {
  scroll-behavior: smooth;
}

body.contact-premium-page {
  color: var(--cp-ink);
  background: var(--cp-white);
  overflow-x: hidden;
}

.contact-premium-page *,
.contact-premium-page *::before,
.contact-premium-page *::after {
  box-sizing: border-box;
}

.cp-main {
  overflow: clip;
}

.cp-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.cp-skip {
  position: fixed;
  z-index: 10000;
  top: 10px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 10px;
  color: #fff;
  background: var(--cp-navy-deep);
  transform: translateY(-150%);
  transition: transform 0.18s ease;
}

.cp-skip:focus {
  transform: translateY(0);
}

.cp-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  color: #64798b;
  font-size: 0.84rem;
  font-weight: 700;
}

.cp-breadcrumbs a {
  color: var(--cp-green-dark);
  text-decoration: none;
}

.cp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cp-green-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.cp-eyebrow::before {
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.cp-eyebrow--light {
  color: #7be0b8;
}

.cp-hero {
  position: relative;
  padding: clamp(34px, 4.5vw, 64px) 0 clamp(52px, 6vw, 76px);
  background:
    radial-gradient(circle at 5% 10%, rgba(11, 143, 99, 0.08), transparent 27%),
    linear-gradient(180deg, #f8fbfd 0%, #fff 100%);
}

.cp-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  gap: clamp(42px, 6vw, 78px);
  align-items: center;
}

.cp-hero__content h1 {
  max-width: 720px;
  margin: 16px 0 20px;
  color: var(--cp-navy-deep);
  font-size: clamp(2.5rem, 4.4vw, 4.45rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.cp-hero__lead {
  max-width: 670px;
  margin: 0;
  color: var(--cp-muted);
  font-size: clamp(1.03rem, 1.5vw, 1.2rem);
  line-height: 1.75;
}

.cp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.cp-btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 12px;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.cp-btn:hover {
  transform: translateY(-2px);
}

.cp-btn--primary {
  color: #fff;
  background: var(--cp-green);
  box-shadow: 0 10px 24px rgba(11, 143, 99, 0.22);
}

.cp-btn--primary:hover {
  color: #fff;
  background: var(--cp-green-dark);
}

.cp-btn--secondary,
.cp-btn--quiet {
  color: var(--cp-navy);
  border-color: #c2d2dd;
  background: #fff;
}

.cp-btn--secondary:hover,
.cp-btn--quiet:hover {
  color: var(--cp-navy-deep);
  border-color: #92aabd;
  background: #f7fafc;
}

.cp-btn--official {
  color: var(--cp-navy-deep);
  background: #7be0b8;
}

.cp-btn--official:hover {
  color: var(--cp-navy-deep);
  background: #99e9c9;
}

.cp-btn--outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
}

.cp-btn--outline-light:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.08);
}

.cp-quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 34px 0 0;
}

.cp-quick-facts div {
  min-width: 150px;
  padding: 3px 26px 3px 0;
}

.cp-quick-facts div + div {
  padding-left: 26px;
  border-left: 1px solid var(--cp-line);
}

.cp-quick-facts dt {
  margin-bottom: 4px;
  color: #708496;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cp-quick-facts dd {
  margin: 0;
  color: var(--cp-navy);
  font-size: 0.92rem;
  font-weight: 800;
}

.cp-quick-facts a {
  color: inherit;
  text-decoration: none;
}

.cp-hero__visual {
  position: relative;
  min-height: 440px;
  margin: 0;
  border-radius: var(--cp-radius-lg);
  box-shadow: var(--cp-shadow);
}

.cp-hero__visual::before {
  position: absolute;
  z-index: 0;
  inset: -16px 18px 18px -16px;
  border: 1px solid rgba(11, 143, 99, 0.22);
  border-radius: var(--cp-radius-lg);
  content: "";
}

.cp-hero__visual img {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: var(--cp-radius-lg);
  object-fit: cover;
  object-position: 59% center;
}

.cp-hero__visual figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  color: var(--cp-navy-deep);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(4, 29, 53, 0.17);
  backdrop-filter: blur(9px);
}

.cp-hero__visual figcaption > span:last-child {
  display: grid;
  gap: 2px;
}

.cp-hero__visual figcaption strong {
  font-size: 0.94rem;
}

.cp-hero__visual figcaption small {
  color: var(--cp-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.cp-visual-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 12px;
  color: var(--cp-green-dark);
  background: var(--cp-mint);
}

.cp-visual-icon svg,
.cp-channel-card__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cp-section {
  padding: clamp(52px, 5vw, 68px) 0;
}

.cp-section--channels {
  background: #fff;
}

.cp-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.cp-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.cp-heading--center .cp-eyebrow {
  justify-content: center;
}

.cp-heading h2 {
  margin: 13px 0 12px;
  color: var(--cp-navy-deep);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.cp-heading p {
  margin: 0;
  color: var(--cp-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.cp-channel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.cp-channel-card {
  position: relative;
  display: grid;
  min-height: 126px;
  grid-template-columns: auto 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 21px;
  border: 1px solid var(--cp-line);
  border-radius: var(--cp-radius-md);
  color: var(--cp-ink);
  background: #fff;
  box-shadow: var(--cp-shadow-soft);
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.cp-channel-card:hover {
  color: var(--cp-ink);
  border-color: rgba(11, 143, 99, 0.5);
  box-shadow: 0 15px 34px rgba(8, 42, 74, 0.13);
  transform: translateY(-3px);
}

.cp-channel-card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  color: var(--cp-green-dark);
  background: var(--cp-mint);
}

.cp-channel-card > span:nth-child(2) {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.cp-channel-card strong {
  color: var(--cp-navy-deep);
  font-size: 0.98rem;
}

.cp-channel-card small {
  overflow-wrap: anywhere;
  color: var(--cp-muted);
  font-size: 0.76rem;
  line-height: 1.4;
}

.cp-channel-card__arrow {
  color: var(--cp-green-dark);
  font-size: 1.25rem;
  font-weight: 800;
}

.cp-direction-panel {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 24px;
  padding: 25px 28px;
  border: 1px solid #d3e2eb;
  border-radius: var(--cp-radius-md);
  background: var(--cp-blue-soft);
}

.cp-direction-panel__label {
  color: var(--cp-green-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cp-direction-panel h3 {
  margin: 5px 0 0;
  color: var(--cp-navy-deep);
  font-size: 1.16rem;
}

.cp-direction-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.cp-direction-list button {
  min-height: 44px;
  padding: 9px 15px;
  border: 1px solid #c2d5e1;
  border-radius: 999px;
  color: var(--cp-navy);
  background: #fff;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
  transition: color 0.16s ease, background-color 0.16s ease, border-color 0.16s ease;
}

.cp-direction-list button:hover,
.cp-direction-list button[aria-pressed="true"] {
  color: #fff;
  border-color: var(--cp-green);
  background: var(--cp-green);
}

.cp-section--form {
  background: #f4f8fb;
}

.cp-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(310px, 1fr);
  gap: 28px;
  align-items: stretch;
}

.cp-form-card {
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--cp-line);
  border-radius: var(--cp-radius-lg);
  background: #fff;
  box-shadow: var(--cp-shadow);
}

.cp-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 21px 18px;
}

.cp-field {
  display: grid;
  gap: 8px;
}

.cp-field--full {
  grid-column: 1 / -1;
}

.cp-field label {
  color: var(--cp-navy-deep);
  font-size: 0.88rem;
  font-weight: 800;
}

.cp-optional {
  color: #718596;
  font-size: 0.76rem;
  font-weight: 600;
}

.cp-field input,
.cp-field select,
.cp-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #bdceda;
  border-radius: 11px;
  color: var(--cp-ink);
  background: #fff;
  font: inherit;
  font-size: 0.96rem;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}

.cp-field textarea {
  min-height: 148px;
  resize: vertical;
  line-height: 1.55;
}

.cp-field input:hover,
.cp-field select:hover,
.cp-field textarea:hover {
  border-color: #8ca7ba;
}

.cp-field input:focus,
.cp-field select:focus,
.cp-field textarea:focus {
  border-color: var(--cp-green);
  outline: none;
  box-shadow: 0 0 0 4px rgba(11, 143, 99, 0.14);
}

.cp-field [aria-invalid="true"] {
  border-color: #b42318;
  background: #fff8f7;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.1);
}

.cp-field small {
  color: #65798b;
  font-size: 0.75rem;
}

.cp-consents {
  display: grid;
  gap: 13px;
  margin-top: 24px;
}

.cp-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  color: #435a6e;
  font-size: 0.82rem;
  line-height: 1.55;
}

.cp-consent input {
  width: 19px;
  height: 19px;
  margin: 2px 0 0;
  accent-color: var(--cp-green);
}

.cp-consent a {
  color: var(--cp-green-dark);
  font-weight: 800;
}

.cp-form-actions {
  margin-top: 25px;
}

.cp-form-actions .cp-btn {
  min-width: 190px;
}

.cp-form-note,
.cp-status {
  margin: 16px 0 0;
  color: #617689;
  font-size: 0.78rem;
  line-height: 1.55;
}

.cp-status:not(:empty) {
  padding: 12px 14px;
  border-radius: 10px;
  color: #075f43;
  background: var(--cp-mint);
  font-weight: 700;
}

.cp-next-card {
  position: relative;
  padding: clamp(28px, 3vw, 38px);
  overflow: hidden;
  border-radius: var(--cp-radius-lg);
  color: #fff;
  background: var(--cp-navy-deep);
  box-shadow: var(--cp-shadow);
}

.cp-next-card::after {
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border: 32px solid rgba(123, 224, 184, 0.08);
  border-radius: 50%;
  content: "";
}

.cp-next-card h2 {
  position: relative;
  z-index: 1;
  margin: 13px 0 28px;
  color: #fff;
  font-size: clamp(1.55rem, 2.3vw, 2.2rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.cp-timeline {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cp-timeline li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  align-items: start;
}

.cp-timeline li > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(123, 224, 184, 0.42);
  border-radius: 50%;
  color: #9ce9ca;
  background: rgba(123, 224, 184, 0.1);
  font-size: 0.82rem;
  font-weight: 800;
}

.cp-timeline strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 0.92rem;
}

.cp-timeline p,
.cp-response-note p,
.cp-safety-note {
  margin: 0;
  color: #c8d7e3;
  font-size: 0.8rem;
  line-height: 1.55;
}

.cp-response-note {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  padding: 16px;
  border: 1px solid rgba(123, 224, 184, 0.28);
  border-radius: 14px;
  background: rgba(123, 224, 184, 0.08);
}

.cp-response-note strong {
  display: block;
  margin-bottom: 5px;
  color: #9ce9ca;
  font-size: 0.82rem;
}

.cp-safety-note {
  position: relative;
  z-index: 1;
  margin-top: 18px;
}

.cp-safety-note strong {
  color: #fff;
}

.cp-section--official {
  color: #fff;
  background: var(--cp-navy-deep);
}

.cp-official-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(350px, 0.88fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: center;
}

.cp-official-grid h2 {
  max-width: 600px;
  margin: 13px 0 18px;
  color: #fff;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.cp-official-statement {
  max-width: 670px;
  margin: 0;
  color: #cad9e4;
  font-size: 1rem;
  line-height: 1.75;
}

.cp-official-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--cp-radius-md);
  background: rgba(255, 255, 255, 0.14);
}

.cp-official-list div {
  min-width: 0;
  padding: 18px;
  background: #0a355b;
}

.cp-official-list dt {
  margin-bottom: 5px;
  color: #9bb2c4;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cp-official-list dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

.cp-official-list a {
  color: #fff;
  text-decoration: none;
}

.cp-copy-status {
  min-height: 1.4em;
  margin: 10px 0 0;
  color: #9ce9ca;
  font-size: 0.8rem;
  font-weight: 700;
}

.cp-section--faq {
  background: #fff;
}

.cp-faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(38px, 7vw, 90px);
  align-items: start;
}

.cp-faq-layout .cp-heading {
  position: sticky;
  top: 110px;
  margin-bottom: 0;
}

.cp-faq-list {
  display: grid;
  gap: 12px;
}

.cp-faq-item {
  overflow: hidden;
  border: 1px solid var(--cp-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(8, 42, 74, 0.05);
}

.cp-faq-item h3 {
  margin: 0;
}

.cp-faq-item button {
  display: flex;
  width: 100%;
  min-height: 62px;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 17px 19px;
  border: 0;
  color: var(--cp-navy-deep);
  background: transparent;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
}

.cp-faq-item button span {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.cp-faq-item button span::before,
.cp-faq-item button span::after {
  position: absolute;
  top: 9px;
  left: 3px;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--cp-green-dark);
  content: "";
}

.cp-faq-item button span::after {
  transform: rotate(90deg);
  transition: transform 0.16s ease;
}

.cp-faq-item button[aria-expanded="true"] span::after {
  transform: rotate(0);
}

.cp-faq-item > div {
  padding: 0 19px 18px;
}

.cp-faq-item p {
  margin: 0;
  color: var(--cp-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.cp-faq-item a {
  color: var(--cp-green-dark);
  font-weight: 800;
}

.cp-final-cta {
  padding-top: 0;
  padding-bottom: 64px;
  background: #fff;
}

.cp-final-panel {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 46px);
  border-radius: var(--cp-radius-lg);
  color: #fff;
  background: var(--cp-navy);
  box-shadow: var(--cp-shadow);
}

.cp-final-panel h2 {
  margin: 10px 0 7px;
  color: #fff;
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  letter-spacing: -0.035em;
}

.cp-final-panel p {
  margin: 0;
  color: #cbd9e4;
}

.cp-final-panel .cp-actions {
  margin-top: 0;
  flex: 0 0 auto;
}

.contact-premium-page :is(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid #f6b84a;
  outline-offset: 3px;
}

@media (max-width: 1050px) {
  .cp-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.9fr);
    gap: 38px;
  }

  .cp-hero__content h1 {
    font-size: clamp(2.35rem, 5vw, 3.5rem);
  }

  .cp-channel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cp-direction-panel {
    grid-template-columns: 1fr;
  }

  .cp-official-grid {
    gap: 44px;
  }
}

@media (max-width: 860px) {
  .cp-container {
    width: min(100% - 32px, 720px);
  }

  .cp-hero {
    padding-top: 26px;
  }

  .cp-hero__grid,
  .cp-form-layout,
  .cp-official-grid,
  .cp-faq-layout {
    grid-template-columns: 1fr;
  }

  .cp-hero__visual {
    min-height: 400px;
  }

  .cp-form-layout {
    gap: 22px;
  }

  .cp-next-card {
    min-height: 0;
  }

  .cp-faq-layout .cp-heading {
    position: static;
  }

  .cp-final-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .cp-container {
    width: min(100% - 28px, 560px);
  }

  .cp-hero {
    padding: 20px 0 58px;
  }

  .cp-breadcrumbs {
    margin-bottom: 22px;
  }

  .cp-hero__content h1 {
    margin-top: 13px;
    font-size: clamp(2.25rem, 12.3vw, 3.1rem);
    line-height: 1.02;
  }

  .cp-hero__lead {
    font-size: 1rem;
    line-height: 1.65;
  }

  .cp-actions,
  .cp-final-panel .cp-actions {
    width: 100%;
  }

  .cp-actions .cp-btn,
  .cp-final-panel .cp-btn {
    width: 100%;
  }

  .cp-quick-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .cp-quick-facts div {
    min-width: 0;
    padding: 0;
  }

  .cp-quick-facts div + div {
    padding-left: 0;
    border-left: 0;
  }

  .cp-quick-facts div:last-child {
    grid-column: 1 / -1;
    padding-top: 14px;
    border-top: 1px solid var(--cp-line);
  }

  .cp-quick-facts dd {
    overflow-wrap: anywhere;
    font-size: 0.86rem;
  }

  .cp-hero__visual {
    min-height: 345px;
  }

  .cp-hero__visual::before {
    inset: -10px 10px 10px -10px;
  }

  .cp-hero__visual figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 13px;
  }

  .cp-hero__visual figcaption small {
    display: none;
  }

  .cp-section {
    padding: 54px 0;
  }

  .cp-heading {
    margin-bottom: 26px;
  }

  .cp-heading h2 {
    font-size: 2rem;
  }

  .cp-channel-grid,
  .cp-form-grid,
  .cp-official-list {
    grid-template-columns: 1fr;
  }

  .cp-channel-card {
    min-height: 96px;
  }

  .cp-direction-panel {
    padding: 22px 18px;
  }

  .cp-direction-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cp-direction-list button {
    padding-inline: 10px;
  }

  .cp-form-card,
  .cp-next-card {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .cp-form-actions .cp-btn {
    min-width: 0;
  }

  .cp-official-grid h2 {
    font-size: 2.15rem;
  }

  .cp-official-list div {
    padding: 16px;
  }

  .cp-faq-item button {
    font-size: 0.89rem;
  }

  .cp-final-panel {
    padding: 26px 20px;
    border-radius: 22px;
  }

  .cp-final-cta {
    padding-top: 0;
    padding-bottom: 54px;
  }
}

@media (max-width: 370px) {
  .cp-container {
    width: calc(100% - 24px);
  }

  .cp-hero__content h1 {
    font-size: 2.18rem;
  }

  .cp-direction-list {
    grid-template-columns: 1fr;
  }

  .cp-channel-card {
    padding: 18px 15px;
  }

  .cp-channel-card__icon {
    width: 42px;
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .cp-btn,
  .cp-channel-card,
  .cp-faq-item button span::after,
  .cp-skip {
    transition: none;
  }
}

@media print {
  .cp-hero__visual,
  .cp-actions,
  .cp-direction-panel,
  .cp-final-cta,
  [data-header],
  [data-footer] {
    display: none !important;
  }

  .cp-section,
  .cp-hero {
    padding: 24px 0;
  }

  .cp-form-layout,
  .cp-official-grid,
  .cp-faq-layout {
    grid-template-columns: 1fr;
  }
}
