/*
 * Carrio LP — 専用スタイルシート
 */

/* =======================================

Design Tokens

========================================== */
:root {
  --carrio-orange: #ED6A2C;
  --carrio-orange-deep: #D45A22;
  --carrio-orange-soft: #FFE9DC;
  --carrio-orange-faint: #FFF6F0;
  --ink-900: #1F1A17;
  --ink-700: #38312D;
  --ink-500: #6B625C;
  --ink-300: #B9B2AC;
  --ink-150: #E6E1DC;
  --ink-100: #F2EEE8;
  --ink-50: #FAF7F2;
  --paper: #FFFFFF;
  --jp-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  --en-display: "Manrope", "Inter", -apple-system, system-ui, sans-serif;
}

/* =======================================

Base

========================================== */
.carrio-lp,
.carrio-lp * {
  box-sizing: border-box;
}

.carrio-lp {
  background: #fff;
  color: var(--ink-900);
  font-family: var(--jp-sans);
  overflow: visible;
  text-align: left;
  width: 100%;
}

.carrio-lp a {
  color: inherit;
  text-decoration: none;
}

.carrio-lp img {
  display: block;
  max-width: 100%;
}

.carrio-lp h1,
.carrio-lp h2,
.carrio-lp h3,
.carrio-lp p {
  margin: 0;
  padding: 0;
}

.carrio-lp button {
  border: none;
  cursor: pointer;
  font-family: var(--jp-sans);
}

.carrio-lp,
.carrio-lp p,
.carrio-lp h1,
.carrio-lp h2,
.carrio-lp h3,
.carrio-lp li,
.carrio-lp th,
.carrio-lp td {
  text-align: left;
}

/* =======================================

Common Parts

========================================== */
.c-eyebrow {
  color: var(--carrio-orange-deep);
  display: block;
  font-family: var(--en-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2em;
}

.c-head {
  margin-bottom: 36px;
  text-align: center;
}

.c-head h2 {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -.01em;
  margin: 8px 0;
  text-align: center;
}

.c-head p {
  color: var(--ink-500);
  font-size: 14px;
  text-align: center;
}

.c-head .c-eyebrow {
  text-align: center;
}

.c-btn {
  align-items: center;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--jp-sans);
  font-size: 14.5px;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  line-height: 1.4;
  padding: 16px 30px;
  text-align: center;
}

.c-btn--primary {
  background: linear-gradient(135deg, #F58A4F 0%, #ED6A2C 50%, #D45A22 100%);
  box-shadow: 0 10px 24px rgba(237, 106, 44, .32);
  color: #fff;
}

.c-btn--outline {
  background: #fff;
  border: 1px solid rgba(31, 26, 23, .10);
  color: var(--ink-900);
  padding: 15px 28px;
}

.c-icon {
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
}

/* =======================================

Hero

========================================== */
.c-hero {
  background: linear-gradient(180deg, #FFFAF5 0%, #FFFFFF 70%);
  overflow: hidden;
  padding: 128px 0 88px;
  position: relative;
}

.c-hero__deco {
  border-radius: 50%;
  pointer-events: none;
  position: absolute;
}

.c-hero__deco--1 {
  background: radial-gradient(circle at 50% 50%, rgba(237, 106, 44, .28) 0%, rgba(237, 106, 44, .05) 40%, transparent 70%);
  height: 700px;
  right: -180px;
  top: -80px;
  width: 700px;
}

.c-hero__deco--2 {
  background: radial-gradient(circle at 50% 50%, rgba(255, 170, 90, .22) 0%, transparent 70%);
  bottom: -60px;
  height: 360px;
  right: 120px;
  width: 360px;
}

.c-hero__inner {
  align-items: center;
  display: flex;
  gap: 48px;
  margin: 0 auto;
  max-width: 1280px;
  padding-left: 56px;
  padding-right: 56px;
  position: relative;
}

.c-hero__content {
  flex: 1;
  min-width: 500px;
}

.c-hero__visual {
  align-items: center;
  display: flex;
  flex: 0 0 45%;
  justify-content: center;
}

.c-hero__img {
  border-radius: 16px;
  height: auto;
  width: 100%;
}

.c-hero__logo {
  height: 90px;
  margin-left: -6px;
  width: auto;
}

.c-hero__logo-wrap {
  align-items: center;
  display: flex;
  gap: 16px;
}

.c-hero__sublogo {
  color: var(--ink-700);
  font-family: var(--en-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.2;
  white-space: nowrap;
}

.c-hero__heading {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -.01em;
  line-height: 1.22;
  margin-top: 24px!important;
}

.c-hero__heading-mark {
  background: linear-gradient(180deg, transparent 62%, rgba(237, 106, 44, .35) 62%);
  padding: 0 6px;
}

.c-hero__lead {
  color: var(--ink-700);
  font-size: 16.5px;
  line-height: 2;
  margin-top: 24px!important;
}

.c-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

@media screen and (max-width: 1024px) {
  .c-hero {
    padding: 88px 0 56px;
  }

  .c-hero__inner {
    gap: 32px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .c-hero__heading {
    font-size: 40px;
  }

  .c-hero__lead {
    font-size: 15px;
  }

  .c-hero__visual {
    flex: 0 0 40%;
  }
}

@media screen and (max-width: 767px) {
  .c-hero {
    padding: 80px 0 48px;
  }

  .c-hero__inner {
    flex-direction: column;
    gap: 32px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .c-hero__content {
    min-width: 0;
    width: 100%;
  }

  .c-hero__visual {
    display: none;
  }

  .c-hero__logo-wrap {
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .c-hero__logo {
    height: 56px;
    margin-left: 0;
    width: auto;
    flex-shrink: 0;
  }

  .c-hero__sublogo {
    font-size: 12px;
    letter-spacing: .02em;
    white-space: nowrap;
  }

  .c-hero__heading {
    font-size: 30px;
    margin-top: 18px;
  }

  .c-hero__lead {
    font-size: 14px;
    line-height: 1.9;
  }

  .c-hero__actions {
    flex-direction: column;
    gap: 10px;
  }

  .c-btn {
    font-size: 13px;
    padding: 14px 22px;
    width: 100%;
  }
}

/* =======================================

Benefits

========================================== */
.c-benefits {
  background: linear-gradient(180deg, #1F1A17 0%, #29231F 100%);
  color: #fff;
  overflow: hidden;
  padding: 64px 0 72px;
  position: relative;
}

.c-benefits__deco {
  border-radius: 50%;
  pointer-events: none;
  position: absolute;
}

.c-benefits__deco--1 {
  background: radial-gradient(circle at 50% 50%, rgba(237, 106, 44, .25) 0%, transparent 65%);
  height: 480px;
  right: -120px;
  top: -60px;
  width: 480px;
}

.c-benefits__deco--2 {
  background: radial-gradient(circle at 50% 50%, rgba(255, 170, 90, .12) 0%, transparent 70%);
  bottom: -80px;
  height: 360px;
  left: -100px;
  width: 360px;
}

.c-benefits__head,
.c-benefits__grid {
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  padding-left: 56px;
  padding-right: 56px;
  position: relative;
}

.c-benefits__head .c-eyebrow {
  color: var(--carrio-orange);
}

.c-benefits__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.c-benefit-card {
  background: rgba(255, 255, 255, .04);
  border-radius: 16px;
  overflow: hidden;
  padding: 26px;
  position: relative;
}

.c-benefit-card__accent {
  background: linear-gradient(90deg, #F58A4F 0%, #ED6A2C 50%, #D45A22 100%);
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.c-benefit-card__header {
  align-items: center;
  display: flex;
  gap: 14px;
  margin-bottom: 10px
}

.c-benefit-card__icon {
  align-items: center;
  background: linear-gradient(135deg, rgba(237, 106, 44, .25) 0%, rgba(237, 106, 44, .10) 100%);
  border: 1px solid rgba(237, 106, 44, .4);
  border-radius: 12px;
  display: flex;
  flex-shrink: 0;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.c-benefit-card__title {
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.4;
}

.c-benefit-card__body {
  color: #D8D2CC;
  font-size: 13px;
  line-height: 1.95;
  margin-top: 18px;
}

@media screen and (max-width: 1024px) {
  .c-benefits {
    padding: 48px 0 56px;
  }

  .c-benefits__head,
  .c-benefits__grid {
    padding-left: 32px;
    padding-right: 32px;
  }

  .c-benefits__grid {
    gap: 14px;
  }
}

@media screen and (max-width: 767px) {
  .c-benefits {
    padding: 40px 0 48px;
  }

  .c-benefits__head,
  .c-benefits__grid {
    padding-left: 20px;
    padding-right: 20px;
  }

  .c-benefits__head h2 {
    font-size: 24px;
  }

  .c-benefits__grid {
    gap: 12px;
    grid-template-columns: 1fr;
  }
}

/* =======================================

Tabs

========================================== */
.c-tabs {
  align-items: center;
  background: #fff;
  box-shadow: 0 1px 0 rgba(31, 26, 23, .05), 0 -1px 0 rgba(31, 26, 23, .04);
  display: flex;
  font-size: 12.5px;
  gap: 4px;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  padding: 14px 56px;
}

.c-tabs__label {
  color: var(--ink-300);
  font-family: var(--en-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .22em;
  margin-right: 18px;
}

.c-tabs__divider {
  background: rgba(31, 26, 23, .10);
  height: 12px;
  width: 1px;
}

.c-tabs__link {
  align-items: baseline;
  border-radius: 6px;
  color: var(--ink-700);
  display: inline-flex;
  gap: 8px;
  padding: 8px 14px;
}

.c-tabs__link-num {
  color: var(--carrio-orange-deep);
  font-family: var(--en-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
}

.c-tabs__link-text {
  color: var(--ink-900);
  font-weight: 700;
}

@media screen and (max-width: 1024px) {
  .c-tabs {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media screen and (max-width: 767px) {
  .c-tabs {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, 1fr);
    padding: 8px 16px;
  }

  .c-tabs__label,
  .c-tabs__divider {
    display: none;
  }

  .c-tabs__link {
    align-items: center;
    border-bottom: 1px solid rgba(31, 26, 23, .06);
    flex-direction: column;
    gap: 2px;
    justify-content: center;
    padding: 10px 6px;
    text-align: center;
  }

  .c-tabs__link-num {
    font-size: 9px;
  }

  .c-tabs__link-text {
    font-size: 11px;
  }
}

/* =======================================

Issue

========================================== */
.c-issue {
  background: #fff;
  padding: 80px 0;
}

.c-issue__head,
.c-issue__grid {
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  padding-left: 56px;
  padding-right: 56px;
}

.c-issue__head {
  margin-bottom: 48px;
}

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

.c-issue-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1px 0 rgba(31, 26, 23, .03), 0 14px 36px rgba(31, 26, 23, .06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.c-issue-card__pain {
  align-items: center;
  background: linear-gradient(180deg, #FAF7F2 0%, #F2EEE8 100%);
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding: 16px 16px 0;
  position: relative;
}

.c-issue-card__illust {
  height: auto;
  margin-top: 12px;
  max-height: 250px;
  object-fit: contain;
  width: 100%;
}

.c-issue-card__solution {
  background: linear-gradient(135deg, #F58A4F 0%, #ED6A2C 60%, #D45A22 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  margin-top: auto;
  padding: 20px 24px;
}

.c-issue-card__sol-head {
  align-items: center;
  display: flex;
  gap: 14px;
}

.c-issue-card__sol-icon {
  align-items: center;
  background: rgba(255, 255, 255, .2);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 12px;
  display: flex;
  flex-shrink: 0;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.c-issue-card__sol-title {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
}

.c-issue-card__sol-body {
  font-size: 11.5px;
  line-height: 1.65;
  margin-top: 8px;
  opacity: .92;
}

@media screen and (max-width: 1024px) {
  .c-issue {
    padding: 60px 0;
  }

  .c-issue__head,
  .c-issue__grid {
    padding-left: 32px;
    padding-right: 32px;
  }

  .c-issue__grid {
    gap: 14px;
  }
}

@media screen and (max-width: 767px) {
  .c-issue {
    padding: 48px 0;
  }

  .c-issue__head,
  .c-issue__grid {
    padding-left: 20px;
    padding-right: 20px;
  }

  .c-issue__head h2 {
    font-size: 26px;
  }

  .c-issue__grid {
    gap: 12px;
    grid-template-columns: repeat(2, 1fr);
  }

  .c-issue-card:nth-child(3) {
    grid-column: 1 / -1;
    margin: 0 auto;
    max-width: calc(50% - 6px);
  }

  .c-issue-card__pain {
    flex: none;
  }

  .c-issue-card__solution {
    align-items: flex-start;
    gap: 8px;
    margin-top: 0;
  }

  .c-issue-card__sol-head {
    gap: 10px;
  }

  .c-issue-card__sol-body {
    width: 100%;
  }
}

/* =======================================

Security

========================================== */
.c-security {
  background: #FFFAF5;
  padding: 24px 0 88px;
}

.c-security .c-section-head,
.c-security__how,
.c-security__grid {
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  padding-left: 56px;
  padding-right: 56px;
}

.c-security__how {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 0 rgba(31, 26, 23, .03), 0 10px 24px rgba(31, 26, 23, .05);
  margin-bottom: 40px;
  overflow: hidden;
  padding: 24px;
}

.c-security__how-img {
  display: block;
  height: auto;
  width: 100%;
}

.c-security__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}

.c-feature-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 0 rgba(31, 26, 23, .03), 0 10px 24px rgba(31, 26, 23, .05);
  display: flex;
  flex-direction: column;
  min-height: 230px;
  overflow: hidden;
  padding: 24px 22px;
  position: relative;
}

.c-feature-card__icon {
  align-items: center;
  background: linear-gradient(135deg, var(--carrio-orange-faint) 0%, var(--carrio-orange-soft) 100%);
  border-radius: 12px;
  display: flex;
  flex-shrink: 0;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.c-feature-card__title {
  color: var(--ink-900);
  font-size: 16px;
  font-weight: 800;
  margin-top: 4px;
}

.c-feature-card__body {
  color: var(--ink-700);
  font-size: 12.5px;
  line-height: 1.85;
  margin-top: 8px!important;
}

@media screen and (max-width: 1024px) {
  .c-security {
    padding: 24px 0 72px;
  }

  .c-security .c-section-head,
  .c-security__how,
  .c-security__grid {
    padding-left: 32px;
    padding-right: 32px;
  }

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

@media screen and (max-width: 767px) {
  .c-security {
    padding: 20px 0 56px;
  }

  .c-security .c-section-head,
  .c-security__how,
  .c-security__grid {
    padding-left: 20px;
    padding-right: 20px;
  }

  .c-section-head h2 {
    font-size: 26px;
  }

  .c-security__grid {
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }

  .c-feature-card {
    min-height: auto;
    padding: 18px 16px;
  }

  .c-feature-card__body {
    font-size: 12px;
    line-height: 1.7;
  }
}

/* =======================================

Screens

========================================== */
.c-screens {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF7F2 100%);
  color: var(--ink-900);
  overflow: hidden;
  padding: 88px 0;
  position: relative;
}

.c-screens__deco {
  background: radial-gradient(circle at 50% 50%, rgba(237, 106, 44, .10) 0%, transparent 60%);
  height: 600px;
  left: -200px;
  pointer-events: none;
  position: absolute;
  top: -100px;
  width: 600px;
}

.c-screens__inner {
  margin: 0 auto;
  max-width: 1280px;
  padding-left: 56px;
  padding-right: 56px;
  position: relative;
}

.c-screens__grid {
  align-items: flex-start;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr;
  margin-top: 48px;
}

.c-screens__item-head {
  align-items: center;
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.c-screens__badge {
  border-radius: 6px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 4px 12px;
}

.c-screens__badge--receiver {
  background: var(--carrio-orange);
}

.c-screens__badge--admin {
  background: var(--ink-900);
}

.c-screens__item-title {
  font-size: 17px;
  font-weight: 800;
}

.c-screens__desc {
  color: var(--ink-700);
  font-size: 13px;
  line-height: 1.95;
  margin-bottom: 22px!important;
}

.c-screens__mock-wrap {
  display: flex;
  justify-content: center;
}

.c-screens__mock-img {
  border: 1px solid var(--ink-150);
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(31, 26, 23, .18), 0 4px 12px rgba(31, 26, 23, .08);
  height: auto;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .c-screens {
    padding: 72px 0;
  }

  .c-screens__inner {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media screen and (max-width: 767px) {
  .c-screens {
    padding: 48px 0;
  }

  .c-screens__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .c-screens__grid {
    gap: 40px;
    grid-template-columns: 1fr;
  }
}

/* =======================================

Compare

========================================== */
.c-compare {
  background: #fff;
  padding: 88px 0;
}

.c-compare .c-head,
.c-compare .c-compare__table-wrap {
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  width: 100%;
}

.c-compare .c-head {
  padding-left: 56px;
  padding-right: 56px;
}

.c-compare__table-wrap {
  display: block;
  overflow-x: auto;
  padding-left: 56px;
  padding-right: 56px;
}

.c-compare-table {
  border-collapse: collapse;
  box-shadow: 0 1px 0 rgba(31, 26, 23, .04), 0 14px 36px rgba(31, 26, 23, .06);
  table-layout: fixed;
  width: 100%;
}

.c-compare-table col.col-label {
  width: 22%;
}

.c-compare-table col.col-ppap {
  width: 20%;
}

.c-compare-table col.col-cloud {
  width: 20%;
}

.c-compare-table col.col-carrio {
  width: 38%;
}

.c-compare-table thead tr {
  background: linear-gradient(180deg, #FAF7F2 0%, #F2EEE8 100%);
}

.c-compare-table thead th {
  font-weight: 800;
  padding: 18px;
  text-align: left;
  vertical-align: middle;
}

.c-compare-table thead th.col-label-head {
  color: var(--ink-500);
  font-size: 11.5px;
  letter-spacing: .12em;
}

.c-compare-table thead th .th-main {
  color: var(--ink-900);
  font-size: 15px;
}

.c-compare-table thead th .th-sub {
  color: var(--ink-500);
  display: block;
  font-size: 11px;
  font-weight: 400;
  margin-top: 3px;
  opacity: .7;
}

.c-compare-table thead th.col-carrio-head {
  background: linear-gradient(135deg, #F58A4F 0%, #ED6A2C 60%, #D45A22 100%);
}

.c-compare-table thead th.col-carrio-head .th-main {
  color: #fff;
  font-size: 17px;
}

.c-compare-table thead th.col-carrio-head .th-sub {
  color: rgba(255, 255, 255, .92);
  opacity: 1;
}

.c-compare-table tbody tr:nth-child(odd) {
  background: #fff;
}

.c-compare-table tbody tr:nth-child(even) {
  background: #FCFAF7;
}

.c-compare-table tbody td.td-label {
  color: var(--ink-900);
  font-size: 13.5px;
  font-weight: 700;
  padding: 16px 18px;
  vertical-align: middle;
}

.c-compare-table tbody td.td-val {
  color: var(--ink-700);
  font-size: 13px;
  line-height: 1.65;
  padding: 16px 18px;
  vertical-align: top;
}

.c-compare-table tbody td.td-carrio {
  background: rgba(237, 106, 44, .06);
  color: var(--ink-900);
  font-weight: 600;
}

.c-compare__icon {
  display: inline-block !important;
  width: 18px;
  height: 18px;
  margin-right: 6px;
  object-fit: contain;
  position: relative;
  top: -1px;
  vertical-align: middle;
}

.c-compare__subnote {
  font-size: 10px;
  line-height: 1.5;
  margin-top: 4px;
}

@media screen and (max-width: 1024px) {
  .c-compare {
    padding: 72px 0;
  }

  .c-compare .c-head {
    padding-left: 32px;
    padding-right: 32px;
  }

  .c-compare__table-wrap {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media screen and (max-width: 767px) {
  .c-compare {
    padding: 48px 0;
  }

  .c-compare .c-head {
    padding-left: 20px;
    padding-right: 20px;
  }

  .c-compare__table-wrap {
    padding-left: 12px;
    padding-right: 12px;
  }

  .c-compare-table {
    font-size: 10px;
    min-width: 720px;
  }

  .c-compare-table thead th,
  .c-compare-table tbody td {
    padding: 8px 6px;
  }

  .c-compare-table thead th .th-main {
    font-size: 11px;
  }

  .c-compare-table thead th.col-carrio-head .th-main {
    font-size: 12px;
  }

  .c-compare-table thead th .th-sub {
    font-size: 9px;
  }

  .c-compare-table tbody td.td-label,
  .c-compare-table tbody td.td-val,
  .c-compare-table tbody td.td-carrio {
    font-size: 10px;
    line-height: 1.5;
  }

  .c-compare__icon {
    width: 12px;
    height: 12px;
    margin-right: 4px;
  }
}

/* =======================================

CTA

========================================== */
.c-cta {
  background: linear-gradient(135deg, #F58A4F 0%, #ED6A2C 50%, #D45A22 100%);
  clear: both;
  color: #fff;
  display: block;
  isolation: isolate;
  overflow: hidden;
  padding: 64px 56px 44px 56px;
  position: relative;
  width: 100%;
  z-index: 20;
}

.c-cta__deco-1 {
  background: rgba(255, 255, 255, .08);
  border-radius: 50%;
  height: 360px;
  pointer-events: none;
  position: absolute;
  right: -100px;
  top: -100px;
  width: 360px;
}

.c-cta__deco-2 {
  background: rgba(0, 0, 0, .06);
  border-radius: 50%;
  bottom: -160px;
  height: 320px;
  left: -60px;
  pointer-events: none;
  position: absolute;
  width: 320px;
}

.c-cta__inner {
  align-items: center;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 0 auto;
  max-width: 1280px;
  padding-left: 56px;
  padding-right: 56px;
  position: relative;
  z-index: 1;
}

.c-cta__heading {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.45;
}

.c-cta__lead {
  font-size: 14.5px;
  line-height: 1.8;
  margin-top: 12px;
  opacity: .95;
}

.c-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

.c-cta__btn-download,
.c-cta__btn-outline {
  align-items: center;
  display: inline-flex;
  font-family: var(--jp-sans);
  font-size: 14px;
  font-weight: 800;
  justify-content: center;
  line-height: 1.4;
  min-height: 52px;
  padding: 14px 26px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.c-cta__btn-download {
  background: #fff;
  border: none;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .20);
  color: var(--carrio-orange-deep) !important;
  padding: 16px 30px;
}

.c-cta__btn-outline {
  background: transparent;
  border: 2px solid #fff;
  border-radius: 999px;
  box-shadow: none;
  color: #fff !important;
}

main.carrio-page,
.entry-content,
.wp-block-post-content,
.site-main,
.site-content {
  overflow: visible !important;
}

footer,
.site-footer,
#colophon {
  clear: both;
  margin-top: 0 !important;
  position: relative !important;
  top: 0 !important;
  transform: none !important;
  z-index: 1 !important;
}

@media screen and (max-width: 1024px) {
  .c-cta {
    padding: 48px 0;
  }

  .c-cta__inner {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media screen and (max-width: 767px) {
  .c-cta {
    padding: 40px 0;
  }

  .c-cta__inner {
    gap: 24px;
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }

  .c-cta__heading {
    font-size: 22px;
  }

  .c-cta__actions {
    flex-direction: column;
    width: 100%;
  }

  .c-cta__btn-download,
  .c-cta__btn-outline {
    width: 100%;
  }
}
