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

:root {
  --bg: #f2f0f8;
  --bg2: #ece8f8;
  --ink: #201833;
  --ink2: #5a526f;
  --ink3: #8a82a0;
  --accent: #8f70e6;
  --accent2: #eee8ff;
  --green: #248057;
  --green-bg: #e6f4ed;
  --border: #dcd4ed;
  --radius: 14px;
  --radius-lg: 22px;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Instrument Sans", sans-serif;
  background: radial-gradient(circle at 20% -10%, #f7f5ff 0, var(--bg) 56%, #eeebf7 100%);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, nav, .price-val, .badge, .btn-primary, .plan-name {
  font-family: "Syne", sans-serif;
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(250, 248, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 0;
  border-radius: 0;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
}

.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin-left: auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.85);
  padding: 10px 9px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle span {
  width: 100%;
  height: 2px;
  border-radius: 10px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.nav-links a {
  color: var(--ink2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--ink); }

.btn-primary {
  background: linear-gradient(145deg, #ad8bff, var(--accent));
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  display: inline-block;
  box-shadow: 0 12px 24px rgba(136, 103, 232, 0.3);
}

.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }

nav .btn-primary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid #6f5f96;
  box-shadow: none;
  padding: 9px 18px;
  font-size: 13px;
}

nav .btn-primary:hover {
  background: #fff;
  opacity: 1;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  border: 1.5px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}

.btn-outline:hover { border-color: var(--ink); background: #fff; }

.hero {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 34px;
  align-items: center;
  padding: 66px 0 58px;
  margin: 0;
  min-height: 74vh;
  border: 0;
  border-radius: 0;
 max-width: 1200px;
 margin: 0 auto;
  box-shadow: none;
  position: relative;
  z-index: 2;
  overflow: hidden;
  
}

.hero-section {
  width: 100%;
  padding: 0;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
   background:
    radial-gradient(circle at 84% 22%, rgba(180, 156, 247, 0.3), rgba(180, 156, 247, 0)),
    linear-gradient(180deg, rgba(253, 252, 255, 0.92), rgba(241, 236, 252, 0.86));
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hero-section::before {
  width: min(520px, 44vw);
  aspect-ratio: 1 / 1;
  left: -12%;
  top: 8%;
  border-radius: 42% 58% 55% 45% / 48% 44% 56% 52%;
  background:
    radial-gradient(circle at 30% 30%, rgba(193, 170, 255, 0.5), rgba(193, 170, 255, 0.1) 45%, rgba(193, 170, 255, 0) 70%),
    radial-gradient(circle at 72% 68%, rgba(152, 198, 255, 0.35), rgba(152, 198, 255, 0) 65%);
  filter: blur(2px);
}

.hero-section::after {
  width: min(700px, 62vw);
  height: min(300px, 30vw);
  right: -8%;
  bottom: -8%;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(174, 143, 255, 0.32) 0%, rgba(174, 143, 255, 0.12) 48%, rgba(174, 143, 255, 0) 74%);
}

.hero::before,
.hero::after {
  content: "✦";
  position: absolute;
  color: #beafe7;
  font-size: 18px;
  opacity: 0.9;
}

.hero::before { top: 18%; left: 10%; }
.hero::after { top: 62%; right: 13%; font-size: 16px; }

.hero-left {
  padding-left: 14px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent2);
  color: var(--accent);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
  font-family: "Syne", sans-serif;
}

.hero-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  display: block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

h1 {
  font-size: clamp(40px, 5.1vw, 66px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--ink);
  margin-bottom: 22px;
  max-width: 670px;
}

.hero-sub {
  font-size: 16px;
  color: var(--ink2);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 560px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink3);
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 100px;
  font-family: "Syne", sans-serif;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: stretch;
  justify-content: center;
  max-width: 420px;
  width: 100%;
  justify-self: end;
}

.tg-card {
  background: linear-gradient(180deg, #fbf9ff, #f2edff);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 14px 14px 16px;
  box-shadow: 0 10px 30px rgba(88, 67, 145, 0.18);
  animation: float 4s ease-in-out infinite;
  position: relative;
}

.tg-card::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 6px;
  border-radius: 999px;
  background: #dfd6f3;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.tg-header { display: flex; align-items: center; gap: 8px; margin: 8px 0 12px; }
.tg-avatar { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, #8a67e8, #b095ff); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 11px; font-weight: 700; font-family: "Syne", sans-serif; flex-shrink: 0; }
.tg-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.tg-meta { font-size: 10px; color: var(--ink3); }
.tg-msg { font-size: 12px; color: var(--ink2); line-height: 1.45; background: #f0eafe; border-radius: 8px 12px 12px 12px; padding: 9px 10px; display: inline-block; margin-bottom: 8px; max-width: 92%; }
.tg-msg.me { background: var(--accent); color: #fff; border-radius: 14px 4px 14px 14px; margin-left: auto; display: block; text-align: left; }
.tg-file { display: flex; align-items: center; gap: 9px; background: #f5f1ff; border: 1px solid var(--border); border-radius: 10px; padding: 8px 10px; margin-top: 8px; font-size: 12px; }
.file-icon { width: 28px; height: 28px; background: var(--accent2); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 14px; flex-shrink: 0; }
.file-name { font-weight: 600; color: var(--ink); font-size: 12px; }
.file-size { color: var(--ink3); font-size: 11px; }

.status-card { background: #f6f2ff; border: 1px solid var(--border); border-radius: 16px; padding: 10px 11px; display: flex; align-items: center; gap: 10px; animation: float 4s ease-in-out infinite 1s; }
.status-icon { width: 28px; height: 28px; background: linear-gradient(145deg, #9b7bf0, #7f60dd); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px; flex-shrink: 0; }
.status-title { font-size: 12px; font-weight: 700; color: #5e43a8; font-family: "Syne", sans-serif; }
.status-sub { font-size: 10.5px; color: #776499; line-height: 1.35; }

.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin: 0 0 80px; }
.stat { background: var(--bg); padding: 36px 48px; text-align: center; }
.stat-val { font-family: "Syne", sans-serif; font-size: 42px; font-weight: 800; color: var(--ink); letter-spacing: -2px; line-height: 1; margin-bottom: 6px; }
.stat-lbl { font-size: 14px; color: var(--ink3); }

section { padding: 80px 48px; max-width: 1200px; margin: 0 auto; }
.section-label { font-family: "Syne", sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
h2 { font-size: clamp(28px, 4vw, 46px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.1; color: var(--ink); margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--ink2); max-width: 560px; line-height: 1.6; margin-bottom: 52px; }

.for-whom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.for-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.for-card.highlight { background: var(--ink); border-color: var(--ink); color: #fff; }
.for-card.highlight .card-label { color: rgba(255,255,255,0.55); }
.for-card.highlight h3 { color: #fff; }
.for-card.highlight .check-item { color: rgba(255,255,255,0.85); }
.for-card.highlight .check-icon { background: rgba(255,255,255,0.15); color: #fff; }
.card-label { font-family: "Syne", sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink3); margin-bottom: 12px; }
.for-card h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.5px; color: var(--ink); margin-bottom: 24px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-item { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--ink2); }
.check-icon { width: 24px; height: 24px; border-radius: 6px; background: var(--accent2); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; font-weight: 700; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; position: relative; overflow: hidden; }
.step-card::before { content: attr(data-num); position: absolute; top: -10px; right: 16px; font-family: "Syne", sans-serif; font-size: 88px; font-weight: 800; color: var(--bg2); line-height: 1; pointer-events: none; z-index: 0; }
.step-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--accent2); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; position: relative; z-index: 1; }
.step-card h3 { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 10px; position: relative; z-index: 1; letter-spacing: -0.3px; }
.step-card p { font-size: 14px; color: var(--ink2); line-height: 1.6; position: relative; z-index: 1; }
.step-time { display: inline-block; margin-top: 14px; font-size: 12px; font-weight: 600; color: var(--accent); background: var(--accent2); padding: 4px 10px; border-radius: 100px; font-family: "Syne", sans-serif; position: relative; z-index: 1; }
.step-note { text-align: center; margin-top: 28px; font-size: 13px; color: var(--ink3); background: var(--bg2); border-radius: 10px; padding: 12px 20px; }

.calendar-strip { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 32px; margin-bottom: 80px; }
.cal-title { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 20px; font-family: "Syne", sans-serif; }
.cal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.cal-item { background: var(--bg2); border-radius: 10px; padding: 14px 16px; position: relative; border-left: 3px solid var(--border); }
.cal-item.q1 { border-color: #8a67e8; }
.cal-item.q2 { border-color: #1e6b45; }
.cal-item.q3 { border-color: #bf6000; }
.cal-item.q4 { border-color: #c23b22; }
.cal-q { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink3); margin-bottom: 4px; font-family: "Syne", sans-serif; }
.cal-date { font-size: 14px; font-weight: 600; color: var(--ink); }
.cal-note { font-size: 11px; color: var(--ink3); margin-top: 3px; }

.pricing-wrap { background: var(--bg2); border-radius: 32px; padding: 64px 48px; margin: 0 0 80px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px; }
.plan-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; position: relative; transition: transform 0.2s, box-shadow 0.2s; }
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(68, 52, 115, 0.16); }
.plan-card.featured { background: var(--ink); border-color: var(--ink); color: #fff; }
.popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 14px; border-radius: 100px; font-family: "Syne", sans-serif; white-space: nowrap; }
.plan-name { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink3); margin-bottom: 8px; }
.plan-card.featured .plan-name { color: rgba(255,255,255,0.5); }
.price-val { font-size: 44px; font-weight: 800; letter-spacing: -2px; color: var(--ink); line-height: 1; margin-bottom: 4px; }
.plan-card.featured .price-val { color: #fff; }
.price-currency { font-size: 20px; font-weight: 600; vertical-align: super; margin-right: 2px; font-family: "Syne", sans-serif; }
.price-note { font-size: 12px; color: var(--ink3); margin-bottom: 24px; }
.plan-card.featured .price-note { color: rgba(255,255,255,0.4); }
.plan-divider { height: 1px; background: var(--border); margin: 20px 0; }
.plan-card.featured .plan-divider { background: rgba(255,255,255,0.12); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--ink2); line-height: 1.4; }
.plan-card.featured .plan-feature { color: rgba(255,255,255,0.8); }
.feat-check { color: #22884f; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.plan-card.featured .feat-check { color: #6ee7a8; }
.plan-cta { width: 100%; padding: 13px; border-radius: 10px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: "Syne", sans-serif; transition: opacity 0.2s, transform 0.15s; border: none; }
.plan-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.plan-cta.dark { background: var(--ink); color: #fff; }
.plan-cta.light { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.25); }
.plan-cta.outline { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }

.security-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.sec-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 26px; display: flex; gap: 16px; align-items: flex-start; }
.sec-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--bg2); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.sec-card h4 { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 5px; font-family: "Syne", sans-serif; }
.sec-card p { font-size: 13px; color: var(--ink2); line-height: 1.5; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testi-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.testi-stars { color: #f5a623; font-size: 14px; margin-bottom: 14px; }
.testi-text { font-size: 14px; color: var(--ink2); line-height: 1.65; font-style: italic; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar { width: 36px; height: 36px; border-radius: 50%; font-size: 13px; font-weight: 700; font-family: "Syne", sans-serif; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.a1 { background: #dbe8ff; color: #5e44a5; }
.a2 { background: #e6f4ed; color: #1e6b45; }
.a3 { background: #fff3e0; color: #bf6000; }
.testi-name { font-size: 13px; font-weight: 600; color: var(--ink); font-family: "Syne", sans-serif; }
.testi-role { font-size: 11px; color: var(--ink3); }

.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 22px 4px; background: none; border: none; cursor: pointer; text-align: left; font-size: 16px; font-weight: 600; color: var(--ink); font-family: "Syne", sans-serif; gap: 16px; }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--bg2); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--ink2); flex-shrink: 0; transition: transform 0.25s, background 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--ink); color: #fff; }
.faq-a { font-size: 14.5px; color: var(--ink2); line-height: 1.65; padding: 0 4px 20px; display: none; }
.faq-item.open .faq-a { display: block; }

.cta-final { background: var(--ink); border-radius: 32px; padding: 80px 60px; text-align: center; margin: 0 48px 80px; }
.cta-final h2 { color: #fff; margin-bottom: 14px; }
.cta-final p { color: rgba(255,255,255,0.68); font-size: 17px; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--ink); padding: 14px 28px; border-radius: 10px; font-size: 15px; font-weight: 700; font-family: "Syne", sans-serif; border: none; cursor: pointer; text-decoration: none; transition: opacity 0.2s; display: inline-block; }
.btn-white:hover { opacity: 0.9; }
.btn-ghost { background: rgba(255,255,255,0.1); color: #fff; padding: 14px 28px; border-radius: 10px; font-size: 15px; font-weight: 600; font-family: "Syne", sans-serif; border: 1px solid rgba(255,255,255,0.2); cursor: pointer; text-decoration: none; transition: background 0.2s; display: inline-block; }
.btn-ghost:hover { background: rgba(255,255,255,0.16); }

footer { padding: 40px 48px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; color: var(--ink3); font-size: 13px; flex-wrap: wrap; gap: 12px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--ink3); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--ink); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; padding: 52px 0 44px; text-align: center; }
  .hero-sub { max-width: 100%; }
  .hero-tags, .hero-ctas { justify-content: center; }
  .hero-visual { max-width: 520px; margin: 0 auto; }
  .for-whom-grid, .steps-grid, .pricing-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .cal-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .shell { width: min(1200px, calc(100% - 18px)); }
  nav { padding: 12px 0; }
  .nav-shell { position: relative; }
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    margin-left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(251, 249, 255, 0.98);
    box-shadow: 0 14px 28px rgba(57, 40, 108, 0.12);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { font-size: 14px; display: block; padding: 10px 12px; border-radius: 10px; }
  .nav-links a:not(.btn-primary):hover { background: var(--bg2); }
  nav .btn-primary { width: 100%; text-align: center; margin-top: 4px; }
  section { padding: 64px 16px; }
  .hero { padding: 40px 0 34px; }
  .hero-left { padding-left: 0; }
  .stats-row { grid-template-columns: 1fr; margin-bottom: 56px; }
  .stat { padding: 24px 18px; }
  .pricing-wrap { padding: 40px 18px; border-radius: 24px; }
  .calendar-strip { padding: 18px 14px; }
  .cal-grid { grid-template-columns: 1fr; }
  .cta-final { margin: 0 16px 60px; padding: 48px 18px; }
  footer { padding: 26px 16px; }
  .hero-section {
    padding: 10px;
  }
  .hero-section::before {
    width: 72vw;
    left: -26%;
    top: 10%;
    opacity: 0.72;
  }
  .hero-section::after {
    width: 90vw;
    right: -24%;
    bottom: -10%;
    opacity: 0.85;
  }
}
