/* SendCarrierPacket.com — carrier public landing */
:root {
    --bg: #f4f8fb;
    --bg-soft: linear-gradient(180deg, #f0f9ff 0%, #f8fafc 42%, #f1f5f9 100%);
    --surface: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --muted-light: #94a3b8;
    --line: #e2e8f0;
    --line-soft: #f1f5f9;
    --primary: #0d9488;
    --primary-hover: #0f766e;
    --primary-soft: #ccfbf1;
    --accent: #0ea5e9;
    --accent-soft: #e0f2fe;
    --success: #059669;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 16px -4px rgba(15, 23, 42, 0.08), 0 2px 6px -2px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 20px 40px -16px rgba(15, 23, 42, 0.12), 0 8px 16px -8px rgba(15, 23, 42, 0.06);
    --radius: 14px;
    --radius-sm: 10px;
    --radius-pill: 999px;
    --font: "DM Sans", system-ui, sans-serif;
    --display: "Outfit", var(--font);
    --max: 1120px;
    --header-h: 64px;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.55;
    color: var(--text);
    background: var(--bg-soft);
    -webkit-font-smoothing: antialiased;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
  }
  a:hover {
    text-decoration: underline;
  }
  
  .skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 9999;
    padding: 8px 16px;
    background: var(--surface);
    color: var(--text);
  }
  .skip-link:focus {
    left: 12px;
    top: 12px;
  }
  
  /* —— Header —— */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-h);
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  }
  
  .site-header__inner {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  
  .site-logo {
    font-family: var(--display);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: -0.03em;
    color: var(--text);
    text-decoration: none;
    white-space: nowrap;
  }
  .site-logo:hover {
    color: var(--primary);
    text-decoration: none;
  }
  
  .site-nav {
    display: flex;
    align-items: center;
    gap: 6px 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  
  .site-nav a {
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    text-decoration: none;
  }
  .site-nav a:hover {
    color: var(--text);
    text-decoration: none;
  }
  
  .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    color: #fff !important;
    background: linear-gradient(135deg, var(--primary), #14b8a6);
    box-shadow: 0 4px 14px -4px rgba(13, 148, 136, 0.55);
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }
  .nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px -4px rgba(13, 148, 136, 0.5);
    text-decoration: none !important;
  }
  
  @media (max-width: 768px) {
    .site-nav {
      overflow-x: auto;
      flex-wrap: nowrap;
      max-width: min(100%, calc(100vw - 148px));
      justify-content: flex-end;
      gap: 12px;
      padding-bottom: 2px;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: thin;
    }
    .site-nav__link {
      flex-shrink: 0;
    }
  }
  
  /* —— Sections shared —— */
  .section {
    padding: 72px 20px;
    scroll-margin-top: calc(var(--header-h) + 12px);
  }
  
  .section__inner {
    max-width: var(--max);
    margin: 0 auto;
  }
  
  .section__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
  }
  
  .section__title {
    font-family: var(--display);
    font-size: clamp(1.65rem, 4vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 14px;
  }
  
  .section__lead {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 56ch;
    margin-bottom: 0;
  }
  
  /* —— Hero —— */
  .hero {
    padding: 48px 20px 72px;
    scroll-margin-top: var(--header-h);
  }
  
  .hero__inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
  
  @media (max-width: 960px) {
    .hero__inner {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  }
  
  .hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #0f766e;
    background: var(--primary-soft);
    border: 1px solid rgba(45, 212, 191, 0.45);
    margin-bottom: 16px;
  }
  
  .hero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
  }
  
  .hero__title {
    font-family: var(--display);
    font-size: clamp(2rem, 5vw, 2.85rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.08;
    color: var(--text);
    margin-bottom: 16px;
  }
  
  .hero__title em {
    font-style: normal;
    color: var(--primary);
  }
  
  .hero__sub {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--muted);
    max-width: 38rem;
    margin-bottom: 28px;
  }
  
  .hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 18px;
    margin-bottom: 16px;
  }
  
  .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #14b8a6);
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 22px -6px rgba(13, 148, 136, 0.55);
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px -6px rgba(13, 148, 136, 0.5);
    text-decoration: none;
    color: #fff;
  }
  
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 14px 22px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--line);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.15s, background 0.15s;
  }
  .btn-secondary:hover {
    border-color: #cbd5e1;
    background: var(--line-soft);
    text-decoration: none;
    color: var(--text);
  }
  
  .hero__trust-line {
    font-size: 14px;
    color: var(--muted-light);
  }
  
  .hero__trust-line strong {
    color: var(--muted);
    font-weight: 600;
  }
  
  /* Mock browser */
  .hero-mock {
    border-radius: 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
  }
  
  .hero-mock__chrome {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: linear-gradient(180deg, #f8fafc, #f1f5f9);
    border-bottom: 1px solid var(--line);
  }
  
  .hero-mock__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e2e8f0;
  }
  .hero-mock__dot:nth-child(1) {
    background: #fca5a5;
  }
  .hero-mock__dot:nth-child(2) {
    background: #fcd34d;
  }
  .hero-mock__dot:nth-child(3) {
    background: #86efac;
  }
  
  .hero-mock__url {
    flex: 1;
    text-align: center;
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
  }
  
  .hero-mock__body {
    padding: 18px;
    display: grid;
    gap: 12px;
    background: linear-gradient(180deg, #fafbfc 0%, #fff 30%);
  }
  
  .mock-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  .mock-card {
    flex: 1;
    min-width: 120px;
    padding: 12px 14px;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-sm);
  }
  
  .mock-card--accent {
    border-color: rgba(45, 212, 191, 0.35);
    background: linear-gradient(135deg, #f0fdfa, #fff);
  }
  
  .mock-card__label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted-light);
    margin-bottom: 6px;
  }
  
  .mock-card__value {
    font-family: var(--display);
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
  }
  
  .mock-list {
    border-radius: 10px;
    border: 1px solid var(--line);
    overflow: hidden;
    background: var(--surface);
  }
  
  .mock-list__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    font-size: 12px;
    border-bottom: 1px solid var(--line-soft);
    color: var(--muted);
  }
  .mock-list__item:last-child {
    border-bottom: none;
  }
  
  .mock-list__name {
    font-weight: 600;
    color: var(--text);
  }
  
  .mock-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), #38bdf8);
    box-shadow: 0 4px 14px -4px rgba(14, 165, 233, 0.45);
  }
  
  /* —— Trust strip —— */
  .trust-strip {
    padding: 20px 20px 28px;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    background: rgba(255, 255, 255, 0.65);
  }
  
  .trust-strip__inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
  
  @media (max-width: 900px) {
    .trust-strip__inner {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 480px) {
    .trust-strip__inner {
      grid-template-columns: 1fr;
    }
  }
  
  .trust-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    background: var(--surface);
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-sm);
  }
  
  .trust-item__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: var(--accent-soft);
    color: var(--accent);
  }
  
  .trust-item__text {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text);
  }
  
  .trust-item__text span {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
    margin-top: 2px;
  }
  
  /* —— Pain —— */
  .pain {
    background: var(--surface);
  }
  
  .pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
  }
  
  @media (max-width: 768px) {
    .pain-grid {
      grid-template-columns: 1fr;
    }
  }
  
  .pain-card {
    padding: 22px 22px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    box-shadow: var(--shadow-sm);
  }
  
  .pain-card h3 {
    font-family: var(--display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
  }
  
  .pain-card p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.55;
  }
  
  /* —— Solution steps —— */
  .solution {
    background: transparent;
  }
  
  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 40px;
    counter-reset: step;
  }
  
  @media (max-width: 900px) {
    .steps {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 520px) {
    .steps {
      grid-template-columns: 1fr;
    }
  }
  
  .step-card {
    position: relative;
    padding: 24px 20px 22px;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  
  .step-card::before {
    counter-increment: step;
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-family: var(--display);
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #2dd4bf);
    margin-bottom: 14px;
  }
  
  .step-card h3 {
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
  }
  
  .step-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
  }
  
  .step-card--full {
    grid-column: 1 / -1;
    max-width: 100%;
  }
  
  /* —— Features —— */
  .features {
    background: var(--surface);
  }
  
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 40px;
  }
  
  @media (max-width: 960px) {
    .feature-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 520px) {
    .feature-grid {
      grid-template-columns: 1fr;
    }
  }
  
  .feature-card {
    padding: 22px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .feature-card:hover {
    border-color: rgba(45, 212, 191, 0.4);
    box-shadow: var(--shadow-md);
  }
  
  .feature-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--primary-soft);
    color: var(--primary-hover);
    display: grid;
    place-items: center;
    margin-bottom: 14px;
  }
  
  .feature-card h3 {
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
  }
  
  .feature-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
  }
  
  /* —— Free tier —— */
  .free-tier {
    background: linear-gradient(180deg, #ecfdf5 0%, #f0fdfa 40%, #fff 100%);
    border-top: 1px solid rgba(167, 243, 208, 0.6);
    border-bottom: 1px solid rgba(167, 243, 208, 0.5);
  }
  
  .free-tier__box {
    margin-top: 32px;
    padding: 32px 28px 36px;
    border-radius: 20px;
    background: var(--surface);
    border: 1px solid rgba(52, 211, 153, 0.35);
    box-shadow: 0 20px 50px -24px rgba(5, 150, 105, 0.25);
    max-width: 640px;
  }
  
  .free-tier__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    margin-bottom: 22px;
  }
  
  .free-tier__head h3 {
    font-family: var(--display);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
  }
  
  .free-badge {
    display: inline-flex;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #065f46;
    background: #d1fae5;
    border: 1px solid #6ee7b7;
  }
  
  .free-list {
    list-style: none;
    display: grid;
    gap: 12px;
  }
  
  .free-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
  }
  
  .free-list li::before {
    content: "";
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    border-radius: 6px;
    background: var(--success) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
  }
  
  .free-tier__note {
    margin-top: 20px;
    font-size: 14px;
    color: var(--muted);
    max-width: 48ch;
  }
  
  /* —— Dashboard preview —— */
  .preview {
    background: #f8fafc;
  }
  
  .preview-mock {
    margin-top: 40px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
  }
  
  .preview-mock__top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, #fff, #f8fafc);
  }
  
  .preview-mock__title {
    font-family: var(--display);
    font-size: 1.1rem;
    font-weight: 800;
  }
  
  .preview-mock__meta {
    font-size: 13px;
    color: var(--muted);
  }
  
  .preview-mock__grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 320px;
  }
  
  @media (max-width: 768px) {
    .preview-mock__grid {
      grid-template-columns: 1fr;
    }
  }
  
  .preview-sidebar {
    padding: 16px;
    border-right: 1px solid var(--line);
    background: #f8fafc;
  }
  
  .preview-sidebar__item {
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 4px;
  }
  
  .preview-sidebar__item--active {
    background: #fff;
    color: var(--primary-hover);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
  }
  
  .preview-main {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .preview-profile {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  
  @media (max-width: 600px) {
    .preview-profile {
      grid-template-columns: 1fr;
    }
  }
  
  .preview-stat {
    padding: 14px;
    border-radius: 12px;
    background: var(--line-soft);
    border: 1px solid var(--line);
  }
  
  .preview-stat__k {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted);
    margin-bottom: 4px;
  }
  
  .preview-stat__v {
    font-family: var(--display);
    font-size: 15px;
    font-weight: 700;
  }
  
  .preview-docs {
    border-radius: 12px;
    border: 1px solid var(--line);
    overflow: hidden;
  }
  
  .preview-docs__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: #fafbfc;
    font-size: 13px;
    font-weight: 700;
  }
  
  .preview-docs__rows {
    padding: 0;
  }
  
  .preview-doc-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    font-size: 13px;
    border-top: 1px solid var(--line-soft);
  }
  
  .preview-doc-row span:first-child {
    font-weight: 600;
    color: var(--text);
  }
  
  .preview-doc-row span:last-child {
    font-size: 12px;
    color: var(--success);
    font-weight: 600;
  }
  
  .preview-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
  }
  
  .preview-actions .btn-primary {
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .preview-history {
    font-size: 12px;
    color: var(--muted);
    padding-top: 8px;
    border-top: 1px dashed var(--line);
  }
  
  .preview-history strong {
    color: var(--text);
  }
  
  /* —— Reassurance —— */
  .reassurance {
    background: var(--surface);
  }
  
  .reassurance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 36px;
  }
  
  @media (max-width: 640px) {
    .reassurance-grid {
      grid-template-columns: 1fr;
    }
  }
  
  .reassurance-card {
    padding: 22px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: linear-gradient(135deg, #fafbfc 0%, #fff 100%);
  }
  
  .reassurance-card p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.55;
  }
  
  .reassurance-card strong {
    display: block;
    font-family: var(--display);
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 8px;
  }
  
  /* —— FAQ —— */
  .faq {
    background: #f8fafc;
  }
  
  .faq-list {
    margin-top: 32px;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .faq-item {
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: var(--surface);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
  }
  
  .faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 18px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  
  .faq-item summary::-webkit-details-marker {
    display: none;
  }
  
  .faq-item summary::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--muted);
    border-bottom: 2px solid var(--muted);
    transform: rotate(45deg);
    flex-shrink: 0;
    transition: transform 0.2s;
  }
  
  .faq-item[open] summary::after {
    transform: rotate(-135deg);
  }
  
  .faq-item__body {
    padding: 0 18px 16px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.55;
  }
  
  /* —— Final CTA —— */
  .final-cta {
    padding: 72px 20px 80px;
    text-align: center;
    background: linear-gradient(180deg, #0f766e 0%, #0d9488 45%, #14b8a6 100%);
    color: #fff;
  }
  
  .final-cta__inner {
    max-width: 560px;
    margin: 0 auto;
  }
  
  .final-cta h2 {
    font-family: var(--display);
    font-size: clamp(1.65rem, 4vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 14px;
  }
  
  .final-cta p {
    font-size: 1.05rem;
    opacity: 0.95;
    margin-bottom: 24px;
    line-height: 1.55;
  }
  
  .final-cta .btn-primary {
    background: #fff;
    color: var(--primary-hover);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
  }
  .final-cta .btn-primary:hover {
    background: #f0fdfa;
    color: #115e59;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  }
  
  .final-cta__badge {
    display: inline-block;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 600;
    opacity: 0.9;
  }
  
  /* —— Footer —— */
  .site-footer {
    padding: 28px 20px 36px;
    background: #0f172a;
    color: #94a3b8;
    text-align: center;
    font-size: 13px;
  }
  
  .site-footer a {
    color: #e2e8f0;
    font-weight: 500;
  }
  .site-footer__brand {
    font-family: var(--display);
    font-weight: 800;
    color: #fff;
    font-size: 15px;
    margin-bottom: 10px;
  }
  .site-footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
    margin-bottom: 14px;
  }
  .site-footer__links a {
    text-decoration: none;
  }
  .site-footer__links a:hover {
    text-decoration: underline;
  }
  