/* Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--gradient-background), var(--color-background);
  color: var(--color-text);
  font-family: var(--font-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--color-accent);
}

a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  inset: 1rem auto auto 1rem;
  padding: 0.5rem 1.25rem;
  background: var(--color-elevated);
  color: #fff;
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
  z-index: 10;
}

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

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

/* Typography */
h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 600;
  color: var(--color-text);
}

h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  letter-spacing: -0.015em;
}

.section__header h2 {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.section__header h2::after {
  content: "";
  display: inline-block;
  width: clamp(38px, 8vw, 70px);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(146, 180, 255, 0.75), rgba(120, 206, 255, 0.35));
  box-shadow: 0 0 16px rgba(146, 180, 255, 0.45);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

p {
  margin: 0;
  color: var(--color-muted);
}

.eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.section__lede {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  max-width: 58ch;
}

/* Layout */
.shell {
  width: min(100% - 2.5rem, var(--max-width));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
  position: relative;
  z-index: 0;
}

.section--frosted::before {
  content: "";
  position: absolute;
  inset: clamp(0.75rem, 3vw, 1.5rem);
  border-radius: clamp(18px, 4vw, 32px);
  background: var(--glass-surface) padding-box, var(--glass-border) border-box;
  border: 1px solid transparent;
  box-shadow: var(--glass-shadow);
  z-index: -1;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.section--frosted::after {
  content: "";
  position: absolute;
  inset: clamp(1.5rem, 6vw, 3rem) clamp(3.5rem, 12vw, 6.5rem) auto;
  height: clamp(140px, 32vw, 220px);
  border-radius: 999px;
  background:
    radial-gradient(circle at 20% 20%, rgba(146, 180, 255, 0.45), transparent 65%),
    radial-gradient(circle at 80% 50%, rgba(120, 206, 255, 0.28), transparent 68%);
  filter: blur(18px);
  opacity: 0.55;
  z-index: -2;
}

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

.section__header {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section__content {
  display: grid;
  gap: 1.5rem;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  background: var(--color-accent);
  border: 1px solid transparent;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: var(--shadow-xs);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.button--ghost {
  background: transparent;
  border: 1px solid rgba(36, 48, 163, 0.35);
  color: var(--color-accent);
  box-shadow: none;
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: rgba(36, 48, 163, 0.12);
  box-shadow: none;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(146, 180, 255, 0.25);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: inherit;
  text-decoration: none;
}

.brand__logo {
  display: block;
  height: clamp(32px, 4vw, 44px);
  width: auto;
  object-fit: contain;
}

.brand__text {
  font: inherit;
  letter-spacing: inherit;
}

.brand:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
  border-radius: 6px;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  position: relative;
  padding-block: 0.25rem;
  font-weight: 500;
  color: var(--color-muted);
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -0.4rem;
  height: 3px;
  border-radius: 999px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.55rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(36, 48, 163, 0.25);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.95), rgba(226, 234, 255, 0.7));
  color: var(--color-text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 12px 24px rgba(120, 140, 200, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1), 0 18px 36px rgba(120, 140, 200, 0.28);
}

.menu-toggle__icon {
  width: 1.5rem;
  height: 1.5rem;
  position: relative;
}

.menu-toggle__icon::before,
.menu-toggle__icon::after,
.menu-toggle__icon span {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease;
}

.menu-toggle__icon::before {
  top: 4px;
}

.menu-toggle__icon::after {
  bottom: 4px;
}

.menu-toggle__icon span {
  top: 50%;
  transform: translateY(-50%);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 6% 10% auto;
  height: clamp(280px, 50vw, 360px);
  background:
    radial-gradient(circle at top left, rgba(78, 107, 255, 0.28), rgba(78, 107, 255, 0) 62%),
    radial-gradient(circle at bottom right, rgba(12, 168, 204, 0.24), rgba(12, 168, 204, 0) 60%),
    linear-gradient(130deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.55));
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(17, 17, 17, 0.08);
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero__header {
  align-self: stretch;
}

.hero__header > * {
  max-width: 640px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-block: 1.5rem 2rem;
}

.hero__badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.hero__badges dt,
.hero__badges dd {
  margin: 0;
}

.hero__badge {
  background: var(--glass-surface) padding-box, var(--glass-border) border-box;
  border-radius: clamp(16px, 3vw, 20px);
  padding: 1rem 1.25rem;
  border: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--glass-shadow);
}

.hero__badge dt {
  font-weight: 600;
  color: var(--color-text);
}

.hero__badge dd {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.hero__media {
  display: flex;
  justify-content: center;
}

.hero__card {
  position: relative;
  display: grid;
  gap: 1.2rem;
  padding: clamp(2rem, 5vw, 2.5rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #121b48, #2f44c0);
  color: #f5f5f5;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  max-width: 380px;
}

.hero__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.95), rgba(189, 203, 255, 0.65));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 18px 36px rgba(120, 140, 200, 0.28);
  display: grid;
  place-items: center;
}

.hero__icon-image {
  width: 70%;
  height: auto;
  display: block;
  object-fit: contain;
}

.hero__card-title {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero__card-copy {
  color: rgba(255, 255, 255, 0.75);
}

.hero__metrics {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.hero__metrics li {
  display: grid;
  gap: 0.2rem;
}

.metric__value {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
}

/* Cards */
.card {
  position: relative;
  display: grid;
  gap: 0.75rem;
  padding: clamp(1.75rem, 4vw, 2.25rem);
  border-radius: clamp(18px, 3vw, 24px);
  background: var(--glass-surface) padding-box, var(--glass-border) border-box;
  border: 1px solid transparent;
  box-shadow: var(--glass-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.card:hover,
.card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(110, 130, 200, 0.28);
}

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(146, 180, 255, 0.35), rgba(255, 255, 255, 0.2));
  display: grid;
  place-items: center;
  color: var(--color-accent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 12px 30px rgba(120, 140, 200, 0.25);
}

.card__icon svg {
  width: 26px;
  height: 26px;
}

.about__content,
.services__grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.product {
  gap: 1.5rem;
}

.product__header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product__icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(140deg, rgba(146, 180, 255, 0.3), rgba(255, 255, 255, 0.12));
  display: grid;
  place-items: center;
  color: var(--color-accent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 16px 38px rgba(120, 140, 200, 0.24);
}

.product__icon svg {
  width: 30px;
  height: 30px;
}

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

.product__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.product__features li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--color-muted);
}

.product__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(146, 180, 255, 0.85), rgba(120, 206, 255, 0.5));
  box-shadow: 0 0 12px rgba(146, 180, 255, 0.45);
}

/* Contact */
.contact__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
}

.contact__details {
  padding: clamp(1.75rem, 4vw, 2.25rem);
  border-radius: clamp(18px, 3vw, 26px);
  background: var(--glass-surface) padding-box, var(--glass-border) border-box;
  border: 1px solid transparent;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.contact__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.contact__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 1rem;
}

.contact__list a {
  font-weight: 600;
  color: var(--color-accent);
}

.contact__list a:hover,
.contact__list a:focus-visible {
  text-decoration: underline;
}

.contact__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(140deg, rgba(146, 180, 255, 0.4), rgba(255, 255, 255, 0.2));
  color: var(--color-accent);
  display: grid;
  place-items: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 10px 28px rgba(120, 140, 200, 0.25);
}

.contact__icon svg {
  width: 24px;
  height: 24px;
}

.contact__label {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.contact__form {
  padding: clamp(1.85rem, 4vw, 2.5rem);
  border-radius: clamp(18px, 3vw, 26px);
  background: var(--glass-surface) padding-box, var(--glass-border) border-box;
  border: 1px solid transparent;
  box-shadow: var(--glass-shadow);
  display: grid;
  gap: 1.25rem;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.form-field {
  display: grid;
  gap: 0.5rem;
}

label {
  font-weight: 500;
  color: var(--color-text);
}

input,
textarea {
  font: inherit;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(146, 180, 255, 0.45);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.85), rgba(226, 234, 255, 0.6));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input:focus-visible,
textarea:focus-visible {
  border-color: rgba(80, 120, 255, 0.75);
  box-shadow: 0 0 0 4px rgba(146, 180, 255, 0.25);
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 150px;
}

/* Footer */
.site-footer {
  margin-top: clamp(3rem, 6vw, 5rem);
  background: linear-gradient(180deg, #0d1538 0%, #060912 100%);
  color: rgba(255, 255, 255, 0.9);
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid rgba(146, 180, 255, 0.2);
}

.footer__inner {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: start;
}

.footer__brand {
  display: grid;
  gap: 0.75rem;
}

.footer__tagline {
  color: rgba(255, 255, 255, 0.7);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.footer__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.75rem;
}

.footer__social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer__social a:hover,
.footer__social a:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.footer__social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  color: rgba(255, 255, 255, 0.9);
}

.footer__credit {
  margin: 2rem auto 0;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Mobile navigation */
.mobile-drawer {
  position: fixed;
  inset: 0;
  display: none;
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.45),
    rgba(214, 222, 234, 0.38) 55%,
    rgba(162, 172, 188, 0.35)
  );
  backdrop-filter: blur(18px);
  z-index: 60;
}

.mobile-drawer.open {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.mobile-drawer__panel {
  position: relative;
  width: min(320px, 82vw);
  padding: 2rem 1.75rem 2.25rem;
  display: grid;
  gap: 2.25rem;
  margin: 1.25rem 1.25rem auto;
  border-radius: 28px 0 0 32px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(
      140deg,
      rgba(255, 255, 255, 0.92),
      rgba(233, 236, 244, 0.82) 55%,
      rgba(208, 216, 232, 0.78)
    )
    padding-box,
    linear-gradient(160deg, rgba(255, 255, 255, 0.75), rgba(150, 168, 200, 0.4)) border-box;
  backdrop-filter: blur(26px);
  box-shadow:
    0 30px 65px rgba(105, 118, 142, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 0 rgba(132, 146, 176, 0.35);
  overflow: hidden;
}

.mobile-drawer__panel::before {
  content: "";
  position: absolute;
  inset: -32% 20% 52% -20%;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.9), transparent 65%);
  opacity: 0.75;
  filter: blur(12px);
  mix-blend-mode: screen;
  pointer-events: none;
}

.mobile-drawer__panel::after {
  content: "";
  position: absolute;
  inset: 32% -40% -30% 38%;
  background: radial-gradient(circle at bottom right, rgba(146, 180, 255, 0.45), transparent 68%);
  opacity: 0.65;
  filter: blur(22px);
  pointer-events: none;
}

.mobile-drawer__close {
  position: relative;
  margin-left: auto;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.05));
  border: 0;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  color: rgba(35, 46, 68, 0.75);
  border-radius: 999px;
  padding: 0.2rem 0.45rem;
  transition: color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.mobile-drawer__close:hover,
.mobile-drawer__close:focus-visible {
  color: rgba(22, 30, 46, 0.9);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 6px 18px rgba(163, 176, 199, 0.35);
}

.mobile-drawer__list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.6rem;
  z-index: 1;
}

.mobile-drawer__list a {
  font-weight: 600;
  color: rgba(35, 44, 66, 0.88);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
  position: relative;
  padding-left: 0.75rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.mobile-drawer__list a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: rgba(146, 180, 255, 0.6);
  box-shadow: 0 0 12px rgba(146, 180, 255, 0.7);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.mobile-drawer__list a:hover,
.mobile-drawer__list a:focus-visible {
  color: rgba(18, 26, 44, 0.95);
  transform: translateX(2px);
}

.mobile-drawer__list a:hover::before,
.mobile-drawer__list a:focus-visible::before {
  background: rgba(146, 180, 255, 0.95);
  box-shadow: 0 0 18px rgba(146, 180, 255, 0.9);
}

/* Reveal helper */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

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

/* Responsive */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__media {
    justify-content: flex-start;
  }
}

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

  .menu-toggle {
    display: inline-flex;
  }

  .hero__header {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .section {
    padding-block: clamp(2.5rem, 8vw, 3.5rem);
  }

  .hero {
    background: rgba(255, 255, 255, 0.95);
  }

  .hero::before {
    display: none;
  }

  .hero__inner {
    gap: 2.5rem;
  }

  .hero__actions {
    justify-content: flex-start;
  }

  .hero__card {
    max-width: 100%;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.25);
  }

  .hero__icon,
  .card__icon {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 12px 28px rgba(15, 23, 42, 0.18);
  }

  .hero__badge,
  .card {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
  }

  .section--frosted::before,
  .section--frosted::after {
    display: none;
  }

  .contact__content {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer__inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 520px) {
  .shell {
    width: min(100% - 1.5rem, var(--max-width));
  }

  .section__header {
    margin-bottom: 2rem;
  }

  .hero__badges {
    grid-template-columns: minmax(0, 1fr);
  }

  .button {
    width: 100%;
    justify-content: center;
  }

  .contact__list li {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact__icon {
    width: 40px;
    height: 40px;
  }

  .mobile-drawer {
    align-items: stretch;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(14px);
  }

  .mobile-drawer__panel {
    width: 100%;
    margin: 0;
    border-radius: 0;
    border: none;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.22);
    padding: 2.25rem 1.75rem 2.5rem;
  }

  .mobile-drawer__panel::before,
  .mobile-drawer__panel::after {
    display: none;
  }

  .mobile-drawer__close {
    background: rgba(15, 23, 42, 0.05);
    box-shadow: none;
    color: rgba(21, 32, 72, 0.85);
  }

  .mobile-drawer__list {
    gap: 1.2rem;
  }

  .mobile-drawer__list a {
    padding-left: 0;
  }

  .mobile-drawer__list a::before {
    display: none;
  }
}
