/* 赢森 ysforu — 深色高端 · 全屏视觉 */

:root {
  --bg-deep: #070a0f;
  --bg-elevated: #0f141c;
  --bg-card: #121a24;
  --border: rgba(255, 255, 255, 0.08);
  --text: #e8edf4;
  --text-muted: #8b98a8;
  --accent: #4285f4;
  --accent-soft: rgba(66, 133, 244, 0.15);
  --accent-warm: #fbbc05;
  --gradient-brand: linear-gradient(90deg, #4285f4 0%, #a78bfa 45%, #fbbc05 100%);
  --gradient-brand-soft: linear-gradient(135deg, #4285f4, #6b8cff 50%, #fbbc05);
  --radius: 14px;
  --radius-lg: 22px;
  --font-sans: "Noto Sans SC", "DM Sans", system-ui, sans-serif;
  --font-display: "DM Sans", "Noto Sans SC", system-ui, sans-serif;
  --max: 1120px;
  --narrow: 720px;
  --header-h: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-deep);
  min-height: 100vh;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.28;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

body > *:not(.grain) {
  position: relative;
  z-index: 1;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.narrow {
  max-width: var(--narrow);
}

/* Gradient text — 参考 yingsenloveu.com */

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.65rem;
  opacity: 0.85;
}

/* Header — 透明悬浮 */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(7, 10, 15, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 10, 15, 0.88);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--text);
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
  color: var(--text);
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}

.logo-mark-svg {
  display: block;
  width: 38px;
  height: 38px;
}

.logo-text {
  font-family: "Inter", "DM Sans", var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--text);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 1.75rem);
}

.nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: #fff;
  text-decoration: none;
}

.nav-cta {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(66, 133, 244, 0.35);
  color: var(--accent) !important;
}

.nav-cta:hover {
  background: rgba(66, 133, 244, 0.22);
  color: #7ec4ff !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
}

/* Hero — 全屏背景 + 渐变遮罩 */

.hero-fullscreen {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      105deg,
      rgba(4, 6, 10, 0.92) 0%,
      rgba(4, 6, 10, 0.78) 38%,
      rgba(4, 6, 10, 0.45) 62%,
      rgba(4, 6, 10, 0.25) 100%
    ),
    radial-gradient(ellipse 80% 60% at 15% 50%, rgba(66, 133, 244, 0.08), transparent 60%);
  backdrop-filter: blur(0px);
}

.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 10, 15, 0.6) 0%, transparent 35%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 1.25rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.28;
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
}

.hero-line {
  display: block;
  font-size: clamp(1.65rem, 4.2vw, 2.65rem);
  color: #fff;
}

.hero-line--sub {
  font-size: clamp(1.35rem, 3.2vw, 2.05rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 0.35rem;
}

.hero-desc {
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  color: rgba(255, 255, 255, 0.62);
  max-width: 46ch;
  margin: 0 0 1rem;
  line-height: 1.7;
}

.hero-formula {
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.95rem, 1.8vw, 1.12rem);
  max-width: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.8rem 1.65rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #4285f4, #3367d6);
  color: #fff;
  box-shadow: 0 8px 32px rgba(66, 133, 244, 0.35);
}

.btn-primary:hover {
  color: #fff;
  box-shadow: 0 12px 40px rgba(66, 133, 244, 0.45);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
}

.btn-arrow {
  font-size: 1.1rem;
  line-height: 1;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 24px;
  height: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  text-decoration: none;
}

.hero-scroll-hint span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* About */

.about {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-visual {
  padding: 0.75rem;
}

.about-portrait {
  position: relative;
  border-radius: 50%;
  overflow: visible;
  aspect-ratio: 1 / 1;
  width: min(100%, 320px);
  max-width: 320px;
  margin-inline: auto;
  isolation: isolate;
}

.about-portrait::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: var(--gradient-brand);
  opacity: 0.55;
  filter: blur(22px);
  z-index: 0;
  pointer-events: none;
}

.about-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 3px;
  background: var(--gradient-brand-soft);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
  box-shadow:
    0 0 24px rgba(66, 133, 244, 0.35),
    0 0 40px rgba(251, 188, 5, 0.18);
}

.about-portrait img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.45);
}

.about-copy .section-title {
  margin-bottom: 0.75rem;
}

.about-passion {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.about-passion strong {
  color: var(--text);
  font-weight: 600;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.tag-row span {
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.tag-row span:hover {
  border-color: rgba(66, 133, 244, 0.35);
  color: var(--text);
}

/* Sections */

.section {
  padding: clamp(4rem, 9vw, 6.5rem) 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.8vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.section-intro {
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 0 2.5rem;
  font-size: 1.02rem;
}

.prose {
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  font-size: 1.02rem;
}

.prose strong {
  color: var(--text);
  font-weight: 600;
}

/* Wealth system */

.wealth {
  background:
    radial-gradient(ellipse 60% 50% at 10% 30%, rgba(66, 133, 244, 0.07), transparent),
    radial-gradient(ellipse 50% 40% at 90% 70%, rgba(251, 188, 5, 0.05), transparent),
    var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.wealth-stages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
  margin-bottom: 2.5rem;
}

.wealth-stage {
  padding: 1.65rem 1.45rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.wealth-stage:hover {
  border-color: rgba(66, 133, 244, 0.28);
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

.wealth-stage-num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.85rem;
  opacity: 0.85;
}

.wealth-stage h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wealth-stage-sub {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent-warm);
  margin: 0 0 0.85rem;
  text-transform: uppercase;
}

.wealth-stage p {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.wealth-stage p:last-child {
  margin-bottom: 0;
}

.wealth-tip {
  padding-top: 0.65rem;
  border-top: 1px solid var(--border);
  font-size: 0.88rem !important;
}

.wealth-tip strong {
  color: var(--text);
}

.wealth-conclusion {
  padding: 2rem 2.25rem;
  border-radius: var(--radius-lg);
  background: rgba(66, 133, 244, 0.06);
  border: 1px solid rgba(66, 133, 244, 0.15);
}

.wealth-conclusion p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.wealth-conclusion p:last-child {
  margin-bottom: 0;
}

.wealth-conclusion strong {
  color: var(--text);
}

.wealth-conclusion-highlight {
  font-size: 1.08rem !important;
  font-weight: 500;
  color: var(--text) !important;
}

/* Services */

.services {
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse 50% 40% at 15% 40%, rgba(66, 133, 244, 0.06), transparent),
    radial-gradient(ellipse 45% 35% at 88% 60%, rgba(251, 188, 5, 0.05), transparent);
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem 2.75rem;
  align-items: start;
  max-width: 1040px;
  margin-inline: auto;
}

.offer-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.offer-column-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.offer-column-icon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #6b8cff);
  box-shadow: 0 0 16px rgba(66, 133, 244, 0.45);
  flex-shrink: 0;
}

.offer-column-icon--project {
  background: linear-gradient(135deg, var(--accent-warm), #e0c46a);
  box-shadow: 0 0 14px rgba(251, 188, 5, 0.28);
}

.offer-column-label {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.offer-column--consult .offer-column-label {
  color: rgba(126, 196, 255, 0.88);
}

.offer-column--projects .offer-column-label {
  color: rgba(214, 188, 120, 0.95);
}

.offer-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.offer-stack-join {
  height: 1.75rem;
  margin: 0 auto;
  width: 2px;
  background: linear-gradient(180deg, rgba(224, 196, 100, 0.55), rgba(251, 188, 5, 0.65));
  border-radius: 2px;
  opacity: 0.88;
}

.offer-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.2rem;
  align-items: start;
  padding: 1.45rem 1.4rem 1.45rem 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.offer-card:hover {
  border-color: rgba(66, 133, 244, 0.28);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

.offer-column--projects .offer-card:hover {
  border-color: rgba(251, 188, 5, 0.38);
}

.offer-card--edge-left {
  position: relative;
  padding-left: 1.35rem;
}

.offer-card--edge-left::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, #4285f4, #6b8cff 60%, #3367d6);
}

.offer-card--edge-right {
  position: relative;
  padding-right: 1.35rem;
}

.offer-card--edge-right::after {
  content: "";
  position: absolute;
  right: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 3px 0 0 3px;
  background: linear-gradient(180deg, #e0c46a, var(--accent-warm) 50%, #c9a227);
}

.offer-num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--accent);
  opacity: 0.95;
  padding-top: 0.15rem;
}

.offer-column--projects .offer-num {
  color: var(--accent-warm);
}

.offer-body {
  min-width: 0;
}

.offer-title {
  margin: 0 0 0.65rem;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.4;
}

.offer-desc {
  margin: 0 0 0.45rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.offer-desc strong {
  color: var(--text);
  font-weight: 600;
}

.offer-desc--highlight {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
  font-size: 0.92rem;
  line-height: 1.7;
}

.offer-desc--tags {
  font-size: 0.88rem;
  opacity: 0.85;
}

.offer-tagline {
  margin: 0.5rem 0 0.65rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.offer-tagline--gold {
  margin: 0 0 0.65rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-warm);
  letter-spacing: 0.06em;
  text-shadow: 0 0 18px rgba(251, 188, 5, 0.18);
}

/* Contact */

.contact {
  border-top: 1px solid var(--border);
  background: var(--bg-deep);
}

.contact-wrap {
  max-width: 960px;
}

.contact-formula {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  color: var(--text-muted);
  margin: 0 0 3rem;
}

.contact-formula-plus,
.contact-formula-eq {
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
}

.contact-subtitle {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 1.25rem;
  color: var(--text);
  letter-spacing: 0.04em;
}

.contact-location {
  margin-bottom: 3.5rem;
}

.location-gallery {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 100%;
}

.location-item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.location-item img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  transition: transform 0.4s ease;
}

.location-item:hover img {
  transform: scale(1.04);
}

.contact-wechat {
  text-align: center;
}

.contact-intro {
  margin-inline: auto;
  text-align: center;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
}

.contact-pill {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(66, 133, 244, 0.3);
  color: var(--accent);
  font-weight: 500;
}

.contact-qr {
  margin-top: 1.75rem;
  display: flex;
  justify-content: center;
}

.contact-qr img {
  display: block;
  width: min(420px, 92vw);
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

/* Footer */

.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  text-align: center;
}

.footer-inner p {
  margin: 0.25rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-note {
  font-size: 0.8rem !important;
  opacity: 0.75;
}

/* Responsive */

@media (max-width: 1024px) {
  .wealth-stages {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-portrait {
    width: min(100%, 280px);
    max-width: 280px;
  }

  .offer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(280px, 85vw);
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.5rem 2rem;
    background: var(--bg-deep);
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    gap: 0;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav a {
    display: block;
    width: 100%;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
  }

  .nav a:hover {
    color: var(--text);
  }

  .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
    border: 1px solid rgba(66, 133, 244, 0.35);
  }

  body.nav-open {
    overflow: hidden;
  }

  .hero-content {
    text-align: left;
  }

  .hero-fullscreen {
    align-items: flex-end;
    padding-bottom: 5rem;
  }

  .wealth-stages {
    grid-template-columns: 1fr;
  }

  .wealth-conclusion {
    padding: 1.5rem 1.35rem;
  }

  .contact-formula:not(.hero-formula) {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .hero-formula {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

@media (max-width: 520px) {
  .offer-card {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding: 1.3rem 1.2rem;
  }

  .offer-card--edge-left {
    padding-left: 1.2rem;
  }

  .offer-card--edge-right {
    padding-right: 1.2rem;
  }

  .offer-num {
    font-size: 1.1rem;
    padding-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-scroll-hint span {
    animation: none;
  }

  .btn:hover,
  .offer-card:hover,
  .wealth-stage:hover {
    transform: none;
  }
}
