@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --color-bg: #fafafa;
  --color-bg-hero: #fffbeb;
  --color-surface: #ffffff;
  --color-text: #18181b;
  --color-text-muted: #52525b;
  --color-text-subtle: #71717a;
  --color-border: #e4e4e7;
  --color-accent: #d97706;
  --color-accent-hover: #b45309;
  --color-accent-soft: #fef3c7;
  --color-accent-border: #fde68a;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.06);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --container: 1120px;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.site-header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand_mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.brand_name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.brand_accent {
  color: var(--color-accent);
}

.brand_name .brand_accent {
  font-size: 1.1em;
}

.brand-word {
  font: inherit;
  letter-spacing: inherit;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.15s;
}

.site-nav a:hover {
  color: var(--color-text);
}

.header_actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (min-width: 961px) {
  .site-header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .site-header_inner > .lang-switch {
    margin-left: auto;
  }
}

.lang-switch {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 999px;
}

.lang-switch a {
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-subtle);
  border-radius: 999px;
  transition: background 0.15s, color 0.15s;
}

.lang-switch a:hover {
  color: var(--color-text);
}

.lang-switch a.is-active {
  background: var(--color-surface);
  color: var(--color-accent);
  box-shadow: var(--shadow-sm);
}

.nav-toggle {
  display: none;
  padding: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  background: var(--color-text);
  border-radius: 1px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.1s;
}

.btn:active {
  transform: translateY(1px);
}

.btn_primary {
  background: var(--color-accent);
  color: #ffffff;
}

.btn_primary:hover {
  background: var(--color-accent-hover);
}

.btn_secondary {
  background: var(--color-surface);
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn_secondary:hover {
  border-color: var(--color-accent-border);
  background: var(--color-accent-soft);
}

.btn_ghost {
  background: transparent;
  color: var(--color-text-muted);
  border-color: var(--color-border);
}

.btn_ghost:hover {
  color: var(--color-text);
  background: var(--color-surface);
}

/* Hero */

.hero {
  padding: 72px 0 88px;
  background: linear-gradient(
    165deg,
    var(--color-bg-hero) 0%,
    #ffffff 48%,
    var(--color-bg) 100%
  );
  border-bottom: 1px solid var(--color-border);
}

.hero_grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero_single {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.hero_single .hero_actions {
  justify-content: center;
}

.hero_single .hero_lead {
  margin-inline: auto;
}

.hero_single .demo-creds {
  margin-inline: auto;
  text-align: center;
}

.hero_title {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero_title em {
  font-style: normal;
  color: var(--color-accent);
}

.hero_lead {
  margin: 0 0 28px;
  max-width: 34rem;
  font-size: 18px;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.hero_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero_formula {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  font-size: 14px;
  color: var(--color-text-muted);
}

.hero_formula strong {
  color: var(--color-text);
}

.hero_formula_arrow {
  color: var(--color-accent);
  font-weight: 700;
}

.formula_block {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 12px 20px;
  max-width: 820px;
  margin-inline: auto;
  padding: 28px 36px;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.formula_block strong {
  font-weight: 700;
}

.formula_block .hero_formula_arrow {
  display: inline-block;
  margin: 0;
  transform: none;
  line-height: 1;
  font-size: 1.15em;
}

.formula_caption {
  margin: 16px 0 0;
  text-align: center;
  font-size: 15px;
  color: var(--color-text-subtle);
}

#formula .section_header {
  margin-inline: auto;
  text-align: center;
}

/* Pain */

.pain-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  max-width: 720px;
}

.pain-list li {
  position: relative;
  padding: 16px 18px 16px 48px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 16px;
  color: var(--color-text-muted);
  box-shadow: var(--shadow-sm);
}

.pain-list li::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 1.15em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* Solution */

.solution-note {
  max-width: 760px;
  margin-inline: auto;
  padding: 24px 28px;
  background: var(--color-accent-soft);
  border: 1px solid var(--color-accent-border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
  text-align: center;
}

.solution-note p {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  color: var(--color-text);
}

/* Compare tables */

.compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  font-size: 15px;
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--color-border);
}

.compare-table thead th {
  background: #fafafa;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-subtle);
}

.compare-table tbody th {
  font-weight: 600;
  color: var(--color-text);
  background: #fafafa;
  white-space: nowrap;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table td {
  color: var(--color-text-muted);
}

.compare-table td.is-accent {
  color: var(--color-text);
  font-weight: 600;
}

.compare-table_wide {
  min-width: 640px;
}

.hero_visual {
  display: grid;
  gap: 16px;
}

.metric-card {
  padding: 22px 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.metric-card_title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-accent);
}

.metric-card_text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-muted);
}

/* Sections */

.section {
  padding: 88px 0;
}

.section_alt {
  background: var(--color-surface);
  border-block: 1px solid var(--color-border);
}

.section_header {
  max-width: 40rem;
  margin-bottom: 48px;
}

#vs-direct .section_header {
  max-width: 48rem;
}

.section_label {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-subtle);
}

.section_title {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-wrap: balance;
}

.nowrap {
  white-space: nowrap;
}

.section_lead {
  margin: 0;
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 28px 24px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.section_alt .feature-card {
  background: var(--color-surface);
}

.feature-card_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  font-size: 20px;
  background: var(--color-accent-soft);
  border-radius: 12px;
}

.feature-card_title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
}

.feature-card_text {
  margin: 0;
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}

.step-card {
  position: relative;
  padding: 24px 20px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.section_alt .step-card {
  background: var(--color-surface);
}

.step-card::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
  background: var(--color-accent-soft);
  border-radius: 999px;
}

.step-card_title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
}

.step-card_text {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* Pricing */

.pricing-card {
  max-width: 520px;
  margin-inline: auto;
  padding: 36px 32px;
  text-align: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.pricing-card_plan {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
}

.pricing-card_price {
  margin: 0 0 8px;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-card_price small {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text-subtle);
}

.pricing-card_note {
  margin: 0 0 24px;
  font-size: 15px;
  color: var(--color-text-muted);
}

.pricing-list {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  text-align: left;
}

.pricing-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 15px;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}

.pricing-list li:last-child {
  border-bottom: none;
}

.pricing-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* Audience */

.audience-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-list li {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  color: var(--color-text-muted);
}

.audience-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* CTA */

.cta {
  padding: 72px 0;
  background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
  border-top: 1px solid var(--color-border);
}

.cta_inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px 48px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.cta_title {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.cta_text {
  margin: 0;
  font-size: 16px;
  color: var(--color-text-muted);
}

.cta_text + .cta_text {
  margin-top: 12px;
}

.cta_copy .cta_actions {
  margin-top: 20px;
}

.cta_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta_admin {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding-top: 8px;
  border-top: 1px solid var(--color-border);
}

.cta_video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.cta_video_player {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.cta_video_slot {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  text-align: center;
  background: linear-gradient(135deg, #fffbeb 0%, #f4f4f5 100%);
}

.cta_video_slot[hidden] {
  display: none;
}

.cta_video_slot_title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text);
}

.cta_video_slot_text {
  margin: 0;
  max-width: 22em;
  font-size: 14px;
  color: var(--color-text-muted);
}

.cta_admin_copy .cta_actions {
  margin-top: 16px;
}

.cta_admin_copy .contact-links {
  margin-top: 16px;
}

.demo-creds {
  margin-top: 20px;
  max-width: 36em;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.demo-creds p {
  margin: 0 0 6px;
}

.demo-creds a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.demo-creds a:hover {
  color: var(--color-text);
}

.demo-creds_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin-top: 20px;
}

.contact-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-accent);
}

.contact-links a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

/* Footer */

.site-footer {
  padding: 32px 0 40px;
  border-top: 1px solid var(--color-border);
}

.site-footer_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--color-text-subtle);
}

.site-footer_links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.site-footer_links a {
  color: var(--color-text-subtle);
  transition: color 0.15s;
}

.site-footer_links a:hover {
  color: var(--color-accent);
}

/* Legal / offer pages */

.legal-page {
  padding: 48px 0 72px;
}

.legal-page > .container {
  max-width: 44rem;
}

.legal-page_meta {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--color-text-subtle);
  text-align: left;
}

.legal-page_title {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-align: left;
}

.legal-page_lead {
  margin: 0 0 28px;
  font-size: 16px;
  color: var(--color-text-muted);
  text-align: left;
}

.legal-page_note {
  margin: 0 0 32px;
  padding: 14px 16px;
  font-size: 14px;
  color: #92400e;
  background: var(--color-accent-soft);
  border: 1px solid var(--color-accent-border);
  border-radius: var(--radius-sm);
  text-align: left;
}

.legal-doc {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.legal-doc a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.legal-doc a:hover {
  color: var(--color-text);
}

.legal-doc h2 {
  margin: 28px 0 12px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: left;
}

.legal-doc h2:first-child {
  margin-top: 0;
}

.legal-doc p,
.legal-doc li {
  margin: 0 0 10px;
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.legal-doc ol,
.legal-doc ul {
  margin: 0 0 12px;
  padding-left: 1.5rem;
  text-align: justify;
}

.legal-doc li {
  margin-bottom: 6px;
  padding-left: 0.25rem;
}

.legal-doc li::marker {
  color: var(--color-text);
}

.legal-doc strong {
  color: var(--color-text);
  font-weight: 600;
}

@media (max-width: 640px) {
  .legal-doc {
    text-align: left;
    hyphens: none;
  }

  .legal-doc ol,
  .legal-doc ul {
    text-align: left;
  }
}

/* Tablet & mobile */

@media (max-width: 960px) {
  .hero_grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cta_inner {
    align-items: stretch;
    padding: 32px 28px;
  }

  .cta_admin {
    grid-template-columns: 1fr;
  }

  /* Header: hamburger menu from tablet width */
  .site-header {
    height: auto;
    min-height: var(--header-h);
  }

  .site-header_inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: 'brand toggle';
    align-items: center;
    column-gap: 12px;
    height: auto;
    min-height: var(--header-h);
    padding-block: 12px;
    justify-content: unset;
  }

  .brand {
    grid-area: brand;
    min-width: 0;
    flex-shrink: 1;
  }

  .brand_name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .lang-switch {
    display: none;
  }

  .nav-toggle {
    display: block;
    grid-area: toggle;
    flex-shrink: 0;
    justify-self: end;
  }

  .site-nav,
  .header_actions {
    display: none;
    grid-column: 1 / -1;
  }

  .site-header.is-open .lang-switch {
    display: flex;
    grid-column: 1 / -1;
    order: 1;
    padding-top: 12px;
    margin-top: 8px;
    border-top: 1px solid var(--color-border);
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header_actions {
    display: flex;
  }

  .site-header.is-open .site-nav {
    flex-direction: column;
    align-items: stretch;
    order: 2;
    padding-top: 12px;
    gap: 4px;
  }

  .site-header.is-open .site-nav a {
    padding: 10px 0;
    font-size: 16px;
  }

  .site-header.is-open .header_actions {
    flex-direction: column;
    align-items: stretch;
    order: 3;
    gap: 12px;
    padding-top: 16px;
    padding-bottom: 4px;
  }

  .site-header.is-open .header_actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .brand_name {
    font-size: 20px;
  }

  .hero {
    padding: 40px 0 56px;
  }

  .hero_lead {
    font-size: 16px;
  }

  .hero_actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero_actions .btn {
    width: 100%;
    justify-content: center;
  }

  .demo-creds_actions {
    flex-direction: column;
  }

  .demo-creds_actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero_formula {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    text-align: center;
    gap: 2px;
    padding: 16px;
    font-size: 13px;
  }

  .hero_formula_arrow {
    display: inline-block;
    margin: 0;
    transform: rotate(90deg);
    line-height: 1;
  }

  .formula_block {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 4px;
    padding: 20px 16px;
    font-size: 1.15rem;
  }

  .formula_block .hero_formula_arrow {
    transform: rotate(90deg);
    font-size: 1em;
  }

  .pain-list {
    max-width: none;
  }

  .pain-list li {
    font-size: 15px;
    padding: 14px 14px 14px 42px;
  }

  .solution-note p {
    font-size: 16px;
  }

  .section {
    padding: 56px 0;
  }

  .section_header {
    margin-bottom: 32px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 28px 20px;
  }

  .pricing-card_price {
    font-size: 40px;
  }

  .cta {
    padding: 48px 0;
  }

  .cta_inner {
    padding: 24px 20px;
  }

  .cta_admin {
    gap: 20px;
  }

  .cta_title {
    font-size: 24px;
  }

  .cta_actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .cta_actions .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-links {
    flex-direction: column;
    gap: 8px;
  }

  .site-footer_inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.copy-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 200;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: var(--color-text);
  color: #fff;
  font-size: 14px;
  line-height: 1.3;
  transform: translateX(-50%) translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}

.copy-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
