.hero {
  position: relative;
  min-height: 680px;
  height: 100vh;
  display: grid;
  place-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../src/assets/cc2d914fee039ac3789b0eb9630e1e2ea4ea9aff.png") center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1000px, calc(100% - 32px));
  text-align: center;
  color: #fff;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  line-height: 1.18;
  letter-spacing: 0.02em;
}

.hero p {
  margin: 20px auto 0;
  max-width: 820px;
  font-size: clamp(1.1rem, 2.6vw, 2rem);
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.about-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 40px;
  align-items: center;
}

#about {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-warm) 100%);
}

.about-grid img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.16);
}

.about-grid h3 {
  margin: 0;
  color: var(--brand-blue);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.about-grid > div {
  padding: 8px 0 8px 28px;
  border-left: 1px solid rgba(30, 58, 95, 0.1);
}

.about-grid p {
  margin: 18px 0 0;
  color: #374151;
}

.metrics {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.metric {
  text-align: center;
  padding: 14px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(30, 58, 95, 0.07);
}

.metric strong {
  display: block;
  color: var(--brand-orange);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
}

.services {
  background: linear-gradient(180deg, var(--bg-cool) 0%, #f3f5f8 100%);
}

.services-heading {
  text-align: center;
}

.services-title {
  margin: 0;
  color: #202020;
  font-size: clamp(2.2rem, 4.8vw, 3.5rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.feature-shell {
  margin-top: 32px;
  padding: 40px 36px 46px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 26%),
    linear-gradient(180deg, #f4f3f8 0%, #f8f8fb 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.feature-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto 30px;
  padding: 10px;
  width: fit-content;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(31, 41, 55, 0.06);
}

.feature-tab {
  border: 0;
  background: transparent;
  color: #202020;
  border-radius: 999px;
  padding: 14px 22px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.24s ease, color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.feature-tab:hover {
  transform: translateY(-1px);
}

.feature-tab.is-active {
  color: var(--white);
  background: linear-gradient(135deg, #ff9b54 0%, var(--brand-orange) 48%, #ef6a24 100%);
  box-shadow: 0 12px 20px rgba(255, 107, 53, 0.26);
}

.feature-tab-icon,
.feature-point-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.feature-tab-icon svg,
.feature-point-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-stage {
  display: grid;
  grid-template-columns: minmax(300px, 410px) minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
}

.feature-list-card,
.feature-visual-card {
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
}

.feature-list-card {
  padding: 26px 24px;
  box-shadow: 0 16px 36px rgba(31, 41, 55, 0.05);
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 68px;
  padding: 6px 2px;
  color: #27272a;
  font-size: 1.08rem;
}

.feature-item + .feature-item {
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.feature-point-icon {
  width: 42px;
  height: 42px;
  color: var(--brand-orange);
}

.feature-visual-card {
  position: relative;
  min-height: 598px;
  box-shadow: 0 18px 40px rgba(31, 41, 55, 0.07);
}

.feature-visual-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  background: linear-gradient(180deg, rgba(12, 18, 28, 0) 0%, rgba(12, 18, 28, 0.14) 100%);
  pointer-events: none;
}

.feature-visual-card img {
  width: 100%;
  height: 100%;
  min-height: 598px;
  object-fit: cover;
}

.feature-more-link {
  margin: 28px auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: var(--brand-orange);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color 0.2s ease, transform 0.2s ease;
}

.feature-more-link:hover {
  color: var(--brand-orange-dark);
  transform: translateY(-2px);
}

#news {
  background:
    linear-gradient(90deg, rgba(255, 107, 53, 0.045), rgba(255, 255, 255, 0) 26%),
    linear-gradient(180deg, #ffffff 0%, var(--bg-cool) 100%);
}

.scene-shell {
  --scene-accent: var(--brand-orange);
  margin-top: 44px;
}

.scene-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 34px;
}

.scene-tab {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-height: 110px;
  padding: 20px 22px;
  border: 1px solid rgba(30, 58, 95, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 247, 249, 0.92));
  color: #1f2937;
  text-align: left;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.scene-tab::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--scene-tab-accent, var(--brand-orange));
  opacity: 0.42;
  transition: opacity 0.22s ease;
}

.scene-tab:hover {
  transform: translateY(-2px);
  border-color: rgba(30, 58, 95, 0.24);
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.08);
}

.scene-tab.is-active {
  border-color: color-mix(in srgb, var(--scene-tab-accent, var(--brand-orange)) 42%, #ffffff);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.1);
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--scene-tab-accent, var(--brand-orange)) 8%, #ffffff),
    #ffffff
  );
}

.scene-tab.is-active::before {
  opacity: 1;
}

.scene-tab-label {
  font-size: 1.26rem;
  font-weight: 700;
  color: #1f2937;
}

.scene-tab.is-active .scene-tab-label {
  color: var(--scene-tab-accent, var(--brand-orange));
}

.scene-tab.is-active .scene-tab-hint {
  color: #374151;
}

.scene-tab-hint {
  color: #6b7280;
  font-size: 0.96rem;
  line-height: 1.45;
}

.scene-panel {
  --scene-accent: var(--brand-orange);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 40px;
  align-items: center;
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(30, 58, 95, 0.08);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.scene-panel-copy {
  max-width: 620px;
}

.scene-kicker {
  margin: 0;
  color: var(--scene-accent);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scene-heading-title {
  margin: 16px 0 0;
  color: var(--brand-blue);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.14;
}

.scene-body {
  margin: 18px 0 0;
  color: #4b5563;
  font-size: 1.06rem;
}

.scene-metric {
  margin-top: 30px;
  padding: 22px 0;
  display: grid;
  grid-template-columns: minmax(118px, auto) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border-top: 1px solid rgba(30, 58, 95, 0.12);
  border-bottom: 1px solid rgba(30, 58, 95, 0.12);
}

.scene-metric-value {
  color: var(--scene-accent);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1;
}

.scene-metric-label {
  color: #374151;
  font-size: 1rem;
}

.scene-detail-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.scene-detail-title {
  margin: 0 0 12px;
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scene-highlight-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.scene-highlight-list li {
  position: relative;
  padding-left: 18px;
  color: #1f2937;
  line-height: 1.55;
}

.scene-highlight-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--scene-accent);
  transform: translateY(-50%);
}

.scene-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.scene-tag {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--scene-accent) 28%, #ffffff);
  background: color-mix(in srgb, var(--scene-accent) 8%, #ffffff);
  color: #243244;
  font-size: 0.92rem;
  line-height: 1;
}

.scene-cta {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--scene-accent);
  font-weight: 700;
  transition: transform 0.2s ease, color 0.2s ease;
}

.scene-cta::after {
  content: "↗";
}

.scene-cta:hover {
  transform: translateX(2px);
}

.scene-panel-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.scene-visual-backdrop {
  position: absolute;
  inset: 40px 16px 28px 24px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, color-mix(in srgb, var(--scene-accent) 22%, #ffffff), transparent 48%),
    linear-gradient(180deg, #eef4f8 0%, #e5edf5 100%);
}

.scene-visual-frame {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  margin: 0;
  aspect-ratio: 4 / 3;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 26px 44px rgba(15, 23, 42, 0.16);
  background: #dbe6ef;
}

.scene-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scene-visual-note {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  max-width: 240px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(17, 24, 39, 0.92);
  color: #fff;
  font-size: 0.94rem;
  line-height: 1.45;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.22);
}

.product-showcase {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #faf7f1 0%, #fbfcfd 100%);
}

.product-showcase::before,
.product-showcase::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(10px);
}

.product-showcase::before {
  top: 48px;
  left: -120px;
  width: 340px;
  height: 340px;
  transform: none;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.14) 0%, rgba(255, 107, 53, 0) 72%);
}

.product-showcase::after {
  right: -140px;
  bottom: 32px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(30, 58, 95, 0.14) 0%, rgba(30, 58, 95, 0) 72%);
}

.product-showcase .container {
  position: relative;
  z-index: 1;
}

.product-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.product-card {
  --product-accent: var(--brand-orange);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 32px 28px 28px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(8px);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--product-accent) 72%, #ffffff),
    color-mix(in srgb, var(--product-accent) 24%, #ffffff)
  );
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--product-accent) 20%, #d1d5db);
  box-shadow: 0 28px 46px rgba(15, 23, 42, 0.12);
}

.product-card--link {
  cursor: pointer;
}

.product-card--retail {
  --product-accent: #1f4f82;
}

.product-card--featured {
  --product-accent: var(--brand-orange);
  transform: translateY(-12px);
  border-color: rgba(255, 107, 53, 0.16);
  box-shadow: 0 30px 56px rgba(15, 23, 42, 0.12);
}

.product-card--featured:hover {
  transform: translateY(-18px);
}

.product-card--extensions {
  --product-accent: #374151;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 252, 0.98));
}

.product-card-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-mark {
  width: 112px;
  height: 112px;
  padding: 0;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 999px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.product-mark img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  object-position: center;
}

.product-card-badge {
  margin: 20px 0 0;
  color: var(--product-accent);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.product-card h3 {
  margin: 12px 0 0;
  color: #1f2937;
  font-size: clamp(1.9rem, 3vw, 2.45rem);
  line-height: 1.12;
}

.product-card-intro {
  margin: 18px 0 0;
  min-height: 98px;
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.7;
}

.product-divider {
  height: 1px;
  margin: 24px 0 24px;
  background: linear-gradient(90deg, rgba(31, 41, 55, 0.2), rgba(31, 41, 55, 0.04));
}

.product-list-group + .product-list-group {
  margin-top: 24px;
}

.product-list-title {
  margin: 0 0 14px;
  color: #6b7280;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.product-inline-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 50px;
  margin: 0 auto;
  padding: 12px 22px;
  border-radius: 16px;
  border: 1.5px solid color-mix(in srgb, var(--product-accent) 70%, #ffffff);
  background: #fff;
  color: var(--product-accent);
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.product-inline-cta:hover {
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--product-accent) 7%, #ffffff);
  border-color: color-mix(in srgb, var(--product-accent) 82%, #ffffff);
}

.product-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-feature-list li {
  position: relative;
  padding-left: 28px;
  color: #1f2937;
  line-height: 1.55;
}

.product-feature-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--product-accent);
  font-weight: 800;
}

.product-feature-list--compact {
  gap: 12px;
}

.advantages {
  background: linear-gradient(180deg, #1e3a5f 0%, #172f4d 100%);
  color: var(--white);
}

.advantages::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.advantages .section-title {
  color: var(--white);
}

.advantages .section-subtitle {
  color: #d1d5db;
}

.adv-grid {
  margin: 40px auto 0;
  max-width: 920px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.adv-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease, border-color 0.24s ease;
}

.adv-card h3 {
  margin: 0;
  color: var(--brand-orange);
  font-size: 1.45rem;
}

.adv-card p {
  margin: 10px 0 0;
  color: #e5e7eb;
}

.adv-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28);
}

.payment-solutions {
  background:
    linear-gradient(90deg, rgba(30, 58, 95, 0.04), rgba(255, 255, 255, 0) 28%),
    linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
}

.payments-heading {
  max-width: 920px;
  margin: 0 auto 34px;
}

.payments-heading .section-title,
.payments-heading .section-subtitle {
  text-align: center;
}

.payments-heading .accent-line {
  margin: 18px auto 0;
  border-radius: 999px;
}

.payment-shell {
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(30, 58, 95, 0.08);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.payment-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.payment-tab {
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: #fff;
  color: #8b919b;
  border-radius: 999px;
  padding: 16px 32px;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.payment-tab:hover {
  transform: translateY(-1px);
  color: #1f2937;
  border-color: rgba(15, 23, 42, 0.24);
}

.payment-tab.is-active {
  color: #fff;
  background: #27272a;
  border-color: #27272a;
  box-shadow: 0 14px 28px rgba(39, 39, 42, 0.2);
}

.payment-panel {
  display: none;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1.24fr);
  gap: 32px;
  align-items: center;
  animation: paymentPanelFade 0.28s ease;
}

.payment-panel.is-active {
  display: grid;
}

.payment-visual {
  overflow: hidden;
  border-radius: 28px;
  min-height: 350px;
  max-width: 520px;
  background: #dfe5ec;
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.14);
}

.payment-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.payment-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.payment-copy h3 {
  margin: 0;
  color: #1f2937;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.14;
}

.payment-copy p {
  margin: 18px 0 0;
  color: #5b6471;
  font-size: 1.08rem;
}

.payment-kicker {
  margin-top: 34px;
  color: #7b8491;
  font-size: 1.02rem;
  font-weight: 500;
}

.payment-logo-wall {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(104px, 1fr));
  gap: 14px 18px;
  align-items: center;
}

.payment-logo {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.payment-logo img {
  width: auto;
  max-width: 100%;
  max-height: 30px;
  object-fit: contain;
}

@keyframes paymentPanelFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.start-panel {
  background:
    linear-gradient(rgba(14, 28, 44, 0.62), rgba(14, 28, 44, 0.62)),
    url("https://dingm-test.oss-cn-hongkong.aliyuncs.com/banner/bg_service_info.webp") center/cover no-repeat;
  color: #fff;
  border-radius: 14px;
  padding: 40px 34px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.start-panel .section-title {
  color: #fff;
}

.start-panel .section-subtitle {
  color: #d1d5db;
}

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

.start-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 22px;
  transition: transform 0.24s ease, background-color 0.24s ease, border-color 0.24s ease;
}

.start-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.46);
}

.start-card h3 {
  margin: 0;
  color: #ffd4c2;
  font-size: 1.3rem;
}

.start-card p {
  margin: 10px 0 0;
  color: #e5e7eb;
}
