:root {
  --black: #030303;
  --black-soft: #111111;
  --ink: #101010;
  --line: #1d1d1d;
  --line-soft: #dcdcdc;
  --white: #ffffff;
  --paper: #fbfbfb;
  --silver: #f2f2f2;
  --muted: #606060;
  --muted-dark: #c5c5c5;
  --shine: rgba(255, 255, 255, 0.78);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.18);
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 4%, #ffffff 0, #ffffff 18%, transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.98) 0, rgba(255, 255, 255, 0) 32%),
    linear-gradient(135deg, #ffffff 0%, #f1f1f1 48%, #ffffff 100%);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    linear-gradient(rgba(0, 0, 0, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.026) 1px, transparent 1px);
  background-size: 48px 48px;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(112deg, transparent 0%, transparent 38%, rgba(255, 255, 255, 0.92) 45%, transparent 52%, transparent 100%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.68) 42%, rgba(246, 246, 246, 0.94) 72%);
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

section {
  scroll-margin-top: 96px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 max(24px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 38px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(22px) saturate(1.25);
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  color: var(--black);
  text-decoration: none;
  letter-spacing: 0;
}

.logo span,
.logo strong {
  font-size: 21px;
  line-height: 1;
}

.logo span {
  font-weight: 800;
}

.logo strong {
  font-weight: 500;
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-header {
  display: none;
}

nav a {
  position: relative;
  border-radius: 999px;
  padding: 9px 15px;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

nav a:hover,
nav a.active {
  background: linear-gradient(135deg, #000000, #262626 48%, #000000);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.menu-toggle,
#closeMenu {
  display: none;
  border: 0;
  background: transparent;
  color: var(--black);
}

.menu-toggle {
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--black);
}

#overlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, 0.54);
  transition: 0.25s ease;
}

#overlay.active {
  visibility: visible;
  opacity: 1;
}

.hero {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: 72px 0 88px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  background: linear-gradient(105deg, #000000 0%, #222222 42%, #666666 50%, #050505 62%, #000000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.98;
  font-weight: 800;
  text-shadow: 0 20px 58px rgba(0, 0, 0, 0.12);
}

.hero-text {
  max-width: 640px;
  margin-top: 26px;
  color: #3f3f3f;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary {
  border: 1px solid var(--black);
  background: linear-gradient(145deg, #000000 0%, #2d2d2d 48%, #000000 100%);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.ghost {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(238, 238, 238, 0.76));
  color: var(--black);
  box-shadow: inset 0 1px 0 var(--white);
}

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

.ghost:hover {
  background: var(--white);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.12), inset 0 1px 0 var(--white);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 18%, transparent 72%, rgba(255, 255, 255, 0.1)),
    linear-gradient(145deg, #000000 0%, #1d1d1d 52%, #000000 100%);
  color: var(--white);
  padding: 28px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.hero-panel::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -55%;
  width: 38%;
  height: 160%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: rotate(20deg);
  transition: left 0.7s ease;
}

.hero-panel:hover::before {
  left: 118%;
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--muted-dark);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.metric {
  padding: 38px 0;
}

.metric strong {
  display: block;
  font-size: 90px;
  line-height: 0.9;
}

.metric span {
  color: var(--muted-dark);
  font-weight: 600;
}

.panel-list {
  display: grid;
  gap: 10px;
}

.panel-list span {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 12px;
  color: #eeeeee;
  font-size: 14px;
}

.section {
  padding: 92px 0;
}

.section:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(244, 244, 244, 0.58));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), inset 0 -1px 0 rgba(0, 0, 0, 0.06);
}

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

.section-heading h2,
.contact-copy h2 {
  color: var(--black);
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.04;
}

.grid {
  display: grid;
  gap: 18px;
}

.services-grid {
  grid-template-columns: repeat(4, 1fr);
}

.portfolio-grid,
.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 238, 238, 0.78)),
    var(--white);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.06), inset 0 1px 0 var(--white);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.88), transparent 22%, transparent 76%, rgba(255, 255, 255, 0.52));
  opacity: 0.62;
}

.card > * {
  position: relative;
  z-index: 1;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--black);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18), inset 0 1px 0 var(--white);
}

.service-card {
  min-height: 260px;
  padding: 24px;
}

.service-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: linear-gradient(145deg, #000000, #252525);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.service-card h3,
.project-card h3 {
  color: var(--black);
  font-size: 19px;
  line-height: 1.2;
}

.service-card p,
.testimonial-card p,
.contact-copy p {
  margin-top: 12px;
  color: #555;
}

.project-card {
  overflow: hidden;
  background: var(--white);
}

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

.thumb {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: #111;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.project-card:hover img {
  transform: scale(1.04);
}

.project-meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
}

.project-meta span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.testimonial-section {
  border-block: 1px solid rgba(0, 0, 0, 0.1);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.98), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(235, 235, 235, 0.62));
}

.testimonial-card {
  padding: 26px;
}

.testimonial-card p {
  color: var(--black);
  font-size: 18px;
  font-weight: 600;
}

.testimonial-card h4 {
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
}

.contact-section {
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.14), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(145deg, #000000 0%, #141414 50%, #000000 100%);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-copy h2,
.contact-copy .eyebrow {
  color: var(--white);
}

.contact-copy p {
  color: var(--muted-dark);
  font-size: 17px;
}

.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #efefef;
  font-weight: 600;
}

.form-box {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 28%, rgba(255, 255, 255, 0.06)),
    #0d0d0d;
  padding: 26px;
  box-shadow: 0 32px 95px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.form {
  display: grid;
  gap: 16px;
}

.form label {
  display: grid;
  gap: 7px;
}

.form label span {
  color: #d9d9d9;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #050505, #141414);
  color: var(--white);
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form input::placeholder,
.form textarea::placeholder,
.chat-input input::placeholder {
  color: #777;
}

.form input:focus,
.form textarea:focus {
  border-color: var(--white);
  background: #151515;
}

.form textarea {
  min-height: 128px;
  resize: vertical;
}

.honeypot {
  display: none;
}

.form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  border: 1px solid var(--white);
  border-radius: 999px;
  background: linear-gradient(145deg, #ffffff, #e7e7e7 56%, #ffffff);
  color: var(--black);
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(255, 255, 255, 0.1), inset 0 1px 0 var(--white);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.form button:hover {
  transform: translateY(-2px);
  background: var(--white);
  box-shadow: 0 22px 48px rgba(255, 255, 255, 0.16), inset 0 1px 0 var(--white);
}

#formStatus {
  min-height: 20px;
  color: var(--muted-dark);
  font-size: 13px;
}

.footer {
  padding: 54px 20px 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, #000000 0%, #151515 55%, #000000 100%);
  color: var(--white);
  text-align: center;
}

.footer-container {
  max-width: 1120px;
  margin: auto;
}

.footer-logo {
  font-size: 22px;
  font-weight: 800;
}

.footer-text {
  margin: 8px 0 24px;
  color: var(--muted-dark);
}

.social-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.social-link:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(255, 255, 255, 0.12);
}

.copyright {
  margin-top: 24px;
  color: #8b8b8b;
  font-size: 13px;
}

#loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  transition: opacity 0.35s ease;
}

.loader-logo {
  width: 84px;
  max-width: 70%;
  height: auto;
  object-fit: contain;
}

.cursor-glow {
  position: fixed;
  z-index: 0;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.62), rgba(0, 0, 0, 0.08) 35%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
}

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

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

.chat-toggle {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: linear-gradient(145deg, #000000, #252525 55%, #000000);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.26);
  font-size: 18px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.chat-toggle:hover {
  transform: translateY(-3px);
  background: #202020;
}

.chatbot {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 1000;
  display: none;
  flex-direction: column;
  width: 340px;
  height: 440px;
  max-width: calc(100% - 44px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 24%),
    var(--black);
  color: var(--white);
  box-shadow: 0 32px 95px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
  font-weight: 800;
}

.chat-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
}

.chat-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  padding: 15px;
}

.chat-body:empty::before {
  content: "Hi. Ask me anything about SoSa Infotech.";
  color: #888;
  font-size: 13px;
}

.msg {
  max-width: 82%;
  border-radius: 16px;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.45;
}

.user {
  align-self: flex-end;
  background: var(--white);
  color: var(--black);
}

.bot {
  align-self: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #141414;
  color: #eeeeee;
}

.msg.bot .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 2px;
  border-radius: 50%;
  background: #aaaaaa;
  animation: blink 1.4s infinite;
}

.msg.bot .dot:nth-child(2) {
  animation-delay: 0.2s;
}

.msg.bot .dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes blink {
  0%,
  80%,
  100% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }
}

.chat-input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.chat-input input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: #101010;
  color: var(--white);
  outline: none;
  padding: 10px 12px;
  font-size: 13px;
}

.chat-input button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--white);
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
}

#toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 3000;
  max-width: min(320px, calc(100% - 40px));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  padding: 13px 16px;
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

#toast.show {
  opacity: 1;
  transform: translateY(0);
}

#toast.error {
  background: var(--black);
  color: var(--white);
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-panel {
    max-width: 520px;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 30px, 1120px);
  }

  .navbar {
    min-height: 68px;
    padding: 0 15px;
  }

  .menu-toggle,
  #closeMenu {
    display: inline-flex;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: min(320px, 86vw);
    height: 100vh;
    padding: 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--black);
    color: var(--white);
    transition: right 0.25s ease;
  }

  nav.active {
    right: 0;
  }

  .nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    color: var(--white);
    font-weight: 800;
  }

  #closeMenu {
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    color: var(--white);
  }

  nav a {
    width: 100%;
    border-radius: var(--radius);
    padding: 15px;
    color: var(--white);
  }

  nav a:hover,
  nav a.active {
    background: var(--white);
    color: var(--black);
  }

  .hero {
    min-height: auto;
    padding: 58px 0 70px;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 62px);
  }

  .hero-text {
    font-size: 16px;
  }

  .section {
    padding: 70px 0;
  }

  .services-grid,
  .portfolio-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-card i {
    margin-bottom: 26px;
  }

  .project-meta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

  .metric strong {
    font-size: 74px;
  }

  .chatbot {
    right: 12px;
    bottom: 82px;
    width: calc(100% - 24px);
    height: 410px;
  }

  .chat-toggle {
    right: 14px;
    bottom: 14px;
  }

  #toast {
    right: 15px;
    left: 15px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
