:root {
  --im-speak-brand: var(--brand-primary, #0033a1);
  --im-speak-brand-dark: #002580;
  --im-speak-aqua: #0099a8;
  --im-speak-surface: #ffffff;
  --im-speak-background: #f5f7fb;
  --im-speak-text: #263238;
  --im-speak-muted: #5f6f7d;
  --im-speak-border: #d8e1ec;
  --im-speak-gradient: linear-gradient(135deg, #0033a1 0%, #0099a8 100%);
  --im-speak-shadow: 0 20px 50px rgba(0, 35, 110, 0.12);
  --im-speak-radius: 18px;
}

.speak-up-page {
  background:
    radial-gradient(circle at top right, rgba(0, 153, 168, 0.12), transparent 28%),
    linear-gradient(180deg, #f9fbff 0%, #eef3f9 100%);
}

.speak-up-page__inner {
  width: min(1120px, calc(100% - 2rem));
  margin: -4rem auto 0;
  padding-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.speak-up-page__intro {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(216, 225, 236, 0.9);
  border-radius: var(--im-speak-radius);
  box-shadow: var(--im-speak-shadow);
  margin-bottom: 2rem;
  padding: 1.5rem clamp(1.25rem, 3vw, 2rem);
}

.speak-up-page__intro > * + * {
  margin-top: 1rem;
}

.speak-up-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6rem) 1rem 6.5rem;
  background: var(--im-speak-gradient);
}

.speak-up-hero::before,
.speak-up-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.speak-up-hero::before {
  width: 18rem;
  height: 18rem;
  top: -6rem;
  right: -4rem;
}

.speak-up-hero::after {
  width: 24rem;
  height: 24rem;
  bottom: -12rem;
  left: -6rem;
}

.speak-up-hero__content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.speak-up-hero__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 1.9rem;
}

.speak-up-hero__title {
  margin: 1rem 0 0;
  color: inherit;
  font-size: clamp(2.25rem, 6vw, 4rem);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.speak-up-hero__description {
  width: min(620px, 100%);
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.7;
}

.speak-up-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.8rem 1.35rem;
  border: 0;
  border-radius: 999px;
  background: var(--im-speak-gradient);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
  box-shadow: 0 12px 24px rgba(0, 51, 161, 0.16);
}

.speak-up-button:hover,
.speak-up-button:focus-visible {
  color: #fff;
  opacity: 0.96;
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(0, 51, 161, 0.22);
}

.speak-up-button:focus-visible,
.speak-up-card:focus-visible {
  outline: 3px solid rgba(0, 153, 168, 0.35);
  outline-offset: 3px;
}

.speak-up-button--hero {
  margin-top: 1.5rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.speak-up-selector {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(216, 225, 236, 0.9);
  border-radius: var(--im-speak-radius);
  box-shadow: var(--im-speak-shadow);
  margin-bottom: 1.5rem;
  padding: clamp(1.5rem, 4vw, 2rem);
}

.speak-up-selector__intro {
  text-align: center;
}

.speak-up-selector__label {
  margin: 0;
  color: var(--im-speak-text);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.speak-up-selector__description {
  width: min(720px, 100%);
  margin: 0.75rem auto 0;
  color: var(--im-speak-muted);
  line-height: 1.7;
}

.speak-up-selector__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.speak-up-card {
  width: 100%;
  padding: 1.5rem;
  border: 1px solid var(--im-speak-border);
  border-radius: calc(var(--im-speak-radius) - 4px);
  background: #fff;
  color: var(--im-speak-text);
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.speak-up-card:hover,
.speak-up-card.is-active {
  border-color: rgba(0, 51, 161, 0.35);
  background: linear-gradient(180deg, rgba(230, 238, 249, 0.45) 0%, #ffffff 100%);
  box-shadow: 0 18px 36px rgba(0, 51, 161, 0.12);
  transform: translateY(-2px);
}

.speak-up-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(0, 51, 161, 0.08);
  font-size: 1.5rem;
}

.speak-up-card__title,
.speak-up-card__description,
.speak-up-card__badge {
  display: block;
}

.speak-up-card__title {
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.speak-up-card__description {
  margin-top: 0.5rem;
  color: var(--im-speak-muted);
  line-height: 1.6;
}

.speak-up-card__badge {
  margin-top: 1rem;
  width: fit-content;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 153, 168, 0.1);
  color: var(--im-speak-brand-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.speak-up-panel {
  margin-top: 1.5rem;
}

.speak-up-panel[hidden] {
  display: none;
}

.speak-up-panel__shell {
  overflow: hidden;
  border: 1px solid rgba(216, 225, 236, 0.9);
  border-radius: var(--im-speak-radius);
  background: var(--im-speak-surface);
  box-shadow: var(--im-speak-shadow);
}

.speak-up-panel__header {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem clamp(1.25rem, 3vw, 2rem);
  background: var(--im-speak-gradient);
  color: #fff;
}

.speak-up-panel__header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 1.4rem;
}

.speak-up-panel__title {
  margin: 0;
  color: inherit;
  font-size: 1.35rem;
}

.speak-up-panel__subtitle {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
}

.speak-up-panel__body {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.speak-up-panel__intro {
  color: var(--im-speak-muted);
  line-height: 1.8;
}

.speak-up-panel__intro > *:first-child,
.speak-up-panel__footer-text > *:first-child,
.speak-up-trust__description > *:first-child {
  margin-top: 0;
}

.speak-up-panel__intro > *:last-child,
.speak-up-panel__footer-text > *:last-child,
.speak-up-trust__description > *:last-child {
  margin-bottom: 0;
}

.speak-up-process,
.speak-up-channels {
  margin-top: 1.75rem;
}

.speak-up-section-label {
  margin: 0 0 1rem;
  color: var(--im-speak-text);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.speak-up-process__list {
  list-style: none;
  margin: 0;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  border-radius: calc(var(--im-speak-radius) - 6px);
  background: #f1f6ff;
}

.speak-up-process__item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.speak-up-process__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--im-speak-gradient);
  color: #fff;
  font-weight: 700;
}

.speak-up-process__title {
  margin: 0;
  color: var(--im-speak-brand);
  font-size: 0.95rem;
}

.speak-up-process__description,
.speak-up-process__time {
  margin: 0.25rem 0 0;
  color: var(--im-speak-muted);
  line-height: 1.5;
  font-size: 0.92rem;
}

.speak-up-channel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.speak-up-channel {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: calc(var(--im-speak-radius) - 8px);
  background: #f8fbff;
  border: 1px solid rgba(216, 225, 236, 0.85);
}

.speak-up-channel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(0, 51, 161, 0.08);
  font-size: 1.1rem;
}

.speak-up-channel__type,
.speak-up-channel__label,
.speak-up-channel__value {
  margin: 0;
}

.speak-up-channel__type {
  color: var(--im-speak-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.speak-up-channel__label {
  margin-top: 0.2rem;
  color: var(--im-speak-text);
  font-weight: 700;
}

.speak-up-channel__value {
  display: inline-block;
  margin-top: 0.25rem;
  color: var(--im-speak-brand);
  line-height: 1.6;
  text-decoration: none;
}

.speak-up-channel__value:hover,
.speak-up-channel__value:focus-visible,
.speak-up-panel__footer-link:hover,
.speak-up-panel__footer-link:focus-visible {
  text-decoration: underline;
}

.speak-up-panel__cta {
  margin-top: 1.5rem;
}

.speak-up-panel__footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--im-speak-border);
}

.speak-up-panel__footer-text {
  color: var(--im-speak-muted);
  line-height: 1.7;
}

.speak-up-panel__footer-link {
  flex-shrink: 0;
  color: var(--im-speak-brand);
  font-weight: 700;
  text-decoration: none;
}

.speak-up-trust {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 1.75rem;
  padding: 1.5rem clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--im-speak-radius);
  background: var(--im-speak-gradient);
  color: #fff;
  box-shadow: var(--im-speak-shadow);
}

.speak-up-trust__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 1.35rem;
}

.speak-up-trust__title {
  margin: 0;
  color: inherit;
  font-size: 1.2rem;
}

.speak-up-trust__description {
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .speak-up-process__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .speak-up-page__inner {
    width: min(100% - 1rem, 100%);
    margin-top: -3rem;
  }

  .speak-up-selector__grid {
    grid-template-columns: 1fr;
  }

  .speak-up-panel__header,
  .speak-up-panel__footer,
  .speak-up-trust {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 580px) {
  .speak-up-hero {
    padding-bottom: 5.5rem;
  }

  .speak-up-process__list {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .speak-up-button,
  .speak-up-card,
  .speak-up-panel {
    transition: none;
  }

  html:focus-within {
    scroll-behavior: auto;
  }
}