
:root {
  --purple: #64166f;
  --purple-dark: #4d1056;
  --green: #72a65a;
  --green-dark: #4e7d3c;
  --ink: #20272d;
  --muted: #667078;
  --line: #e6e9eb;
  --soft: #f5f6f6;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(32, 39, 45, .08);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(100,22,111,.13);
  box-shadow: 0 5px 22px rgba(32,39,45,.035);
}
.nav {
  min-height: 86px;
  display: flex; align-items: center; gap: 28px;
}
.brand img { width: 210px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.nav-links a { font-size: .95rem; font-weight: 650; color: #4d555b; transition: color .2s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--purple); }
.nav-cta, .btn-primary {
  background: var(--purple); color: white !important;
  padding: 12px 18px; border-radius: 999px; font-weight: 750;
  box-shadow: 0 8px 22px rgba(100,22,111,.18);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.nav-cta:hover, .btn-primary:hover {
  background: var(--purple-dark); transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(100,22,111,.24);
}
.menu-toggle {
  display: none; border: 0; background: var(--soft); color: var(--ink);
  width: 44px; height: 44px; border-radius: 12px; font-size: 1.35rem;
}

.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(100,22,111,.09), transparent 24%),
    radial-gradient(circle at 92% 82%, rgba(114,166,90,.10), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #f5f6f6 100%);
  padding: 94px 0 105px;
}
.hero::after {
  content: ""; position: absolute; width: 430px; height: 430px;
  border-radius: 50%; right: -170px; top: -180px;
  background: rgba(114,166,90,.10);
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr;
  align-items: center; gap: 70px; position: relative; z-index: 1;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--purple); font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; font-size: .78rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--purple);
}
h1 {
  font-size: clamp(3rem, 6vw, 5.6rem); line-height: .98;
  letter-spacing: -.055em; margin: 20px 0 24px; max-width: 850px;
}
.hero h1 span { color: var(--purple); }
.lead { font-size: 1.18rem; color: var(--muted); max-width: 650px; }
.actions { display: flex; gap: 13px; flex-wrap: wrap; margin-top: 30px; }
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 18px; border: 1px solid #d8dddf; border-radius: 999px;
  font-weight: 750; background: white; transition: .2s ease;
}
.btn-secondary:hover { border-color: var(--purple); color: var(--purple); transform: translateY(-2px); }

.hero-card {
  background: rgba(255,255,255,.88); border: 1px solid rgba(100,22,111,.12);
  border-radius: 30px; padding: 34px; box-shadow: var(--shadow);
  position: relative; backdrop-filter: blur(10px);
}
.hero-card::before {
  content: ""; position: absolute; width: 12px; height: 12px;
  border-radius: 50%; background: var(--green); top: 28px; right: 30px;
}
.hero-card h3 { margin: 0 0 10px; font-size: 1.45rem; }
.checks { list-style: none; padding: 0; margin: 24px 0 0; }
.checks li { padding: 10px 0 10px 28px; position: relative; color: #4d555b; }
.checks li::before {
  content: "✓"; position: absolute; left: 0; top: 10px;
  color: var(--green-dark); font-weight: 900;
}

.section { padding: 92px 0; }
.section.soft { background: var(--soft); }
.section-head { max-width: 720px; margin-bottom: 42px; }
.section-kicker {
  color: var(--purple); font-weight: 800; text-transform: uppercase;
  letter-spacing: .08em; font-size: .78rem;
}
h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); line-height: 1.05; letter-spacing: -.04em; margin: 10px 0 15px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

.cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.card {
  background: white; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative; overflow: hidden;
}
.card::after {
  content: ""; position: absolute; width: 90px; height: 90px; border-radius: 50%;
  right: -48px; bottom: -48px; background: rgba(100,22,111,.045);
  pointer-events: none;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(100,22,111,.18); }
.icon {
  width: 48px; height: 48px; display: grid; place-items: center;
  border-radius: 15px; background: rgba(100,22,111,.09);
  color: var(--purple); font-size: 1.25rem; margin-bottom: 20px;
  box-shadow: inset 0 0 0 1px rgba(100,22,111,.06);
}
.card h3 { margin: 0 0 9px; font-size: 1.25rem; }
.card p { margin: 0; color: var(--muted); }

.about-preview {
  display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center;
}
.about-box {
  background: linear-gradient(145deg, var(--purple), #7b2b84);
  color: white; border-radius: 30px; padding: 42px;
  min-height: 330px; display: flex; flex-direction: column; justify-content: flex-end;
}
.about-box .small { opacity: .75; font-size: .85rem; }
.about-box strong { font-size: 2.3rem; line-height: 1.1; margin-top: 8px; }
.about-copy p { color: var(--muted); font-size: 1.06rem; }
.text-link { color: var(--purple); font-weight: 800; display: inline-block; margin-top: 12px; }
.text-link:hover { text-decoration: underline; }

.cta {
  background: #222a2f; color: white; border-radius: 32px; padding: 55px;
  display: flex; justify-content: space-between; align-items: center; gap: 35px;
}
.cta h2 { margin: 0 0 10px; }
.cta p { color: #c7ced1; margin: 0; max-width: 650px; }
.cta .btn-primary { white-space: nowrap; }

.site-footer { background: #171d21; color: white; padding: 48px 0 25px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 45px; }
.footer-brand img { width: 200px; background: white; border-radius: 10px; padding: 8px; }
.footer p { color: #aeb8bd; max-width: 450px; }
.footer h4 { margin: 0 0 13px; }
.footer-links { display: grid; gap: 8px; color: #c8ced1; }
.footer-links a:hover { color: white; }
.footer-bottom {
  margin-top: 38px; padding-top: 20px; border-top: 1px solid #30383d;
  display: flex; justify-content: space-between; gap: 20px;
  color: #8f999e; font-size: .88rem;
}
.footer-bottom div { display: flex; gap: 18px; flex-wrap: wrap; }

.page-hero {
  position: relative; overflow: hidden; padding: 78px 0;
  background:
    radial-gradient(circle at 90% 30%, rgba(100,22,111,.11), transparent 25%),
    radial-gradient(circle at 74% 100%, rgba(114,166,90,.10), transparent 28%),
    var(--soft);
}
.page-hero::after {
  content: ""; position: absolute; width: 270px; height: 270px;
  right: -110px; bottom: -155px; border-radius: 50%;
  border: 2px solid rgba(100,22,111,.08);
  box-shadow: 0 0 0 18px rgba(100,22,111,.025), 0 0 0 36px rgba(114,166,90,.025);
  pointer-events: none;
}
.page-hero h1 { font-size: clamp(2.8rem, 5vw, 4.6rem); margin-bottom: 15px; }
.page-hero p { max-width: 700px; color: var(--muted); font-size: 1.12rem; }

.service-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.service-list .card { min-height: 190px; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 25px; }
.contact-panel { background: var(--soft); border-radius: 26px; padding: 30px; }
.contact-item { padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-item:last-child { border-bottom: 0; }
.contact-item strong { display: block; margin-bottom: 4px; }
.contact-item span { color: var(--muted); }
form { background: white; border: 1px solid var(--line); border-radius: 26px; padding: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: 6px; }
input, textarea {
  width: 100%; border: 1px solid #d8dddf; border-radius: 13px; padding: 13px 14px;
  font: inherit; outline: none; background: white;
}
input:focus, textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(100,22,111,.08); }
textarea { min-height: 150px; resize: vertical; }
.field { margin-bottom: 17px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 12px; }

.legal { max-width: 850px; }
.legal h2 { font-size: 2rem; margin-top: 42px; }
.legal h3 { margin-top: 28px; }
.legal p, .legal li { color: #4f585e; }

.reveal { animation: rise .6s ease both; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
  .hero-grid, .about-preview, .contact-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding-top: 70px; }
}
@media (max-width: 700px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .nav { min-height: 72px; }
  .brand img { width: 175px; }
  .menu-toggle { display: block; margin-left: auto; }
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: white; padding: 18px 20px 24px; border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(0,0,0,.07); flex-direction: column; align-items: stretch;
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 11px 4px; }
  .nav-cta { text-align: center; margin-top: 7px; }
  .cards, .service-list, .form-row, .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 58px 0 70px; }
  h1 { font-size: 3.15rem; }
  .section { padding: 70px 0; }
  .cta { padding: 35px 27px; flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; }
}


/* HeideComputer visual accents */
.hero-brand-mark {
  position: absolute;
  width: 370px;
  height: 370px;
  object-fit: cover;
  opacity: .055;
  right: -90px;
  bottom: -115px;
  filter: saturate(.9);
  pointer-events: none;
}
.hero-card .mini-mark {
  width: 105px;
  height: 105px;
  object-fit: cover;
  border-radius: 24px;
  margin: -2px 0 18px -4px;
  opacity: .94;
  box-shadow: 0 10px 28px rgba(100,22,111,.08);
}
.section-symbol {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 30px;
  float: left;
  margin: 0 34px 12px 0;
  opacity: .96;
  box-shadow: 0 16px 35px rgba(32,39,45,.08);
}
.purple-rule {
  display: inline-block;
  width: 42px;
  height: 3px;
  background: var(--purple);
  border-radius: 99px;
  vertical-align: middle;
  margin-right: 10px;
}
@media (max-width: 700px) {
  .hero-brand-mark { width: 280px; height: 280px; right: -110px; bottom: -90px; }
  .section-symbol { width: 115px; height: 115px; margin-right: 22px; }
}


/* V3: stronger HeideComputer visual identity */
.brand img { filter: drop-shadow(0 4px 8px rgba(100,22,111,.05)); }
.nav-cta { letter-spacing: .01em; }

.page-brand-symbol {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 210px;
  height: 210px;
  object-fit: cover;
  border-radius: 44px;
  opacity: .10;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }

.service-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-button {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 178px;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(100,22,111,.12);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(32,39,45,.045);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative;
  overflow: hidden;
}
.service-button::before {
  content: "";
  position: absolute;
  width: 115px;
  height: 115px;
  right: -48px;
  top: -48px;
  border-radius: 50%;
  background: rgba(100,22,111,.07);
}
.service-button:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(100,22,111,.11);
  border-color: rgba(100,22,111,.28);
}
.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--purple);
  background: linear-gradient(145deg, rgba(100,22,111,.13), rgba(114,166,90,.10));
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.service-icon svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-button h3 {
  margin: 0;
  font-size: 1.12rem;
  position: relative;
  z-index: 1;
}
.service-button .arrow {
  margin-top: auto;
  padding-top: 15px;
  color: var(--purple);
  font-weight: 800;
  font-size: .9rem;
  position: relative;
  z-index: 1;
}
.home-service-intro {
  max-width: 680px;
  margin-bottom: 34px;
}
.home-service-intro p { color: var(--muted); margin: 0; }

.identity-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, rgba(100,22,111,.075), rgba(114,166,90,.055));
  border-top: 1px solid rgba(100,22,111,.08);
  border-bottom: 1px solid rgba(100,22,111,.08);
}
.identity-band::before {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  left: -170px;
  top: -160px;
  border-radius: 50%;
  border: 2px solid rgba(100,22,111,.08);
}
.identity-content {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 34px 0;
}
.identity-content img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(100,22,111,.10);
}
.identity-content strong { font-size: 1.35rem; }
.identity-content p { margin: 3px 0 0; color: var(--muted); }

@media (max-width: 1050px) {
  .service-buttons { grid-template-columns: repeat(2, 1fr); }
  .page-brand-symbol { right: 3%; opacity: .075; }
}
@media (max-width: 700px) {
  .page-brand-symbol { width: 145px; height: 145px; right: -28px; top: 70%; }
  .service-buttons { grid-template-columns: 1fr 1fr; gap: 12px; }
  .service-button { min-height: 155px; padding: 19px; border-radius: 20px; }
  .service-icon { width: 50px; height: 50px; border-radius: 15px; margin-bottom: 17px; }
  .service-icon svg { width: 29px; height: 29px; }
  .identity-content { align-items: flex-start; }
}
@media (max-width: 480px) {
  .service-buttons { grid-template-columns: 1fr; }
}

/* Personal portrait */
.about-photo-wrap{position:relative;min-height:540px;display:flex;align-items:center;justify-content:center}
.about-photo-wrap:before{content:"";position:absolute;width:76%;height:76%;border-radius:38px;background:linear-gradient(145deg,rgba(100,22,111,.12),rgba(114,166,90,.16));transform:rotate(-4deg)}
.about-photo{position:relative;width:min(100%,455px);aspect-ratio:4/5;object-fit:cover;object-position:center top;border-radius:32px;box-shadow:0 24px 55px rgba(32,39,45,.16);border:7px solid #fff}
.about-badge{position:absolute;right:0;bottom:34px;z-index:2;background:#fff;border:1px solid rgba(100,22,111,.13);border-radius:18px;padding:15px 18px;box-shadow:0 14px 35px rgba(32,39,45,.12)}
.about-badge strong{color:var(--purple);display:block}.about-badge span{color:var(--muted);font-size:.85rem}
.about-story{max-width:880px}.about-story p{color:var(--muted);font-size:1.06rem}
.about-highlight{margin-top:30px;padding:27px 30px;border-left:4px solid var(--purple);background:linear-gradient(90deg,rgba(100,22,111,.06),rgba(114,166,90,.035));border-radius:0 18px 18px 0}
.about-highlight strong{display:block;font-size:1.2rem;margin-bottom:5px}.about-highlight p{margin:0;font-size:1rem}
.about-values{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.value{padding:25px;background:#fff;border:1px solid var(--line);border-radius:22px}.value .icon{margin-bottom:15px}.value h3{margin:0 0 7px}.value p{margin:0;color:var(--muted)}
@media(max-width:900px){.about-photo-wrap{min-height:470px}.about-values{grid-template-columns:1fr}}
@media(max-width:700px){.about-photo-wrap{min-height:auto;margin-bottom:28px}.about-photo{width:82%}.about-badge{right:1%;bottom:14px}}

/* V5 – detailed service page */
.service-detail-list {
  display: grid;
  gap: 22px;
}
.service-detail {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  align-items: start;
  background: #fff;
  border: 1px solid rgba(100,22,111,.12);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(32,39,45,.045);
  position: relative;
  overflow: hidden;
}
.service-detail::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(100,22,111,.045);
  pointer-events: none;
}
.detail-icon {
  width: 88px;
  height: 88px;
  border-radius: 25px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(100,22,111,.15), rgba(114,166,90,.11));
  color: var(--purple);
  box-shadow: inset 0 0 0 1px rgba(100,22,111,.08);
  position: relative;
  z-index: 1;
}
.detail-icon svg {
  width: 50px;
  height: 50px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-detail h2 {
  font-size: 1.8rem;
  margin: 0 0 8px;
}
.service-detail p {
  color: var(--muted);
  margin: 0 0 16px;
  max-width: 760px;
}
.detail-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.detail-points li {
  background: rgba(100,22,111,.055);
  color: #555d62;
  border: 1px solid rgba(100,22,111,.08);
  border-radius: 999px;
  padding: 6px 11px;
  font-size: .86rem;
}
.services-note {
  margin-top: 30px;
  padding: 24px 28px;
  border-radius: 22px;
  background: linear-gradient(100deg, rgba(100,22,111,.07), rgba(114,166,90,.055));
  border: 1px solid rgba(100,22,111,.08);
}
.services-note strong { color: var(--purple); }
@media(max-width:700px) {
  .service-detail { grid-template-columns: 1fr; gap: 20px; padding: 24px; }
  .detail-icon { width: 72px; height: 72px; border-radius: 21px; }
  .detail-icon svg { width: 40px; height: 40px; }
  .service-detail h2 { font-size: 1.55rem; }
}

/* V6 – colorful service icons and detailed service lists */
.service-icon, .detail-icon {
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  line-height: 1;
  text-align: center;
}
.service-icon {
  font-size: 2rem;
}
.detail-icon {
  font-size: 3rem;
  background: linear-gradient(145deg, rgba(100,22,111,.10), rgba(114,166,90,.13));
}
.service-detail-list { gap: 24px; }
.service-detail {
  grid-template-columns: 96px 1fr;
  padding: 30px 32px;
  background: linear-gradient(120deg, #fff 0%, #fff 72%, rgba(100,22,111,.025) 100%);
}
.service-detail:nth-child(even) {
  background: linear-gradient(120deg, #fff 0%, #fff 72%, rgba(114,166,90,.035) 100%);
}
.service-detail h2 { color: #252b30; }
.service-detail h2::after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-top: 10px;
  border-radius: 99px;
  background: var(--purple);
}
.service-detail:nth-child(even) h2::after { background: var(--green); }
.detail-description {
  color: var(--muted);
  margin: 0 0 20px;
  max-width: 820px;
  font-size: 1.02rem;
}
.detail-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
}
.detail-service-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #4f575d;
  font-size: .95rem;
  line-height: 1.4;
  padding: 8px 0;
  border-bottom: 1px solid rgba(32,39,45,.07);
}
.detail-service-list li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  background: var(--purple);
  margin-top: .48em;
}
.service-detail:nth-child(even) .detail-service-list li::before {
  background: var(--purple);
  color: var(--purple);
}
@media(max-width:700px) {
  .service-detail { grid-template-columns: 1fr; padding: 25px; }
  .detail-icon { width: 76px; height: 76px; }
  .detail-service-list { grid-template-columns: 1fr; gap: 2px; }
}


/* V10 – Kontaktformular, Instagram und Bot-Schutz */
.contact-link { color: var(--purple); font-weight: 750; }
.contact-link:hover { text-decoration: underline; }
.social-link { display: inline-flex; align-items: center; gap: 9px; }
.instagram-icon { width: 27px; height: 27px; border-radius: 8px; display: inline-grid; place-items: center; color: white; font-size: 20px; line-height: 1; background: linear-gradient(135deg, #f58529, #dd2a7b 48%, #8134af 76%, #515bd4); }
.contact-social-note { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: .92rem; }
.turnstile-wrap { margin: 6px 0 18px; min-height: 65px; }
.privacy-check { display: flex; align-items: flex-start; gap: 10px; margin: 4px 0 18px; color: var(--muted); font-size: .86rem; line-height: 1.45; font-weight: 400; }
.privacy-check input { width: auto; margin-top: 4px; flex: 0 0 auto; }
.privacy-check a { color: var(--purple); font-weight: 700; text-decoration: underline; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.form-success { margin: -4px 0 22px; padding: 14px 16px; border-radius: 14px; background: rgba(114,166,90,.12); border: 1px solid rgba(114,166,90,.24); color: var(--green-dark); font-weight: 700; }
