:root {
  color-scheme: light;
  --ink: #10231d;
  --ink-soft: #40534c;
  --green: #063f31;
  --green-dark: #022c23;
  --gold: #c88724;
  --gold-soft: #e1b45f;
  --mint: #f4f1e8;
  --mint-deep: #e8e4d8;
  --paper: #f8f5ed;
  --white: #fffdf8;
  --line: rgba(16, 35, 29, 0.14);
  --line-strong: rgba(16, 35, 29, 0.24);
  --danger: #a12d2d;
  --shadow: 0 24px 70px rgba(16, 35, 29, 0.13);
  --radius: 12px;
  --radius-small: 8px;
  --container: 1180px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--mint);
  color: var(--ink);
  font-family: "Onest", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  caret-color: var(--green);
  scrollbar-color: var(--gold) var(--mint);
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--mint);
}

::-webkit-scrollbar-thumb {
  border: 2px solid var(--mint);
  border-radius: 10px;
  background: var(--gold);
}

body::selection,
body *::selection {
  background: var(--gold-soft);
  color: var(--ink);
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

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

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

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.hidden {
  display: none !important;
}

.ad-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 241, 232, 0.96);
  backdrop-filter: blur(12px);
}

.ad-header-shell {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-mark {
  display: none;
}

.brand-lockup {
  width: 160px;
  height: auto;
}

.ad-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.ad-nav a {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.ad-nav a:hover {
  color: var(--green);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0.75rem 1.05rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

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

.button-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: none;
}

.button-primary:hover {
  background: var(--green-dark);
  box-shadow: none;
}

.button-light {
  background: var(--white);
  color: var(--green-dark);
}

.button-light:hover {
  background: var(--mint-deep);
}

.button-large {
  min-height: 52px;
  padding-inline: 1.35rem;
}

.ad-header-cta {
  min-height: 42px;
  padding: 0.65rem 0.95rem;
  font-size: 0.88rem;
}

.ad-hero {
  position: relative;
  overflow: hidden;
  padding: 42px 0 54px;
  background: var(--paper);
}

.ad-hero::before {
  display: none;
}

.ad-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  grid-template-areas:
    "copy form"
    "details form";
  gap: 0 clamp(44px, 6vw, 84px);
  align-items: start;
}

.ad-hero-copy {
  grid-area: copy;
  max-width: 540px;
  padding: 14px 0 0;
}

.ad-hero-details {
  grid-area: details;
  max-width: 540px;
  padding-bottom: 20px;
}

.ad-hero h1 {
  max-width: 11.5ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.25rem, 5.5vw, 5.5rem);
  font-family: "Familjen Grotesk", "Segoe UI", sans-serif;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-wrap: balance;
}

.ad-hero h1 strong {
  display: block;
  color: var(--green);
  font-size: 1.14em;
  font-weight: 800;
}

.ad-hero h1 span {
  display: block;
  margin-top: 0.08em;
  font-size: 0.74em;
  line-height: 1.02;
}

.hero-price {
  margin: 24px 0 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.hero-price strong {
  font-weight: 800;
}

.ad-hero-lede {
  max-width: 55ch;
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.offer-ledger {
  margin: 30px 0 0;
  border-top: 1px solid var(--line-strong);
}

.offer-ledger div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.offer-ledger dt {
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 550;
}

.offer-ledger dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 750;
  text-align: right;
}

.form-panel {
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-form-panel {
  grid-area: form;
  align-self: center;
  padding: 26px;
}

.form-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.form-head h2 {
  margin: 0;
  font-family: "Familjen Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.55rem, 2.3vw, 2.05rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.form-head p {
  max-width: 28ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: right;
}

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

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

.field {
  display: grid;
  gap: 6px;
}

.field label {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
}

.field label span {
  color: var(--ink-soft);
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background: var(--white);
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.field input,
.field select {
  min-height: 44px;
  padding: 0.65rem 0.75rem;
}

.field textarea {
  min-height: 76px;
  resize: vertical;
  padding: 0.7rem 0.75rem;
  line-height: 1.4;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #687870;
  opacity: 1;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--gold);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  outline: none;
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200, 135, 36, 0.18);
}

.field input:disabled,
.field select:disabled,
.field textarea:disabled {
  cursor: wait;
  opacity: 0.66;
}

.submit-button {
  width: 100%;
}

.submit-button:disabled {
  cursor: wait;
  transform: none;
  opacity: 0.78;
}

.fineprint {
  margin: -3px 0 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.45;
  text-align: center;
}

.fineprint i {
  margin-right: 4px;
  color: var(--gold);
}

.form-error {
  margin: 0;
  border-radius: 8px;
  background: #fff1ef;
  color: var(--danger);
  padding: 10px 12px;
  font-size: 0.84rem;
  font-weight: 650;
}

.success-message {
  min-height: 410px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.success-message > i {
  color: var(--green);
  font-size: 2.6rem;
}

.success-message h2 {
  margin: 14px 0 4px;
}

.success-message p {
  margin: 0;
  color: var(--ink-soft);
}

.showcase-section {
  padding: 8px 0 84px;
}

.showcase-shell {
  position: relative;
}

.showcase-heading {
  position: absolute;
  z-index: 2;
  top: 38px;
  left: 38px;
  width: min(430px, calc(100% - 76px));
  border-radius: 14px;
  background: rgba(6, 63, 49, 0.96);
  color: var(--white);
  padding: 24px 26px;
  box-shadow: 0 18px 48px rgba(16, 35, 29, 0.2);
}

.showcase-heading h2 {
  margin: 0;
  font-family: "Familjen Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
}

.showcase-heading p {
  margin: 12px 0 0;
  color: #e8e4d8;
  font-size: 0.9rem;
  line-height: 1.55;
}

.showcase-figure {
  margin: 0;
}

.showcase-figure img {
  width: 100%;
  aspect-ratio: 1536 / 900;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(16, 35, 29, 0.12);
}

.showcase-figure figcaption {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.section {
  padding: 92px 0;
}

.included-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.included-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.05fr 1fr;
  align-items: stretch;
  gap: 24px;
}

.included-intro {
  align-self: center;
  padding-right: 24px;
}

.included-intro h2,
.process-heading h2,
.comparison-heading h2,
.faq-heading h2,
.final-panel h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-family: "Familjen Grotesk", "Segoe UI", sans-serif;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.02;
  text-wrap: balance;
}

.included-intro > p,
.process-heading p,
.comparison-heading p,
.faq-heading p {
  max-width: 54ch;
  margin: 18px 0 0;
  color: var(--ink-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--green-dark);
  font-weight: 750;
}

.included-build {
  border-radius: var(--radius);
  background: var(--green-dark);
  color: var(--white);
  padding: 32px;
  box-shadow: none;
}

.included-build > i {
  color: var(--gold-soft);
  font-size: 1.6rem;
}

.included-build h3,
.included-stack h3 {
  margin: 22px 0 0;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.included-build p {
  margin: 8px 0 0;
  color: #e8e4d8;
}

.included-build ul {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}

.included-build li::before {
  margin-right: 9px;
  color: var(--gold-soft);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f00c";
}

.included-stack {
  display: grid;
  gap: 16px;
}

.included-stack article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-content: start;
  border-top: 1px solid var(--line-strong);
  padding: 24px 8px;
}

.included-stack article:last-child {
  border-bottom: 1px solid var(--line-strong);
}

.included-stack article > i {
  color: var(--gold);
  font-size: 1.3rem;
  padding-top: 4px;
}

.included-stack h3 {
  margin: 0;
}

.included-stack p {
  margin: 7px 0 0;
  color: var(--ink-soft);
}

.process-section {
  background: var(--mint-deep);
}

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

.process-heading {
  position: sticky;
  top: 112px;
  align-self: start;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.process-list li {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 28px;
  padding: 30px 0 30px 70px;
  border-top: 1px solid var(--line-strong);
  counter-increment: steps;
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line-strong);
}

.process-list li::before {
  position: absolute;
  top: 28px;
  left: 0;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--paper);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  content: counter(steps, decimal-leading-zero);
}

.process-list strong {
  font-size: 1.12rem;
  line-height: 1.35;
}

.process-list span {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.pricing-section {
  padding-top: 0;
}

.pricing-panel {
  display: grid;
  grid-template-columns: 0.7fr 1.2fr 1fr;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.price-zero,
.price-monthly,
.price-action {
  display: grid;
  align-content: center;
  min-height: 260px;
  padding: 34px;
}

.price-zero {
  background: var(--gold);
  color: var(--ink);
}

.price-zero span,
.price-monthly span {
  color: #d6eee5;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-zero span {
  color: var(--ink);
}

.price-zero strong {
  font-size: clamp(4.2rem, 7vw, 6.8rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.price-monthly {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.price-monthly strong {
  margin-top: 8px;
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-monthly p,
.price-action p {
  margin: 14px 0 0;
  color: #c6ddd5;
}

.price-action {
  align-content: center;
  gap: 20px;
}

.price-action p {
  margin: 0;
}

.comparison-section {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.comparison-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(50px, 8vw, 110px);
}

.comparison-table {
  border-top: 1px solid var(--line-strong);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 20px;
  align-items: center;
  min-height: 66px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.comparison-row strong {
  color: var(--green);
}

.comparison-head {
  min-height: 48px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 750;
}

.faq-section {
  background: var(--mint-deep);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(50px, 8vw, 110px);
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line-strong);
}

.faq-list summary {
  position: relative;
  padding: 21px 50px 21px 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  color: var(--gold);
  font-family: "Font Awesome 6 Free";
  font-size: 0.9rem;
  font-weight: 900;
  content: "\2b";
  transform: translateY(-50%);
}

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

.faq-list details p {
  max-width: 68ch;
  margin: -4px 0 22px;
  color: var(--ink-soft);
}

.final-section {
  padding-top: 20px;
}

.final-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-radius: var(--radius);
  background: var(--green-dark);
  color: var(--white);
  padding: clamp(34px, 6vw, 68px);
  box-shadow: none;
}

.final-panel h2 {
  max-width: 16ch;
}

.final-panel p {
  margin: 16px 0 0;
  color: #e8e4d8;
}

.final-panel .button {
  flex: 0 0 auto;
}

.ad-footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 26px 0;
}

.ad-footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ad-footer-shell img {
  width: 145px;
  height: auto;
}

.ad-footer-shell > div {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.ad-footer a:hover {
  color: var(--gold);
}

@keyframes hero-settle {
  from {
    transform: translateY(14px);
    filter: blur(1px);
  }
  to {
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .ad-hero-copy,
  .hero-form-panel {
    animation: hero-settle 700ms var(--ease-out) both;
  }

  .hero-form-panel {
    animation-delay: 90ms;
  }
}

@media (max-width: 1040px) {
  .ad-hero-grid {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 34px;
  }

  .ad-hero h1 {
    font-size: clamp(3rem, 6vw, 4.8rem);
  }

  .form-head {
    display: block;
  }

  .form-head p {
    max-width: none;
    margin-top: 7px;
    text-align: left;
  }

  .included-layout {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .included-intro {
    grid-row: span 2;
  }

  .included-stack {
    grid-column: 2;
  }

  .pricing-panel {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .price-action {
    grid-column: 1 / -1;
    grid-template-columns: 1fr auto;
    min-height: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .ad-header-shell {
    min-height: 64px;
  }

  .brand-lockup,
  .ad-nav {
    display: none;
  }

  .brand-mark {
    display: block;
    width: 40px;
    height: 40px;
  }

  .ad-header-cta {
    margin-left: auto;
  }

  .ad-hero {
    padding: 34px 0 52px;
  }

  .ad-hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "form"
      "details";
    gap: 24px;
  }

  .ad-hero-copy {
    max-width: none;
    padding-bottom: 0;
  }

  .ad-hero h1 {
    max-width: 13ch;
    font-size: clamp(3.1rem, 12vw, 5.2rem);
  }

  .offer-ledger {
    max-width: 540px;
  }

  .showcase-section {
    padding-bottom: 68px;
  }

  .showcase-heading {
    position: static;
    width: auto;
    margin-bottom: 18px;
  }

  .showcase-figure img {
    height: auto;
    aspect-ratio: auto;
    min-height: 0;
    object-fit: contain;
  }

  .section {
    padding: 72px 0;
  }

  .included-layout,
  .process-layout,
  .comparison-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .included-intro {
    grid-row: auto;
    padding-right: 0;
  }

  .included-stack {
    grid-column: auto;
  }

  .process-heading {
    position: static;
  }

  .pricing-panel {
    grid-template-columns: 1fr 1fr;
  }

  .price-zero,
  .price-monthly {
    min-height: 220px;
    padding: 28px;
  }

  .final-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .ad-header-cta {
    min-height: 40px;
    font-size: 0.78rem;
  }

  .ad-hero h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  .hero-price {
    font-size: 1.2rem;
  }

  .hero-form-panel {
    padding: 20px 16px;
  }

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

  .showcase-heading {
    padding: 22px 20px;
  }

  .showcase-figure img {
    min-height: 0;
  }

  .included-build {
    padding: 26px 22px;
  }

  .process-list li {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-left: 58px;
  }

  .process-list li::before {
    width: 36px;
    height: 36px;
  }

  .pricing-panel {
    grid-template-columns: 1fr;
  }

  .price-zero,
  .price-monthly {
    min-height: 190px;
  }

  .price-monthly {
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .price-action {
    grid-column: auto;
    grid-template-columns: 1fr;
    padding: 26px 22px;
  }

  .comparison-table {
    border-top: 0;
  }

  .comparison-head {
    display: none;
  }

  .comparison-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px 18px;
    min-width: 0;
    min-height: 0;
    padding: 18px 0;
  }

  .comparison-row > span:first-child {
    grid-column: 1 / -1;
    color: var(--ink);
    font-size: 0.95rem;
    font-weight: 750;
  }

  .comparison-row [data-label]::before {
    display: block;
    margin-bottom: 4px;
    color: #60746d;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    content: attr(data-label);
  }

  .final-panel .button {
    width: 100%;
  }

  .ad-footer-shell,
  .ad-footer-shell > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .ad-footer-shell > div {
    gap: 8px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
