@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Fraunces:wght@600;700&display=swap");

:root {
  --bg: #f5f7ff;
  --bg-soft: #eef3ff;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --surface-accent: linear-gradient(180deg, #ffffff 0%, #f3f5ff 100%);
  --line: rgba(112, 129, 255, 0.18);
  --line-strong: rgba(102, 116, 255, 0.28);
  --text: #19233d;
  --muted: #5a6788;
  --primary: #5a6dff;
  --primary-deep: #3f49ca;
  --primary-soft: rgba(90, 109, 255, 0.12);
  --glow: rgba(123, 144, 255, 0.28);
  --shadow: 0 20px 45px rgba(45, 66, 135, 0.12);
  --shadow-soft: 0 14px 28px rgba(67, 83, 142, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(196, 212, 255, 0.72), transparent 30%),
    radial-gradient(circle at top right, rgba(221, 214, 255, 0.7), transparent 28%),
    linear-gradient(180deg, #f8faff 0%, #edf2ff 100%);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section-tint {
  background: linear-gradient(180deg, rgba(237, 242, 255, 0.2), rgba(255, 255, 255, 0.5));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--primary-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #7da3ff 0%, #8f71ff 100%);
  box-shadow: 0 0 0 8px rgba(125, 163, 255, 0.12);
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.9rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.03;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.2;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #6072ff 0%, #6f5fff 100%);
  box-shadow: 0 18px 35px rgba(93, 112, 255, 0.25);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 24px 40px rgba(93, 112, 255, 0.32);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(93, 112, 255, 0.18);
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.button-wide {
  width: 100%;
}

.site-header {
  position: relative;
  top: 0;
  z-index: 30;
  padding: 14px 0 0;
  background: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  border-radius: 18px;
  padding: 4px;
  background: transparent;
  box-shadow: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-copy strong {
  font-size: 0.98rem;
  line-height: 1.1;
  font-weight: 700;
  color: #324174;
}

.brand-copy span {
  display: none;
}

.desktop-nav,
.header-cta {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-cta {
  background: linear-gradient(135deg, #ee649f 0%, #d75abc 100%);
  box-shadow: 0 18px 30px rgba(222, 88, 167, 0.22);
}

.menu-toggle {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(146, 156, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 30px rgba(123, 131, 201, 0.12);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #6d79bb;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  margin-top: 12px;
  border-top: 1px solid rgba(146, 156, 255, 0.14);
  background: rgba(248, 245, 255, 0.74);
  backdrop-filter: blur(20px);
}

.mobile-menu-inner {
  padding: 14px 0 20px;
}

.mobile-nav {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.mobile-nav a {
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(146, 156, 255, 0.16);
  border-radius: 18px;
  font-weight: 700;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 18px 0 88px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.94), transparent 24%),
    radial-gradient(circle at 82% 14%, rgba(255, 229, 184, 0.68), transparent 22%),
    radial-gradient(circle at 62% 52%, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(135deg, #fff4d9 0%, #ffd9cf 32%, #e4dcff 70%, #d8e6ff 100%);
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.hero-section::before {
  left: -6%;
  right: -6%;
  bottom: -2%;
  height: 44%;
  background:
    radial-gradient(circle at 16% 40%, rgba(255, 255, 255, 0.56), transparent 22%),
    radial-gradient(circle at 74% 30%, rgba(255, 255, 255, 0.44), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.32));
  opacity: 0.9;
  border-radius: 56% 44% 0 0 / 18% 18% 0 0;
  filter: blur(0);
}

.hero-section::after {
  top: 0;
  right: -10%;
  width: 76%;
  height: 92%;
  background:
    radial-gradient(circle at 22% 22%, rgba(255, 206, 159, 0.38), transparent 11%),
    radial-gradient(circle at 46% 34%, rgba(255, 255, 255, 0.66), transparent 2.4%),
    radial-gradient(circle at 52% 22%, rgba(255, 255, 255, 0.56), transparent 1.8%),
    radial-gradient(circle at 40% 48%, rgba(255, 255, 255, 0.52), transparent 1.6%),
    radial-gradient(circle at 68% 64%, rgba(255, 255, 255, 0.38), transparent 1.8%),
    radial-gradient(circle at 58% 56%, rgba(255, 255, 255, 0.56), transparent 1.5%);
  opacity: 0.85;
}

.hero-grid {
  display: grid;
  gap: 20px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 20px;
  position: relative;
  z-index: 1;
  padding: 30px 28px;
  border: 1px solid rgba(88, 88, 150, 0.14);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow:
    0 26px 70px rgba(91, 82, 152, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
}

.hero-eyebrow {
  justify-self: start;
  padding: 6px 0;
  border: 0;
  background: transparent;
  color: #5060a7;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: none;
}

.hero-eyebrow::before {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  background:
    url("../img/avatar-profprime.png") center / contain no-repeat,
    transparent;
  box-shadow: none;
}

.hero-copy h1 {
  max-width: 10ch;
  color: #1f2859;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(2.9rem, 11vw, 5.2rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.hero-lead {
  max-width: 30ch;
  color: #42507e;
  font-size: 1.16rem;
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-points {
  display: grid;
  gap: 12px;
  max-width: 420px;
}

.hero-points li {
  position: relative;
  padding: 14px 18px 14px 54px;
  border-radius: 22px;
  background: rgba(255, 247, 231, 0.88);
  border: 1px solid rgba(236, 171, 97, 0.22);
  box-shadow: 0 16px 32px rgba(119, 122, 188, 0.08);
  color: #3d4873;
  font-size: 1rem;
  font-weight: 700;
  backdrop-filter: blur(18px);
}

.hero-points li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(241, 245, 255, 0.96);
  color: #5d8aff;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(139, 150, 220, 0.16);
}

.hero-actions .button {
  min-height: 62px;
  padding: 0 28px;
  font-size: 1.04rem;
}

.hero-actions .button-primary {
  background: linear-gradient(135deg, #ef5f9b 0%, #d850bd 100%);
  box-shadow: 0 22px 40px rgba(222, 88, 167, 0.28);
}

.hero-actions .button-secondary {
  color: #1f2859;
  background: linear-gradient(135deg, #ffd56a 0%, #ffb85c 100%);
  border-color: rgba(176, 110, 31, 0.26);
  box-shadow: 0 20px 36px rgba(225, 154, 59, 0.22);
}

.hero-note {
  display: inline-flex;
  justify-self: start;
  padding: 12px 16px;
  border-radius: 18px;
  background: #1f2859;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.5;
  max-width: 42ch;
  box-shadow: 0 18px 34px rgba(31, 40, 89, 0.22);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 360px;
  margin-top: 0;
  z-index: 1;
}

.hero-card {
  position: relative;
  width: min(100%, 540px);
  overflow: visible;
  padding: 22px;
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.42));
  box-shadow:
    0 32px 80px rgba(86, 85, 154, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: drop-shadow(0 30px 42px rgba(111, 124, 211, 0.22));
}

.hero-floating {
  display: none;
}

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}

.section-heading-tight {
  margin-bottom: 20px;
}

.section-subtitle {
  max-width: 720px;
}

.feature-grid,
.package-grid,
.steps-grid,
.twin-grid,
.form-grid,
.cta-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

.info-card,
.package-card,
.step-card,
.panel-card,
.trust-card,
.loss-panel,
.contact-form,
.form-copy,
.cta-copy,
.cta-visual {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.info-card {
  padding: 24px;
}

.info-card h3 {
  margin-bottom: 10px;
}

.split-heading {
  gap: 18px;
}

.section-badge {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(111, 94, 255, 0.16);
  box-shadow: var(--shadow-soft);
}

.section-badge img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.package-grid {
  align-items: start;
}

.package-card {
  display: grid;
  gap: 16px;
  padding: 26px;
}

.package-card-featured {
  background: linear-gradient(180deg, rgba(102, 116, 255, 0.95), rgba(117, 97, 255, 0.9));
  color: #fff;
  border-color: rgba(112, 125, 255, 0.45);
  box-shadow: 0 30px 50px rgba(77, 82, 202, 0.24);
}

.package-card-featured p,
.package-card-featured li,
.package-card-featured .package-topline {
  color: rgba(255, 255, 255, 0.86);
}

.package-card-featured .button-secondary,
.package-card-featured .button-primary {
  background: #fff;
  color: var(--primary-deep);
  box-shadow: none;
}

.package-topline {
  color: var(--primary-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-audience {
  font-weight: 700;
}

.package-card ul {
  display: grid;
  gap: 10px;
}

.package-card li {
  position: relative;
  padding-left: 24px;
}

.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #73a4ff 0%, #7e66ff 100%);
}

.loss-panel {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 247, 255, 0.9)),
    radial-gradient(circle at top right, rgba(153, 128, 255, 0.14), transparent 30%);
}

.loss-list {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.loss-list p {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(112, 129, 255, 0.12);
}

.loss-accent {
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(101, 121, 255, 0.1), rgba(148, 116, 255, 0.12));
  color: var(--text);
  font-weight: 800;
}

.process-intro,
.form-copy,
.cta-copy {
  display: grid;
  gap: 24px;
}

.process-banner,
.cta-visual {
  overflow: hidden;
}

.process-banner img,
.cta-visual img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.step-card {
  padding: 24px;
}

.step-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-deep);
  font-size: 0.82rem;
  font-weight: 800;
}

.step-card h3 {
  margin-bottom: 10px;
}

.panel-card {
  padding: 26px;
}

.panel-card-accent {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(239, 244, 255, 0.95));
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding: 14px 14px 14px 44px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(112, 129, 255, 0.12);
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #73a4ff 0%, #7e66ff 100%);
}

.trust-card {
  display: grid;
  gap: 20px;
  padding: 28px;
}

.trust-avatar {
  width: 82px;
  height: 82px;
  border-radius: 24px;
  padding: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(231, 238, 255, 0.96));
  box-shadow: var(--shadow-soft);
}

.trust-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section-cta {
  padding-bottom: 28px;
}

.cta-note {
  font-weight: 700;
}

.section-form {
  padding-top: 32px;
}

.form-copy,
.contact-form {
  padding: 26px;
}

.contact-points {
  display: grid;
  gap: 14px;
}

.contact-points div {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(112, 129, 255, 0.12);
}

.contact-points strong {
  font-size: 1rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(241, 245, 255, 0.95));
}

.form-row {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(112, 129, 255, 0.18);
  border-radius: 16px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(90, 109, 255, 0.42);
  box-shadow: 0 0 0 4px rgba(90, 109, 255, 0.12);
}

.form-textarea textarea {
  resize: vertical;
  min-height: 140px;
}

.form-note {
  font-size: 0.9rem;
}

.form-success {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(96, 114, 255, 0.1);
  border: 1px solid rgba(96, 114, 255, 0.2);
  color: var(--primary-deep);
  font-weight: 700;
}

.site-footer {
  padding: 28px 0 24px;
}

.brand-footer {
  align-items: flex-start;
}

.site-footer h3 {
  margin-bottom: 14px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 26px;
  margin-top: 22px;
  border-top: 1px solid rgba(112, 129, 255, 0.12);
  color: var(--muted);
  font-size: 0.92rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (min-width: 768px) {
  .section {
    padding: 96px 0;
  }

  .hero-section {
    padding: 26px 0 92px;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .hero-grid,
  .process-grid,
  .cta-grid,
  .form-grid {
    grid-template-columns: 1.04fr 0.96fr;
    align-items: center;
  }

  .feature-grid,
  .steps-grid,
  .twin-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split-heading {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: end;
  }

  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-card {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 960px) {
  .site-header {
    padding-top: 24px;
  }

  .header-inner {
    min-height: 74px;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 42px;
  }

  .desktop-nav a {
    color: #5f6da5;
    font-size: 1.04rem;
    font-weight: 500;
  }

  .desktop-nav a:hover,
  .desktop-nav a:focus-visible {
    color: #354377;
  }

  .header-cta {
    display: inline-flex;
    min-height: 54px;
    padding: 0 28px;
  }

  .menu-toggle,
  .mobile-menu {
    display: none;
  }

  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .footer-grid {
    grid-template-columns: 1.2fr 0.7fr 0.7fr;
  }

  .hero-section {
    padding: 18px 0 106px;
  }

  .hero-section::before {
    left: -2%;
    right: -2%;
    bottom: -7%;
    height: 34%;
    border-radius: 56% 44% 0 0 / 40% 40% 0 0;
    opacity: 0.7;
  }

  .hero-section::after {
    right: -2%;
    width: 56%;
    height: 88%;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
    align-items: center;
    gap: 30px;
  }

  .hero-copy {
    gap: 22px;
    padding-top: 38px;
  }

  .hero-copy h1 {
    max-width: 10.2ch;
    font-size: clamp(3.8rem, 5.4vw, 5.25rem);
    line-height: 1.02;
  }

  .hero-lead {
    max-width: 22ch;
    font-size: 1.14rem;
    line-height: 1.7;
  }

  .hero-points {
    gap: 0;
    max-width: 520px;
    border-radius: 26px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.26);
    box-shadow: 0 24px 44px rgba(110, 118, 184, 0.12);
    backdrop-filter: blur(22px);
  }

  .hero-points li {
    padding: 20px 24px 20px 58px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.22);
    border: 0;
    border-bottom: 1px solid rgba(182, 188, 255, 0.22);
    box-shadow: none;
    font-size: 0.96rem;
  }

  .hero-points li:last-child {
    border-bottom: 0;
  }

  .hero-actions {
    gap: 16px;
  }

  .hero-actions .button {
    min-height: 58px;
    padding: 0 30px;
    font-size: 0.98rem;
  }

  .hero-actions .button-secondary {
    min-width: 238px;
  }

  .hero-note {
    font-size: 0.95rem;
    max-width: 56ch;
  }

  .hero-visual {
    min-height: 580px;
    justify-content: flex-end;
    margin-top: 0;
  }

  .hero-card {
    width: min(100%, 700px);
    transform: translateX(18px);
  }

  .hero-card img {
    filter: drop-shadow(0 34px 54px rgba(103, 116, 205, 0.16));
  }
}

@media (min-width: 1200px) {
  .container {
    width: min(calc(100% - 64px), var(--container));
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(540px, 0.96fr);
    gap: 12px;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero-card {
    width: 760px;
    max-width: none;
    transform: translateX(42px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
