:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --primary: #1f6bff;
  --primary-deep: #0d4ce0;
  --primary-soft: #edf4ff;
  --dark: #061327;
  --dark-mid: #0a1c3d;
  --text: #111827;
  --text-soft: #5b6780;
  --line: #e6edf7;
  --shadow: 0 18px 40px rgba(16, 37, 89, 0.08);
  --radius-lg: 18px;
  --radius-md: 12px;
  --container: min(1200px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans SC", sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

button {
  font: inherit;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(6, 19, 39, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.brand-mark {
  width: 34px;
  height: 24px;
  position: relative;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border: 3px solid #fff;
  border-radius: 999px;
}

.brand-mark::before {
  inset: 6px 0 0 0;
}

.brand-mark::after {
  width: 16px;
  height: 16px;
  left: 8px;
  top: 0;
}

.brand-copy strong {
  font-size: 16px;
  font-weight: 700;
}

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

.site-nav a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -27px;
  width: 100%;
  height: 2px;
  background: transparent;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #fff;
}

.site-nav a.is-active::after,
.site-nav a:hover::after {
  background: var(--primary);
}

.header-side {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-link {
  color: #fff;
  font-weight: 500;
}

.nav-cta,
.btnn,
.plan-link,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 180ms ease;
}

.nav-cta,
.btn-primary,
.cta-button {
  background: linear-gradient(180deg, #2a78ff 0%, #165ef7 100%);
  color: #fff;
}

.nav-cta {
  height: 40px;
  padding: 0 18px;
  border-radius: 6px;
  font-size: 14px;
}

.nav-cta:hover,
.btn-primary:hover,
.cta-button:hover {
  background: linear-gradient(180deg, #347fff 0%, #0d4ce0 100%);
}

.hero {
  position: relative;
  overflow: hidden;
  background: #167cf7;
  color: #fff;
  padding: 54px 0 128px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: 36px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-kicker {
  margin: 0 0 16px;
  color: #9fc1ff;
  font-size: 15px;
  font-weight: 500;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 5.2vw, 68px);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  margin: 18px 0 0;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-feature-row {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.hero-feature {
  display: flex;
  gap: 14px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex: 0 0 auto;
    border: 1px solid rgba(74, 143, 255, .8);
    background: rgba(25, 95, 255, 2);
  display: grid;
  place-items: center;
}

.feature-icon svg,
.adv-icon svg,
.step-circle svg,
.plan-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-feature strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.hero-feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  font-size: 14px;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 16px;
}

.btnn {
  min-height: 52px;
  padding: 0 28px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline {
  background: #fff;
  color: var(--primary);
  border: 1px solid #b8cef7;
}

.btn-outline:hover {
  border-color: var(--primary);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-banner-wrap {
  position: relative;
  width: min(640px, 100%);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transform: translateX(18px);
}

.hero-banner-wrap::before {
  content: "";
  position: absolute;
  inset: 8% 4% 10% 10%;
  border-radius: 32px;
  background: none;
  z-index: 0;
}

.hero-banner-wrap::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 0;
  bottom: -6%;
  height: 28%;
  background: none;
  z-index: 2;
  pointer-events: none;
}

.hero-banner-glow {
  position: absolute;
  right: 6%;
  top: 12%;
  width: 64%;
  height: 62%;
  border-radius: 50%;
  background: none;
  z-index: 0;
}

.hero-banner {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  height: auto;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: none;
}

.cloud-stage {
  position: relative;
  width: min(520px, 100%);
  aspect-ratio: 1.08 / 0.82;
  perspective: 1200px;
}

.stage-grid {
  position: absolute;
  inset: 56px 10px 18px 10px;
  background:
    linear-gradient(rgba(86, 145, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(86, 145, 255, 0.22) 1px, transparent 1px);
  background-size: 32px 32px;
  transform: perspective(900px) rotateX(72deg);
  transform-origin: bottom center;
  opacity: 0.5;
}

.stage-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, rgba(77, 165, 255, 0), rgba(88, 164, 255, 0.85), rgba(77, 165, 255, 0));
  box-shadow: 0 0 12px rgba(54, 133, 255, 0.45);
}

.line-a {
  left: 40px;
  right: 66px;
  bottom: 92px;
  transform: rotate(-13deg);
}

.line-b {
  left: 96px;
  right: 114px;
  bottom: 138px;
  transform: rotate(8deg);
}

.line-c {
  left: 148px;
  right: 138px;
  bottom: 62px;
  transform: rotate(-24deg);
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
}

.glow-a {
  width: 280px;
  height: 180px;
  right: 40px;
  top: 40px;
  background: rgba(48, 116, 255, 0.38);
}

.glow-b {
  width: 220px;
  height: 160px;
  left: 70px;
  bottom: 40px;
  background: rgba(67, 178, 255, 0.22);
}

.platform {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(113, 180, 255, 0.95) 0%, rgba(33, 108, 255, 0.95) 100%);
  box-shadow: 0 18px 40px rgba(13, 61, 176, 0.45);
}

.platform-top {
  width: 248px;
  height: 104px;
  bottom: 146px;
  z-index: 4;
}

.platform-mid {
  width: 318px;
  height: 68px;
  bottom: 108px;
  background: linear-gradient(180deg, rgba(196, 227, 255, 0.92) 0%, rgba(86, 143, 255, 0.92) 100%);
  z-index: 3;
}

.platform-base {
  width: 384px;
  height: 48px;
  bottom: 72px;
  background: linear-gradient(180deg, rgba(232, 243, 255, 0.92) 0%, rgba(117, 158, 255, 0.92) 100%);
  z-index: 2;
}

.platform-top::before,
.platform-mid::before,
.platform-base::before {
  content: "";
  position: absolute;
  inset: 8px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.platform-top::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: -20px;
  height: 18px;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, rgba(25, 80, 201, 0.95) 0%, rgba(10, 40, 115, 0.95) 100%);
}

.cloud-shape {
  position: absolute;
  left: 50%;
  top: 34px;
  transform: translateX(-50%);
  width: 228px;
  height: 156px;
  border-radius: 90px;
  background: linear-gradient(180deg, #f9fdff 0%, #91dbff 100%);
  box-shadow: 0 18px 40px rgba(18, 86, 210, 0.38);
  z-index: 5;
}

.cloud-shape::before,
.cloud-shape::after {
  content: "";
  position: absolute;
  background: inherit;
  border-radius: 50%;
}

.cloud-shape::before {
  width: 104px;
  height: 104px;
  left: 24px;
  top: -28px;
}

.cloud-shape::after {
  width: 126px;
  height: 126px;
  right: 22px;
  top: -42px;
}

.cloud-core {
  position: absolute;
  inset: 34px 36px;
  border-radius: 60px;
  background: linear-gradient(180deg, #4ee3ff 0%, #1f6bff 100%);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.18);
}

.cloud-core::before,
.cloud-core::after {
  content: "";
  position: absolute;
  border: 5px solid #d7f7ff;
  border-radius: 50%;
}

.cloud-core::before {
  width: 42px;
  height: 42px;
  left: 18px;
  top: 14px;
}

.cloud-core::after {
  width: 58px;
  height: 58px;
  right: 14px;
  top: 6px;
}

.cube {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(189, 235, 255, 0.96) 0%, rgba(30, 113, 255, 0.98) 100%);
  box-shadow: 0 14px 28px rgba(17, 67, 190, 0.34);
  z-index: 4;
}

.cube-a {
  left: 26px;
  bottom: 126px;
}

.cube-b {
  right: 22px;
  bottom: 148px;
}

.cube-c {
  right: 66px;
  bottom: 48px;
}

.cube::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.62);
}

.side-pod {
  position: absolute;
  width: 84px;
  height: 62px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(204, 231, 255, 0.92) 0%, rgba(68, 126, 255, 0.94) 100%);
  box-shadow: 0 18px 32px rgba(11, 50, 155, 0.28);
  z-index: 3;
}

.pod-left {
  left: 44px;
  bottom: 66px;
}

.pod-right {
  right: 8px;
  bottom: 72px;
}

.pod-bottom {
  right: 118px;
  bottom: 10px;
  width: 94px;
}

.pod-core {
  position: absolute;
  inset: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(233, 246, 255, 0.22);
}

.front-slot {
  position: absolute;
  left: 50%;
  bottom: 116px;
  width: 74px;
  height: 12px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(113, 219, 255, 0.1), rgba(103, 232, 249, 0.95), rgba(113, 219, 255, 0.1));
  z-index: 6;
  box-shadow: 0 0 18px rgba(80, 220, 255, 0.6);
}

.floating-strip {
  margin-top: -48px;
  position: relative;
  z-index: 2;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.advantage-item {
  padding: 32px 26px;
  display: flex;
  gap: 18px;
  align-items: center;
  border-right: 1px solid var(--line);
}

.advantage-item:last-child {
  border-right: 0;
}

.adv-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff 0%, #dbe8ff 45%, #8eb2ff 100%);
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--primary);
}

.advantage-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.advantage-item p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.section {
  padding: 76px 0;
}

.section-head {
  margin-bottom: 34px;
}

.section-head.center {
  text-align: center;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 800;
}

.section-head p {
  margin: 14px auto 0;
  max-width: 780px;
  color: var(--text-soft);
  line-height: 1.85;
}

.section-head.center h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 4px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: var(--primary);
}

.associate-section {
  padding-top: 84px;
}

.associate-grid {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  gap: 24px;
}

.associate-card,
.plan-card,
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.associate-card {
  padding: 26px;
}

.associate-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.associate-head h3 {
  margin: 0;
  font-size: 24px;
}

.associate-head span {
  color: var(--text-soft);
  font-size: 14px;
}

.qr-panel {
  display: grid;
  place-items: center;
  min-height: 336px;
  background: linear-gradient(180deg, #fbfdff 0%, #f1f6ff 100%);
  border: 1px dashed #cbd9f2;
  border-radius: 14px;
  padding: 16px;
}

.associate-tip,
.associate-tips li,
.link-text {
  color: var(--text-soft);
  line-height: 1.8;
}

.link-panel {
  padding: 22px;
  border-radius: 14px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
}

.link-text {
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  word-break: break-all;
}

.link-actions {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

.associate-tips {
  margin-top: 20px;
  padding: 22px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
}

.associate-tips h4 {
  margin: 0 0 14px;
  font-size: 18px;
}

.associate-tips ul {
  margin: 0;
  padding-left: 18px;
}

.associate-tips li {
  margin-bottom: 10px;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 46px;
}

.step-item {
  position: relative;
  padding: 18px 12px 0;
  text-align: left;
}

/*.step-item::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 83px;
  width: 78px;
  height: 0;
  border-top: 2px dashed #7aa6ff;
  opacity: 0.9;
}*/

.step-item:last-child::after {
  display: none;
}

/*.step-item::before {
  content: "";
  position: absolute;
  right: -34px;
  top: 78px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #7aa6ff;
  border-right: 2px solid #7aa6ff;
  transform: rotate(45deg);
  background: transparent;
}*/

.step-item:last-child::before {
  display: none;
}

.step-head {
  display: flex;
  align-items: center;
  gap: 22px;
}

.step-circle {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background:
    radial-gradient(circle at 32% 28%, #f6fbff 0%, #dbe9ff 40%, #6ea2ff 100%);
  box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.76);
  color: #175ef7;
}

.step-circle svg {
  width: 38px;
  height: 38px;
  stroke-width: 2.1;
}

.step-meta {
  flex: 1;
}

.step-number {
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 50px;
  line-height: 1;
  font-weight: 800;
}

.step-item h3 {
  margin: 0;
  font-size: 28px;
  color: #131d2b;
}

.step-item p {
  margin: 16px 0 0 130px;
  color: var(--text-soft);
  line-height: 1.85;
}

.plans-section {
  background: #fff;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.plan-card {
  padding: 28px;
}

.plan-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 2px solid #d4e2ff;
  color: var(--primary);
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.plan-card h3 {
  margin: 0 0 10px;
  font-size: 28px;
}

.plan-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.plan-specs {
  margin-top: 26px;
  font-size: 20px;
  color: #2b3b59;
}

.plan-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.plan-tags span {
  padding: 6px 10px;
  border-radius: 6px;
  background: #f2f6fb;
  color: var(--text-soft);
  font-size: 13px;
}

.plan-foot {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.plan-foot strong {
  color: #ff7a00;
  font-size: 32px;
  font-weight: 700;
}

.plan-foot small {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 500;
}

.plan-link {
  min-width: 126px;
  height: 42px;
  border-radius: 6px;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
}

.plan-link.highlight,
.plan-link:hover {
  background: var(--primary);
  color: #fff;
}

.logos-section {
  padding-top: 38px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 12px;
}

.logo-grid span {
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  color: #7b8498;
  font-size: 22px;
  font-weight: 700;
}

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

.faq-item {
  padding: 0 20px;
  box-shadow: none;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 18px;
  font-weight: 500;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--text-soft);
  font-size: 22px;
}

.faq-item[open] summary::after {
  content: "-";
  color: var(--primary);
}

.faq-item p {
  margin: 0 0 18px;
  color: var(--text-soft);
  line-height: 1.8;
}

.bottom-cta {
  background: linear-gradient(180deg, #165ef7 0%, #134fe4 100%);
  color: #fff;
  padding: 28px 0;
}

.cta-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-copy h2 {
  margin: 0 0 10px;
  font-size: 38px;
}

.cta-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.cta-button {
  width: 240px;
    min-height: 64px;
  border-radius: 8px;
  background: #fff;
  color: var(--primary);
  font-size: 28px;
  font-weight: 800;
}

.cta-phone strong {
  display: block;
  font-size: 30px;
}

.cta-phone span,
.cta-qr span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
}

.cta-qr {
  text-align: center;
}

.cta-qr img {
  width: 96px;
  height: 96px;
  margin: 0 auto;
  border-radius: 8px;
}

.site-footer {
  background: #081529;
  color: rgba(255, 255, 255, 0.7);
  padding: 20px 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-left,
.footer-right {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-right a:hover {
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero-grid,
  .associate-grid, {
    grid-template-columns: 1fr;
  }

  .advantage-grid,
  .plan-grid,
  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-feature-row,
  .steps-row,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .step-item::after {
    display: none;
  }

  .step-item::before {
    display: none;
  }
}

@media (max-width: 860px) {
  .nav-wrap {
    min-height: auto;
    padding: 14px 0;
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .site-nav a::after {
    bottom: -8px;
  }

  .hero {
    padding-bottom: 92px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-banner-wrap {
    width: min(560px, 100%);
    transform: none;
    justify-content: center;
  }

  .advantage-grid,
  .plan-grid,
  .logo-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-actions,
  .link-actions,
  .header-side {
    flex-direction: column;
    align-items: stretch;
  }

  .btnn,
  .nav-cta,
  .phone-link,
  .plan-link,
  .cta-button {
    width: 100%;
  }

  .hero-feature-row {
    gap: 16px;
  }

  .hero-banner {
    width: 100%;
    mix-blend-mode: normal;
  }

  .advantage-item,
  .associate-card,
  .plan-card,
  .faq-item {
    padding: 20px;
  }

  .step-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .step-item p {
    margin-left: 0;
  }

  .cta-copy h2 {
    font-size: 30px;
  }
}
