:root {
  --green: #8bd000;
  --green-dark: #4f7900;
  --green-soft: #edf8d8;
  --ink: #111511;
  --ink-soft: #2b322a;
  --text: #30362f;
  --muted: #687066;
  --line: #dfe5dc;
  --surface: #ffffff;
  --surface-soft: #f5f7f3;
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 32px;
  --shadow: 0 18px 50px rgba(17, 21, 17, 0.09);
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  max-width: 830px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

p {
  margin-bottom: 20px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 0.9rem;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.topbar a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
}

.topbar a:hover {
  opacity: 1;
  text-decoration: underline;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(17, 21, 17, 0.08);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  text-decoration: none;
  flex: 0 0 auto;
}

.brand-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
}

.brand-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.brand-text {
  display: grid;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 1.22rem;
  letter-spacing: -0.02em;
}

.brand-text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 10px 13px;
  border-radius: 9px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--green-soft);
  color: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 82px;
  background:
    radial-gradient(circle at 90% 5%, rgba(139, 208, 0, 0.2), transparent 29%),
    linear-gradient(180deg, #fbfcfa 0%, #fff 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -140px;
  bottom: -190px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(139, 208, 0, 0.34);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(139, 208, 0, 0.05), 0 0 0 110px rgba(139, 208, 0, 0.04);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.7fr);
  align-items: center;
  gap: clamp(46px, 7vw, 100px);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-intro {
  max-width: 700px;
  margin-bottom: 32px;
  color: #4e574c;
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  border: 2px solid transparent;
  border-radius: 12px;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--green);
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(90, 132, 0, 0.2);
}

.button-primary:hover {
  background: #99df0c;
  box-shadow: 0 14px 30px rgba(90, 132, 0, 0.26);
}

.button-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.full-width {
  width: 100%;
}

.hero-facts {
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  list-style: none;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-facts li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.check {
  width: 23px;
  height: 23px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 900;
}

.hero-visual {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 26px 0 34px;
}

.portrait-frame {
  position: relative;
  width: min(100%, 340px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.portrait-frame img {
  position: relative;
  z-index: 2;
  width: min(82%, 280px);
  aspect-ratio: 1;
  border: 10px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.portrait-accent {
  position: absolute;
  inset: 0;
  border-radius: 42% 58% 61% 39% / 52% 44% 56% 48%;
  background: var(--green);
  transform: rotate(-7deg);
}

.personal-card {
  position: absolute;
  z-index: 3;
  right: -18px;
  bottom: 12px;
  max-width: 255px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 15px 17px;
  border: 1px solid rgba(17, 21, 17, 0.08);
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--shadow);
}

.status-dot {
  width: 11px;
  height: 11px;
  margin-top: 4px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px var(--green-soft);
}

.personal-card strong,
.personal-card span {
  display: block;
}

.personal-card strong {
  color: var(--ink);
  font-size: 0.88rem;
}

.personal-card span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.4;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.trust-grid {
  min-height: 112px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.trust-grid > div {
  display: grid;
  justify-items: center;
  padding: 12px 30px;
  text-align: center;
}

.trust-grid > div + div {
  border-left: 1px solid var(--line);
}

.trust-grid strong {
  color: var(--ink);
  font-size: 1.12rem;
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  padding: 96px 0;
}

.section-soft {
  background: var(--surface-soft);
}

.section-heading {
  max-width: 750px;
  margin-bottom: 46px;
}

.section-heading.compact {
  margin-bottom: 40px;
}

.section-heading > p:last-child,
.about-copy p,
.page-hero p,
.travel-grid p,
.faq-layout > div > p {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card,
.price-card,
.work-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.service-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(17, 21, 17, 0.04);
}

.service-card.featured {
  border-top: 5px solid var(--green);
}

.dark-card {
  border-color: var(--ink);
  background: var(--ink);
  color: #dfe6dc;
}

.dark-card h3,
.dark-card .price,
.dark-card .text-link {
  color: #fff;
}

.dark-card .card-label {
  background: rgba(139, 208, 0, 0.16);
  color: #b8ed51;
}

.dark-card .clean-list li::before {
  color: var(--green);
}

.card-topline {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 25px;
}

.card-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price {
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.service-card > p {
  color: inherit;
  opacity: 0.82;
}

.clean-list {
  margin: 4px 0 26px;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 25px;
}

.clean-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-dark);
  font-weight: 900;
}

.text-link {
  margin-top: auto;
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.steps {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
}

.steps li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
}

.step-number {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  font-weight: 900;
}

.steps h3 {
  margin-bottom: 8px;
  font-size: 1.14rem;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.about-image {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  background: var(--green-soft);
  overflow: hidden;
}

.about-image::before,
.about-image::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.about-image::before {
  width: 240px;
  height: 240px;
  top: -110px;
  right: -70px;
  background: var(--green);
  opacity: 0.7;
}

.about-image::after {
  width: 170px;
  height: 170px;
  left: -75px;
  bottom: -70px;
  border: 35px solid rgba(139, 208, 0, 0.35);
}

.about-image img {
  position: relative;
  z-index: 2;
  width: 280px;
  aspect-ratio: 1;
  border: 9px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-copy {
  max-width: 650px;
}

.contact-section {
  padding: 84px 0;
  background: var(--ink);
  color: #e5ebe2;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  align-items: center;
  gap: clamp(40px, 8vw, 100px);
}

.contact-section h2 {
  color: #fff;
}

.contact-section p {
  color: #b8c0b5;
}

.eyebrow-light {
  color: #b8ed51;
}

.contact-actions {
  display: grid;
  gap: 10px;
}

.contact-item {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  color: #fff;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease;
}

.contact-item:hover {
  border-color: var(--green);
  background: rgba(139, 208, 0, 0.08);
}

.contact-item span {
  color: #aeb7ab;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-item strong {
  overflow-wrap: anywhere;
  text-align: right;
}

.site-footer {
  padding: 65px 0 25px;
  background: #f1f4ef;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 38px;
}

.footer-grid > div {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 8px;
}

.footer-brand {
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 900;
  text-decoration: none;
}

.footer-grid p,
.footer-grid a {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-grid a {
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--ink);
  text-decoration: underline;
}

.footer-grid strong {
  margin-bottom: 5px;
  color: var(--ink);
}

.footer-bottom {
  margin-top: 46px;
  padding-top: 20px;
  border-top: 1px solid #d7ddd4;
  color: var(--muted);
  font-size: 0.8rem;
}

.page-hero {
  padding: 82px 0;
  background:
    radial-gradient(circle at 92% 8%, rgba(139, 208, 0, 0.25), transparent 28%),
    var(--surface-soft);
}

.page-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  align-items: center;
  gap: clamp(40px, 8vw, 100px);
}

.page-hero-grid > div > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.travel-badge {
  display: grid;
  gap: 6px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.travel-badge span {
  color: #b8ed51;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.travel-badge strong {
  font-size: 1.36rem;
}

.travel-badge small {
  color: #bdc5ba;
}

.price-grid {
  max-width: 950px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px;
  box-shadow: 0 12px 36px rgba(17, 21, 17, 0.05);
  scroll-margin-top: 130px;
}

.price-card.highlighted {
  border: 2px solid var(--green);
}

.recommended {
  position: absolute;
  top: 0;
  right: 28px;
  padding: 6px 13px;
  border-radius: 0 0 10px 10px;
  background: var(--green);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 8px 0 30px;
}

.large-price {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 950;
  letter-spacing: -0.06em;
}

.price-card > p {
  color: var(--muted);
}

.price-card .clean-list {
  margin-bottom: 32px;
}

.price-card .button {
  margin-top: auto;
}

.price-note {
  max-width: 850px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.work-card {
  padding: 26px;
}

.work-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.work-card h3 {
  font-size: 1.15rem;
}

.work-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.travel-section {
  background: #fff;
}

.travel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.muted {
  color: var(--muted);
  font-size: 0.9rem;
}

.travel-numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.travel-numbers > div {
  min-height: 150px;
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 25px;
  text-align: center;
}

.travel-numbers > div:first-child {
  background: var(--green);
}

.travel-numbers > div:last-child {
  background: var(--ink);
  color: #fff;
}

.travel-numbers strong {
  color: inherit;
  font-size: 1.3rem;
}

.travel-numbers span {
  margin-top: 5px;
  color: inherit;
  font-size: 0.88rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(40px, 8vw, 100px);
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.faq-list summary {
  position: relative;
  padding: 20px 54px 20px 20px;
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.mobile-actions {
  display: none;
}

@media (max-width: 1020px) {
  .header-inner {
    min-height: auto;
    padding-block: 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .main-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .main-nav a {
    white-space: nowrap;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: 45px;
  }

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

  .service-card:last-child {
    grid-column: 1 / -1;
  }

  .steps {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  body {
    padding-bottom: 68px;
    font-size: 16px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .topbar-inner {
    justify-content: center;
    gap: 14px;
    font-size: 0.78rem;
  }

  .header-inner {
    padding-block: 12px;
  }

  .brand-icon {
    width: 44px;
    height: 44px;
  }

  .brand-text strong {
    font-size: 1.08rem;
  }

  .brand-text small {
    font-size: 0.66rem;
  }

  .main-nav {
    gap: 2px;
  }

  .main-nav a {
    padding: 8px 10px;
    font-size: 0.82rem;
  }

  .hero {
    padding: 60px 0 64px;
  }

  .hero-grid,
  .page-hero-grid,
  .about-grid,
  .contact-grid,
  .travel-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    width: min(100%, 380px);
    margin: 0 auto;
  }

  .personal-card {
    right: 0;
  }

  .hero-facts {
    display: grid;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    padding-block: 12px;
  }

  .trust-grid > div {
    padding: 13px;
  }

  .trust-grid > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: 72px 0;
  }

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

  .service-grid,
  .price-grid,
  .work-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card:last-child {
    grid-column: auto;
  }

  .service-card,
  .price-card {
    padding: 25px;
  }

  .about-image {
    min-height: 340px;
  }

  .contact-grid {
    gap: 35px;
  }

  .contact-item {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .contact-item strong {
    text-align: left;
  }

  .footer-grid {
    gap: 30px;
  }

  .page-hero {
    padding: 60px 0;
  }

  .page-hero-grid,
  .travel-grid,
  .faq-layout {
    gap: 34px;
  }

  .travel-numbers {
    grid-template-columns: 1fr;
  }

  .travel-numbers > div {
    min-height: 120px;
  }

  .mobile-actions {
    position: fixed;
    z-index: 200;
    right: 0;
    bottom: 0;
    left: 0;
    height: 62px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    padding: 6px;
    background: var(--ink);
    box-shadow: 0 -6px 22px rgba(0, 0, 0, 0.2);
  }

  .mobile-actions a {
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: #fff;
    color: var(--ink);
    font-size: 0.88rem;
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-actions a.whatsapp {
    background: var(--green);
  }
}

@media (max-width: 430px) {
  .topbar-inner {
    min-height: 52px;
    flex-direction: column;
    gap: 0;
    padding-block: 6px;
  }

  h1 {
    font-size: 2.55rem;
  }

  .button-row .button {
    width: 100%;
  }

  .portrait-frame {
    width: 290px;
  }

  .personal-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: -10px;
  }

  .card-topline,
  .price-card-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .price-card-head {
    margin-top: 22px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
