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

:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #a07830;
  --black: #111010;
  --dark: #1a1814;
  --cream: #f8f5f0;
  --cream2: #efe9e0;
  --text: #2a2520;
  --muted: #7a6e62;
  --border-gold: rgba(201, 168, 76, 0.25);
  --border-light: rgba(42, 37, 32, 0.1);
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 66px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  overflow-x: hidden;
}

a {
  color: inherit;
}

nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  min-height: 58px;
  padding: 0.55rem 2rem;
  background: rgba(17, 16, 16, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold);
}

.nav-logo {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
}

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

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.4rem;
  font-family: "Segoe UI", Arial, sans-serif;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a,
.nav-phone {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-phone:hover {
  color: var(--gold);
}

.nav-cta,
.btn-gold,
.btn-outline,
.modal-cta,
.srv-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s;
}

.nav-cta {
  min-height: 36px;
  padding: 0.65rem 1.1rem;
  background: var(--gold);
  color: var(--black);
}

.btn-gold,
.modal-cta {
  border: 0;
  padding: 0.95rem 2.4rem;
  background: var(--gold);
  color: var(--black);
}

.btn-gold:hover,
.nav-cta:hover,
.modal-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.95rem 2.4rem;
  color: rgba(255, 255, 255, 0.76);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

#hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 5.5rem 2rem 2.5rem;
  background:
    radial-gradient(circle at 50% 45%, rgba(201, 168, 76, 0.08), transparent 34rem),
    var(--black);
  color: #fff;
  text-align: center;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.09) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-region,
.sec-label {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero-region {
  margin-bottom: 1.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
}

.hero-h1 {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.hero-logo {
  width: clamp(330px, 82vw, 760px);
  height: auto;
  display: block;
  margin: 0.5rem 0;
}

.hero-divider,
.gold-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-divider {
  width: 60px;
  margin: 1.8rem auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-tagline {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  line-height: 2;
  text-transform: uppercase;
}

.hero-btns {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

section {
  padding: 7rem 3rem;
}

.sec-title {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}

.sec-title em,
#vorteile h2 em,
#why h2 em,
#faq h2 em {
  color: var(--gold);
  font-style: italic;
}

.sec-sub {
  max-width: 520px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.75;
}

.gold-line {
  margin: 1.5rem 0;
}

#services {
  position: relative;
  z-index: 1;
  padding-top: 3rem;
  background: var(--cream);
}

.srv-header,
.faq-head,
.vorteile-head {
  margin-bottom: 4rem;
  text-align: center;
}

.srv-header .sec-sub,
.proc-head .sec-sub {
  margin: 1rem auto 0;
}

.srv-header .gold-line,
.proc-head .gold-line,
.why-inner .gold-line,
.contact-inner .gold-line,
.legal-page .gold-line {
  margin: 1.5rem auto;
}

.srv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.srv-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}

.srv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.srv-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 8px 40px rgba(201, 168, 76, 0.12);
  transform: translateY(-4px);
}

.srv-card:hover::before {
  transform: scaleX(1);
}

.srv-card a {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.srv-img-wrap {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: var(--cream2);
}

.srv-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: grayscale(10%);
  transition: filter 0.4s, transform 0.5s, opacity 1s ease;
}

.srv-card:hover .srv-bg {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.srv-body {
  padding: 1.8rem 1.8rem 2.5rem;
}

.srv-name {
  margin-bottom: 0.8rem;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.srv-desc {
  margin: 0 0 1.2rem;
  color: var(--muted);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.85rem;
  line-height: 1.7;
}

.srv-list {
  list-style: none;
  margin: 0;
  padding: 1.1rem 0 0;
  border-top: 1px solid var(--border-light);
}

.srv-list li {
  position: relative;
  margin-bottom: 0.55rem;
  padding-left: 1rem;
  color: var(--muted);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.8rem;
}

.srv-list li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 4px;
  height: 4px;
  background: var(--gold);
}

.srv-more {
  margin-top: 1.3rem;
  color: var(--gold);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.srv-num {
  position: absolute;
  right: 1.3rem;
  bottom: 1.1rem;
  color: rgba(42, 37, 32, 0.08);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.5rem;
  line-height: 1;
}

#vorteile,
#why {
  background: var(--dark);
  color: #fff;
}

#vorteile {
  padding: 5rem 2rem;
}

.vorteile-inner {
  max-width: 1100px;
  margin: 0 auto;
}

#vorteile h2,
#why h2,
#faq h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}

.vorteile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.vorteil {
  padding: 2rem;
  border: 1px solid rgba(201, 168, 76, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.vorteil-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 1.3rem;
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.05), rgba(201, 168, 76, 0.12));
}

.vorteil h3 {
  margin: 0 0 0.8rem;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 400;
}

.vorteil p,
.step-d,
.faq-a p,
.cinfo,
footer p,
.legal-copy p,
.legal-copy li,
.srv-page-content p,
.modal-list li {
  color: var(--muted);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.7;
}

.vorteil p,
#why p {
  color: rgba(255, 255, 255, 0.55);
}

#why {
  padding: 5rem 3rem;
}

.why-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.why-inner p {
  margin: 0 0 2.5rem;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}

.why-inner small {
  display: block;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.3);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

#process {
  background: var(--cream);
}

.proc-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.proc-head {
  margin-bottom: 3.5rem;
  text-align: center;
}

.proc-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--border-light);
  background: #fff;
}

.proc-step {
  min-height: 240px;
  padding: 2rem;
  border-right: 1px solid var(--border-light);
}

.proc-step:last-child {
  border-right: 0;
}

.step-num {
  margin-bottom: 2.2rem;
  color: var(--gold);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.step-t {
  margin-bottom: 0.8rem;
  color: var(--text);
  font-size: 1.1rem;
}

.step-d {
  margin: 0;
  font-size: 0.86rem;
}

#faq {
  padding: 5rem 2rem;
  background: var(--cream2);
}

.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq-head {
  margin-bottom: 3rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid var(--border-light);
  background: #fff;
}

.faq-q {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 1.1rem 1.3rem;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-plus {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1;
}

.faq-a {
  display: none;
  padding: 0 1.3rem 1.2rem;
}

.faq-a p {
  margin: 0;
  font-size: 0.9rem;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-item.open .faq-plus {
  transform: rotate(45deg);
}

#contact {
  background: var(--cream);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-inner .sec-sub,
.contact-inner .gold-line {
  margin-left: 0;
}

.cform {
  margin-top: 2.4rem;
}

.cform form {
  display: grid;
  gap: 1rem;
}

.frow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.fg {
  display: grid;
  gap: 0.45rem;
}

.flbl {
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.finp,
.ftxt,
.fsel {
  width: 100%;
  border: 1px solid var(--border-light);
  background: #fff;
  color: var(--text);
  padding: 0.95rem 1rem;
  font: 0.95rem "Segoe UI", Arial, sans-serif;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ftxt {
  min-height: 150px;
  resize: vertical;
}

.finp:focus,
.ftxt:focus,
.fsel:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.cform .btn-gold {
  justify-self: start;
}

.cinfo {
  display: grid;
  align-content: start;
  gap: 1.2rem;
  padding-top: 4.6rem;
}

.ci {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 1rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border-light);
}

.ci-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.ci-lbl {
  color: var(--muted);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ci-val {
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.65;
  text-decoration: none;
}

footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(180px, 0.6fr) minmax(180px, 0.6fr);
  gap: 3rem;
  padding: 4rem 3rem 2.5rem;
  background: var(--black);
  color: rgba(255, 255, 255, 0.65);
}

footer h3 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
}

footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.86rem;
}

.fl {
  max-width: 480px;
}

.fl-img {
  width: min(260px, 80vw);
  height: auto;
  display: block;
  margin-bottom: 1.2rem;
}

.flinks,
.fsocial {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}

.flinks a,
.fsocial a {
  color: rgba(255, 255, 255, 0.65);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.86rem;
  text-decoration: none;
}

.flinks a:hover,
.fsocial a:hover {
  color: var(--gold);
}

.fc {
  grid-column: 1 / -1;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.wa-btn {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.subpage {
  padding-top: 58px;
}

.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 7rem 2rem;
}

.legal-page h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
  text-align: center;
}

.legal-page .sec-label {
  text-align: center;
}

.legal-copy {
  margin-top: 2.5rem;
}

.legal-copy h2,
.legal-copy h3 {
  margin: 2rem 0 0.75rem;
  color: var(--text);
  font-weight: 400;
}

.legal-copy h2 {
  font-size: 1.35rem;
}

.legal-copy h3 {
  font-size: 1.1rem;
}

.legal-copy p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.content-list {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
  color: var(--muted);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.7;
}

.content-page {
  background: var(--cream);
}

.content-page-hero {
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  padding: 8rem 3rem 4rem;
  background:
    radial-gradient(circle at 50% 25%, rgba(201, 168, 76, 0.12), transparent 32rem),
    var(--dark);
  background-position: center;
  background-size: cover;
  color: #fff;
}

.content-page-hero > div {
  width: min(900px, 100%);
  margin: 0 auto;
}

.content-page-hero h1 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
}

.content-page-hero p:not(.sec-label) {
  max-width: 680px;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
}

.content-page-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 4.5rem 2rem 6rem;
}

.content-page-body .modal-cta {
  margin-top: 1.4rem;
}

.srv-page {
  min-height: 100vh;
  background: var(--cream);
}

.srv-page-top {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 2rem;
  background: rgba(17, 16, 16, 0.96);
  border-bottom: 1px solid var(--border-gold);
}

.srv-back {
  min-height: 36px;
  border: 1px solid var(--border-gold);
  padding: 0.65rem 1rem;
  color: var(--gold);
  background: transparent;
}

.srv-back:hover {
  background: var(--gold);
  color: var(--black);
}

.srv-page-hero {
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  padding: 2.5rem 2rem;
  background-position: center;
  background-size: cover;
}

.srv-page-title {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}

.srv-page-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.srv-page-content h3 {
  margin: 2rem 0 0.6rem;
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.srv-page-content p {
  font-size: 0.92rem;
}

.srv-lead {
  color: var(--text) !important;
  font-size: 1rem !important;
}

.modal-list {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding-left: 1.2rem;
}

.srv-closing {
  margin: 1.6rem 0 2rem;
  color: var(--text) !important;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s, transform 0.45s;
}

.reveal.on {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .nav-phone {
    display: none;
  }

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

  .proc-step:nth-child(2) {
    border-right: 0;
  }

  .proc-step:nth-child(-n+2) {
    border-bottom: 1px solid var(--border-light);
  }

  .contact-inner,
  footer {
    grid-template-columns: 1fr;
  }

  .cinfo {
    padding-top: 0;
  }
}

@media (max-width: 860px) {
  nav {
    padding: 0.9rem 1.4rem;
  }

  .nav-links {
    display: none;
  }

  section {
    padding: 5rem 1.4rem;
  }

  #hero {
    min-height: 58vh;
    padding: 6rem 1.4rem 3rem;
  }

  .hero-logo {
    width: min(88vw, 520px);
  }

  .hero-tagline,
  .hero-region {
    letter-spacing: 0.16em;
  }

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

  footer {
    padding: 3rem 1.4rem 2rem;
  }
}

@media (max-width: 620px) {
  .nav-right {
    gap: 0.75rem;
  }

  .nav-cta {
    padding: 0.6rem 0.8rem;
    letter-spacing: 0.08em;
  }

  .hero-btns,
  .frow,
  .vorteile-grid,
  .proc-steps {
    grid-template-columns: 1fr;
  }

  .hero-btns {
    display: grid;
    width: min(100%, 330px);
  }

  .proc-step,
  .proc-step:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--border-light);
  }

  .proc-step:last-child {
    border-bottom: 0;
  }

  .contact-inner {
    gap: 2.5rem;
  }

  .content-page-hero {
    min-height: 360px;
    padding: 7rem 1.4rem 3rem;
  }

  .srv-page-top {
    padding: 0.9rem 1rem;
  }
}
