:root {
  --font-body: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Lexend", system-ui, sans-serif;
  --fluid-h1: clamp(1.55rem, 2.4vw + 1rem, 2.65rem);
  --fluid-lead: clamp(1rem, 0.35vw + 0.94rem, 1.125rem);

  --c-veil: linear-gradient(
    165deg,
    rgba(5, 14, 20, 0.45) 0%,
    rgba(10, 20, 32, 0.52) 42%,
    rgba(6, 8, 16, 0.58) 100%
  );
  --c-glass: rgba(10, 20, 32, 0.78);
  --c-glass-nav: rgba(8, 16, 28, 0.86);
  --c-line: rgba(51, 204, 191, 0.28);
  --c-line-strong: rgba(253, 186, 160, 0.38);
  --c-accent: #5cf0e0;
  --c-accent-soft: #ccfbf7;
  --c-accent-rose: #fb7188;
  --c-warm: #fbbf24;
  --c-warm-hot: #fde68a;
  --c-ink: #030711;
  --c-text: rgba(239, 250, 248, 0.95);
  --c-text-muted: rgba(173, 210, 204, 0.88);
  --c-midtone: #38bdf8;
  --c-glow: rgba(92, 240, 224, 0.22);
  --c-mesh-1: rgba(45, 212, 191, 0.12);
  --c-mesh-2: rgba(251, 113, 133, 0.09);
  --c-mesh-3: rgba(56, 189, 248, 0.08);
  --radius-section: 20px;
  --radius-shell: 16px;
  --radius-btn: 10px;
  --radius-pill: 999px;
  --section-spacing-y: clamp(2.5rem, 5vw, 4.5rem);
  --content-max: 72rem;
  --elev-1: 0 18px 50px rgba(0, 10, 16, 0.55), 0 1px 0 rgba(92, 240, 224, 0.08) inset;
  --elev-nav: 0 20px 60px rgba(0, 8, 14, 0.45);
}

body > header .container,
body .container-fluid > .container,
section.basement > .container,
footer.container-fluid > .container,
#cookie-consent-bar .cookie-consent__inner.container {
  max-width: min(100% - 2rem, var(--content-max));
}

section.container-fluid.slider > .row {
  max-width: min(100% - 2rem, var(--content-max));
  margin-left: auto;
  margin-right: auto;
}


a {
  color: inherit;
  text-decoration: none;
  text-decoration-skip-ink: auto;
  background-color: transparent;
  -webkit-tap-highlight-color: transparent;
}

a[href] {
  cursor: pointer;
}

a:hover,
a:focus-visible {
  text-underline-offset: 0.2em;
  text-decoration-thickness: 0.08em;
}

a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

body ::selection {
  background: rgba(92, 240, 224, 0.32);
  color: #f8fffe;
}

body .navbar {
  flex-wrap: nowrap;
}

@media screen and (max-width: 991px) {
  body header nav.site-header-navbar.navbar {
    flex-wrap: wrap;
    align-items: center;
  }
}
@media screen and (min-width: 576px) {
  body .navbar {
    padding: 15px;
  }
}
@media screen and (max-width: 575px) {
  body .navbar {
    padding: 15px;
  }
  body .navbar ul {
    padding-left: 0;
  }
}
@media screen and (min-width: 768px) {
  body .navbar {
    padding: 0.5rem;
  }
}
body .navbar .navbar-toggler {
  background: linear-gradient(135deg, #134e4a, #0f172a);
  border: 1px solid var(--c-line-strong);
  box-shadow: 0 0 22px var(--c-glow);
}

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

body {
  background-color: var(--c-ink);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -25%, var(--c-mesh-1), transparent 58%),
    radial-gradient(ellipse 70% 55% at 110% 25%, var(--c-mesh-2), transparent 52%),
    radial-gradient(ellipse 55% 50% at -10% 75%, var(--c-mesh-3), transparent 48%),
    linear-gradient(185deg, rgba(3, 10, 18, 0.35) 0%, rgba(2, 8, 14, 0.55) 100%),
    url("../img/body-bg.jpg"),
    url("../img/body-bg.svg");
  font-family: var(--font-body);
  height: 100%;
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-text-muted);
  background-size: cover, cover, cover, cover, cover, cover;
  background-position: center, center, center, center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  background-attachment: fixed;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
}
body > * {
  position: relative;
  z-index: 2;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: var(--c-veil);
  pointer-events: none;
  z-index: 1;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 90% 65% at 50% 52%, transparent 40%, rgba(1, 6, 12, 0.35) 100%);
  pointer-events: none;
  z-index: 1;
}
body h1 {
  font-family: var(--font-display);
  color: #f8fafc;
  font-weight: 600;
  margin: 0;
  font-size: var(--fluid-h1);
  letter-spacing: -0.03em;
  line-height: 1.18;
  margin-bottom: 1.25rem;
  text-transform: none;
}
body h1 em {
  color: var(--c-accent-soft);
  font-style: italic;
  text-decoration: none;
}
@media screen and (max-width: 575px) {
  body h1 {
    font-size: clamp(1.35rem, 5vw + 0.85rem, 2rem);
  }
}
body h2 {
  font-family: var(--font-display);
  color: var(--c-accent);
  font-size: clamp(1rem, 0.65vw + 0.92rem, 1.35rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  font-weight: 600;
  text-transform: none;
  line-height: 1.3;
}
@media screen and (max-width: 575px) {
  body h2 {
    font-size: 0.98rem;
  }
}
body h3 {
  font-family: var(--font-display);
  color: #f1f5f9;
  font-weight: 600;
  font-size: clamp(1.08rem, 0.55vw + 1rem, 1.35rem);
  letter-spacing: -0.02em;
  text-transform: none;
  margin: 1.5rem 0 1rem;
  line-height: 1.3;
}
body h3.sub-title {
  color: var(--c-warm);
  text-transform: lowercase;
  font-size: 110%;
}
body h4 {
  color: var(--c-accent);
  font-weight: 100;
}
body label {
  color: #eef1ff;
}
body em {
  color: var(--c-accent-soft);
}
body strong {
  color: var(--c-accent);
}
body ul {
  list-style: none;
  padding-left: 1em;
  margin: 0;
  font-weight: 100;
}
body ul.info {
  padding-left: 0;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1200px) {
  body ul.info {
    flex-direction: row;
  }
}
body ul:not(.no-style):not(.sub-menu) li {
  position: relative;
}
body ul:not(.no-style):not(.sub-menu) li::before {
  display: block;
  position: absolute;
  height: 4px;
  width: 4px;
  background: var(--c-accent);
  border-radius: 50%;
  content: " ";
  top: 10px;
  left: -12px;
}
body figure {
  display: flex;
  position: relative;
  align-items: center;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  max-height: 680px;
  transition: transform 0.5s ease, filter 0.5s ease, box-shadow 0.5s ease, border 0.5s ease;
}
body figure img {
  width: 100%;
  object-fit: cover;
}
body img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
body .logos {
  padding: 25px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
body .logos li {
  margin: 0 15px;
}
body .logos img {
  height: 50px;
}
body p {
  font-size: var(--fluid-lead);
  line-height: 1.62;
  font-weight: 400;
}
body section.common .cover p,
body section .section .cover p {
  max-width: 72ch;
}
body .cover {
  padding: clamp(1rem, 3vw, 2rem);
}
body .plus-pattern {
  background-image: url("../svg/plus.svg");
  background-repeat: repeat;
  background-size: 70px 70px;
}
body section {
  position: relative;
  padding: var(--section-spacing-y) 0;
  background-size: cover;
  background-position: center;
}
body section .section {
  position: relative;
  padding: clamp(1.35rem, 3vw, 2.5rem) clamp(1.25rem, 3vw, 2.75rem);
  padding-left: clamp(1.5rem, 3.5vw, 2.85rem);
  border-radius: var(--radius-section);
  background: linear-gradient(168deg, rgba(10, 26, 34, 0.88) 0%, rgba(6, 14, 22, 0.94) 100%);
  border: 1px solid rgba(92, 240, 224, 0.18);
  border-left: none;
  box-shadow: var(--elev-1);
  backdrop-filter: blur(12px) saturate(130%);
  -webkit-backdrop-filter: blur(12px) saturate(130%);
  overflow: hidden;
}
body section .section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  border-radius: var(--radius-section) 0 0 var(--radius-section);
  background: linear-gradient(180deg, var(--c-accent), var(--c-midtone), var(--c-warm));
  box-shadow: 0 0 20px rgba(45, 212, 191, 0.35);
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  body section .section {
    padding: clamp(1.5rem, 2.5vw, 2.75rem) clamp(1.75rem, 3vw, 3rem);
    padding-left: clamp(2rem, 4vw, 3.25rem);
  }
}
body section.bg-image {
  border-bottom: none;
}
body section.bg-image > * {
  position: relative;
  z-index: 2;
}
body section.bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 18, 24, 0.48);
  backdrop-filter: blur(8px);
  z-index: 1;
}
body section#hero {
  padding: 100px 0;
}
@media screen and (min-width: 768px) {
  body section#hero {
    padding: 40px 0;
  }
}
@media screen and (max-width: 575px) {
  body {
    background-attachment: scroll;
  }
}
@media screen and (min-width: 576px) {
  body {
    background-size: cover;
  }
}

body footer {
  position: relative;
  background: linear-gradient(180deg, rgba(8, 20, 28, 0.72) 0%, rgba(3, 8, 14, 0.96) 100%);
  border-top: none;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--c-accent), var(--c-warm)) 1;
  backdrop-filter: blur(16px) saturate(124%);
  -webkit-backdrop-filter: blur(16px) saturate(124%);
  box-shadow:
    0 -32px 80px rgba(0, 6, 12, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: clamp(1.75rem, 4vw, 3rem) 0 1.75rem;
  margin-top: var(--section-spacing-y);
}
body footer .menu h4 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 20px;
  margin-bottom: 15px;
  font-family: var(--font-display);
  font-weight: 600;
  color: #f8fafc;
}
body footer .menu h4 .brand-title {
  font-size: 100%;
}
body footer .menu h4 .brand-name {
  font-size: 80%;
}
body footer .menu .icon {
  font-size: 120%;
}
body footer .menu ul .link {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
body footer .menu ul .link .title {
  font-weight: 100;
  color: var(--c-text-muted);
}
body footer .menu p {
  font-size: clamp(0.68rem, 1.2vw, 0.78rem);
  line-height: 1.4;
  margin: 0 0 0.55rem;
  color: var(--c-text-muted);
  font-weight: 400;
  max-width: 48ch;
}
body footer .menu p:last-child {
  margin-bottom: 0;
}
body footer .disclaimer h1 {
  display: flex;
  align-items: center;
}
body footer .menu {
  padding: 10px;
}
body footer .menu .menu-item {
  padding: 5px 15px;
}
body footer .menu.block {
  justify-content: flex-start;
}
body footer .box {
  text-align: center;
}
body footer .copyright {
  text-align: center;
  margin: 15px 0 0;
  color: var(--c-text-muted);
  font-weight: 100;
}
body .basement figure {
  display: flex;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 60%, #000 100%);
  border-radius: 50px;
  padding: 5px;
}
body .basement figure img {
  height: 60px;
}

body section.common .section {
  text-align: left;
}
body section.common .info {
  border: 1px solid var(--c-line);
  border-radius: 15px;
  padding: 10px;
  background: linear-gradient(180deg, transparent 0%, rgba(129, 230, 217, 0.13) 100%);
  margin: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
@media screen and (min-width: 768px) {
  body section.common .info {
    flex-direction: row;
  }
}
body section.common .info .item {
  text-align: center;
}
body section.common .info .item .icon {
  background: rgba(224, 181, 106, 0.38);
  padding: 15px;
  font-size: 300%;
  border-radius: 50px;
  box-shadow: 3px 3px 5px rgba(45, 212, 191, 0.26);
}
body section.common .info .item p {
  font-size: 100%;
}
body section.common .info .item h4 {
  margin: 25px;
  font-weight: 400;
  font-size: 200%;
  color: var(--c-accent);
}

body section.mix .block {
  text-align: center;
}
body section.mix .block h4 {
  font-size: 100%;
  margin: 15px 0;
  text-align: center;
}
body section.mix .block p {
  font-weight: 100;
  font-size: 90%;
  color: #fff;
}
body section.mix .block.second .box {
  padding: 5px;
  justify-content: center;
  background: linear-gradient(180deg, rgba(45, 212, 191, 0.34), rgba(45, 212, 191, 0.34));
}
body section.mix .block.third {
  text-align: center;
}
body section.mix .block.fourth .button {
  text-align: center;
}

body section.accord .accordion {
  padding: 0;
  margin-top: 40px;
}
body section.accord .accordion .accordion-item {
  background: linear-gradient(180deg, transparent 0%, rgba(129, 230, 217, 0.13) 100%);
  border: 1px solid var(--c-line);
  transition: border 0.5s, box-shadow 0.5s, transform 0.5s ease;
}
body section.accord .accordion .accordion-item h4 {
  color: #fff;
  font-size: 120%;
}
body section.accord .accordion .accordion-item:first-of-type {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
body section.accord .accordion .accordion-item:last-of-type {
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
}
body section.accord .accordion .accordion-item {
  border-radius: 5px;
  margin-bottom: 15px;
}
body section.accord .accordion .accordion-item:hover {
  border: 1px solid rgba(253, 186, 160, 0.65);
}
body section.accord .accordion .accordion-item .accordion-button {
  background: transparent;
  box-shadow: none;
}
body section.accord .accordion .accordion-item .accordion-button::after {
  filter: invert(1);
}
body section.accord .accordion .accordion-item .accordion-body {
  color: var(--c-text-muted);
}

body section.wide {
  border: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
body section.wide > * {
  position: relative;
  z-index: 2;
}
body section.wide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
body section.wide .section .info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 992px) {
  body section.wide .section .info {
    flex-wrap: nowrap;
  }
}
body section.wide .block {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body section.wide .block.plain .info {
  display: flex;
  justify-content: space-around;
  padding: 0 0 40px;
}
body section.wide .block.plain .info .item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body section.wide .block.plain .info .item p {
  font-size: 100%;
}
body section.wide .block.plain .info .item h4 {
  margin-top: 40px;
  font-weight: 400;
  font-size: 100%;
  color: var(--c-accent);
  text-align: center;
}
body section.wide .block .button {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media screen and (min-width: 992px) {
  body section.wide .block .button {
    flex-direction: row;
  }
}
body section.wide .block .button a {
  margin: 15px 0;
}
@media screen and (min-width: 992px) {
  body section.wide .block .button a {
    margin: 0 5px;
  }
}
body section.wide .block.rel {
  padding-bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  margin: 5px;
  box-shadow: 0 0 30px rgba(45, 212, 191, 0.14), 0 0 0 rgba(45, 212, 191, 0.09) inset;
  transition: box-shadow 0.2s, border 0.2s;
}
body section.wide .block.rel h4 {
  margin: 4px;
  font-size: 120%;
}
body section.wide .block.rel p {
  margin: 0 4px;
  color: var(--c-accent);
  font-weight: 100;
  font-size: 100%;
}
body section.wide .block.rel .plate {
  margin: 30px 0;
  display: flex;
  justify-content: space-between;
}
body section.wide .block.rel .plate .info {
  display: flex;
  border: none;
  padding: 10px;
}
body section.wide .block.rel .plate .grade {
  display: flex;
  align-items: center;
}
body section.wide .block.rel .plate .grade .label {
  margin: 0 10px;
}
body section.wide .block.rel .plate .grade h4 {
  margin: 0;
  font-weight: 400;
  font-size: 200%;
  color: var(--c-accent);
}
body section.wide .block.rel .plate .grade p {
  color: var(--c-text-muted);
  font-size: 100%;
}
body section.wide .block.rel .plate .grade p span {
  margin: 0 5px;
}
body section.wide .block.rel .info {
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
body section.wide .block.rel .info .item .promo {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
body section.wide .block.rel .info .item .promo h4 {
  color: var(--c-midtone);
  font-weight: 100;
  font-size: 100%;
  margin: 0;
}
body section.wide .block.rel .head {
  display: flex;
  align-items: flex-start;
}

body section.resp .section {
  text-align: center;
  position: relative;
  padding: 1.35rem 1.25rem 1.5rem;
  margin: 0 auto;
  max-width: 100%;
  background: linear-gradient(165deg, rgba(6, 42, 40, 0.92) 0%, rgba(5, 18, 24, 0.97) 52%, rgba(3, 10, 14, 0.99) 100%);
  border: 1px solid rgba(45, 212, 191, 0.42);
  border-radius: var(--radius-section);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 3px 0 rgba(251, 191, 36, 0.75) inset;
}
body section.resp .section h2 {
  margin: 0 0 1rem;
  color: #ecfdf5;
  font-size: clamp(0.72rem, 1.3vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}
body section.resp .section .logos li {
  background: rgba(236, 253, 245, 0.05);
  border: 1px solid rgba(236, 253, 245, 0.12);
  border-radius: 12px;
  padding: 0.45rem 0.75rem;
  box-shadow: none;
}
body section.resp .section .logos {
  gap: 1.75rem 2.25rem;
  padding: 0.35rem 0 0.35rem;
}
body section.resp .section .logos img {
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  border-radius: 0 !important;
}
body section.resp figure {
  background: none;
  border-radius: 0 !important;
  overflow: visible;
  max-height: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
}
body section.resp figure img {
  border-radius: 0 !important;
  display: block;
}
body section.resp figure:after {
  content: none;
}

body .block.chat .chat-hdr {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
body .block.chat .chat-hdr .chat-hdr-main .chat-title {
  color: var(--c-warm);
  font-weight: 400;
}
body .block.chat .chat-hdr .chat-hdr-main .chat-sub {
  margin: 0.25rem 0 0;
}
body .block.chat .chat-hdr .chat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--c-line);
  font-weight: 900;
  white-space: nowrap;
}
body .block.chat .chat-hdr .chat-pill .chat-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--c-warm);
  box-shadow: 0 0 0 0.35rem var(--c-glow);
}
body .block.chat .chat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  max-height: 22rem;
  overflow: auto;
}
body .block.chat .chat-list .chat-item {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.5rem;
  transition: transform 180ms ease, opacity 180ms ease;
}
body .block.chat .chat-list .chat-item .chat-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}
body .block.chat .chat-list .chat-item .chat-top .chat-meta {
  color: var(--c-warm-hot);
  font-weight: 400;
}
body .block.chat .chat-list .chat-item p.chat-msg {
  color: #fff;
  font-size: 100%;
}

body .block .tabs .nav .tab-btn {
  width: 100%;
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 0.75rem;
  align-items: center;
  text-align: left;
  padding: 0.85rem 0.9rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.01em;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
body .block .tabs .nav .tab-btn.active {
  background: linear-gradient(180deg, rgba(45, 212, 191, 0.1), rgba(6, 18, 24, 0.5));
  border-color: rgba(34, 211, 172, 0.55);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}
body .block .tabs .nav .tab-btn.active .tab-btn-idx {
  background: rgba(56, 232, 207, 0.12);
  border-color: rgba(56, 232, 207, 0.28);
}
body .block .tabs .nav .tab-btn:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(45, 212, 191, 0.1), rgba(6, 18, 24, 0.5));
  border-color: rgba(34, 211, 172, 0.55);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}
body .block .tabs .nav .tab-btn .tab-btn-idx {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(234, 241, 255, 0.92);
}
body .block .tabs .details .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
body .block .tabs .details .meta .title {
  font-weight: 100;
}

body .block .nav {
  display: grid;
  gap: 0.6rem;
}
body .block .nav .f-tab-btn {
  width: 100%;
  gap: 0.75rem;
  align-items: center;
  text-align: left;
  padding: 0.3rem 0.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 900;
  letter-spacing: 0.01em;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
body .block .nav .f-tab-btn.active {
  background: linear-gradient(180deg, rgba(45, 212, 191, 0.1), rgba(6, 18, 24, 0.5));
  border-color: rgba(34, 211, 172, 0.55);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}
body .block .nav .f-tab-btn:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(45, 212, 191, 0.1), rgba(6, 18, 24, 0.5));
  border-color: rgba(34, 211, 172, 0.55);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}
body .block .nav .f-tab-btn .f-media {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 0.75rem;
  align-items: center;
}
body .block .nav .f-tab-btn .f-media .f-thumb {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.25);
  aspect-ratio: 16/9;
}
body .block .nav .f-tab-btn .f-media .f-title {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: #eaf1ff;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
body .block .v-media {
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  aspect-ratio: 16/9;
}
body .block .v-media .v-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

body .block .phone-wrap {
  min-height: 22rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .block .phone-wrap .phone {
  position: relative;
  width: 25rem;
  aspect-ratio: 16/9;
  border-radius: 2rem;
  padding: 0.75rem;
  background: radial-gradient(140px 90px at 30% 20%, rgba(56, 232, 207, 0.2), transparent 65%), radial-gradient(140px 90px at 70% 30%, rgba(224, 181, 106, 0.16), transparent 65%), linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.14);
  transform: rotate(7deg);
  transform-origin: center;
}
@media screen and (min-width: 768px) {
  body .block .phone-wrap .phone {
    width: 30rem;
  }
}
body .block .phone-wrap .phone:after {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 50%;
  transform: translateX(-50%);
  width: 5.5rem;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
body .block .phone-wrap .phone:before {
  content: "";
  position: absolute;
  inset: 0.5rem;
  border-radius: 1.6rem;
  pointer-events: none;
  border: 1px solid rgba(0, 0, 0, 0.35);
}
body .block .phone-wrap .phone .phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
body .block .sound .player {
  padding: 1.25rem 1.25rem;
}
body .block .sound .player .player-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
body .block .sound .player .player-top .player-now .player-title {
  margin: 0.35rem 0 0;
  font-weight: 900;
  letter-spacing: 0.02em;
}
body .block .sound .player .player-top .player-btns {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex: 0 0 auto;
}
body .block .sound .player .player-top .player-btns .p-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  place-items: center;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
body .block .sound .player .player-top .player-btns .p-btn i {
  color: #fff;
}
body .block .sound .player .player-top .player-btns .p-btn-main {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(180deg, rgba(45, 212, 191, 0.26), rgba(45, 212, 191, 0.26));
  border-color: rgba(45, 212, 191, 0.26);
}
body .block .sound .player .p-progress {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
body .block .sound .player .p-progress .range {
  width: 100%;
  height: 2.25rem;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0 0.75rem;
  appearance: none;
}
body .block .sound .player .p-progress .range::-moz-range-thumb {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--c-warm-hot), var(--c-warm));
  border: 1px solid rgba(0, 0, 0, 0.25);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}
body .block .sound .player .p-progress .time {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-warm);
  font-weight: 900;
}
body .block .sound .player .p-progress .time-sep {
  opacity: 0.7;
}
body .block .sound .player .playlist {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.75rem;
  display: grid;
  gap: 0.6rem;
}
body .block .sound .player .playlist .track {
  width: 100%;
  display: grid;
  grid-template-columns: 2.25rem 1fr 0.75rem;
  gap: 0.75rem;
  align-items: center;
  padding: 0.85rem 0.9rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(45, 212, 191, 0.26);
  color: var(--c-text-muted);
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  text-align: left;
}
body .block .sound .player .playlist .track.is-active {
  background: linear-gradient(180deg, rgba(45, 212, 191, 0.26), rgba(45, 212, 191, 0.14));
  border-color: rgba(45, 212, 191, 0.26);
}
body .block .sound .player .playlist .track.is-active .track-mark {
  background: var(--c-warm);
  box-shadow: 0 0 0 0.35rem rgba(45, 212, 191, 0.28);
}
body .block .sound .player .playlist .track:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(45, 212, 191, 0.26), rgba(45, 212, 191, 0.14));
  border-color: rgba(45, 212, 191, 0.26);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}
body .block .sound .player .playlist .track .track-idx {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 900;
}
body .block .sound .player .playlist .track .track-txt {
  min-width: 0;
  display: grid;
  gap: 0.25rem;
}
body .block .sound .player .playlist .track .track-txt .track-title {
  font-weight: 400;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
body .block .sound .player .playlist .track .track-txt .track-sub {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(253, 186, 160, 0.65);
  font-size: 90%;
}
body .block .sound .player .playlist .track .track-mark {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

body .modal .modal-close {
  filter: invert(1);
}
body .modal .modal-content {
  border-radius: 15px;
  box-shadow: 0 18px 50px rgba(6, 4, 20, 0.55);
  color: #fff;
  background: var(--c-glass);
  border: 1px solid var(--c-line);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
}
body .modal .modal-content .modal-hdr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
body .modal .modal-content .invite .input {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 0.9rem;
  padding: 0.75rem 0.9rem;
  color: #fff;
}
body .modal .modal-content .invite .field {
  margin-bottom: 1rem;
}
body .modal .modal-content .invite .invite-actions {
  margin-top: 1rem;
}

body section.blog .brand .stars {
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.05);
}
body section.blog .brand .stars .high {
  font-size: 150%;
}
body section.blog .brand .stars .medium {
  font-size: 120%;
}
body section.blog .brand .stars i {
  color: #fff;
}


body header {
  overflow-x: visible;
  overflow-y: visible;
  position: sticky;
  z-index: 999;
  top: 0;
  margin: 0.85rem auto 2.25rem;
  padding-top: 0.65rem;
}
body header nav {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.15rem;
  border: 1px solid rgba(148, 226, 219, 0.2);
  border-top: 4px solid var(--c-accent);
  border-radius: var(--radius-shell);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  backdrop-filter: blur(18px) saturate(125%);
  padding: 0.95rem 1.35rem 0.95rem 1.55rem;
  min-height: 78px;
  box-shadow: var(--elev-nav);
  background: transparent;
}
body header nav.site-header-navbar > * {
  position: relative;
  z-index: 1;
}
body header nav > ul.no-style {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem 0.65rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
body header nav > ul.no-style > li {
  padding: 0;
  margin: 0;
}
body header nav .btn-nav {
  white-space: nowrap;
}
body header nav::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(168deg, rgba(16, 40, 46, 0.88) 0%, rgba(7, 14, 22, 0.95) 52%, rgba(5, 12, 18, 0.98) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
body header nav .navbar-brand {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.15rem;
  max-height: none;
  z-index: 9999;
}
body header nav .navbar-brand .logo img {
  border: none;
  max-height: 76px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.45));
}
@media screen and (max-width: 575px) {
  body header nav .navbar-brand .logo img {
    max-height: 64px;
  }
}
@media screen and (min-width: 768px) {
  body header nav .navbar-brand .logo img {
    max-height: 92px;
  }
}
body header nav .navbar-brand .logo::after {
  content: none;
}
body header nav ul li {
  list-style: none;
  position: relative;
  padding-right: 10px;
}
body header nav ul li.menu-item-has-children {
  position: relative;
}
body header nav ul li.menu-item-has-children a {
  display: inline-block;
  margin-right: 15px;
}


@media screen and (max-width: 991px) {
  body header nav.site-header-navbar .site-header-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: 1px solid rgba(244, 246, 255, 0.55);
    border-radius: 12px;
    flex-shrink: 0;
    align-self: center;
    background: rgba(244, 246, 255, 0.14);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  }
  body header nav.site-header-navbar .site-header-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(45, 212, 191, 0.45);
  }
  body header nav.site-header-navbar .site-header-toggler .site-burger {
    position: relative;
    display: block;
    width: 1.2rem;
    height: 0.95rem;
  }
  body header nav.site-header-navbar .site-header-toggler .site-burger-bar {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 2px;
    background: #f4f6ff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    transition:
      transform 0.25s ease,
      opacity 0.2s ease,
      top 0.25s ease,
      bottom 0.25s ease,
      margin 0.25s ease;
  }
  body header nav.site-header-navbar .site-header-toggler .site-burger-bar:nth-child(1) {
    top: 0;
  }
  body header nav.site-header-navbar .site-header-toggler .site-burger-bar:nth-child(2) {
    top: 50%;
    margin-top: -1px;
  }
  body header nav.site-header-navbar .site-header-toggler .site-burger-bar:nth-child(3) {
    bottom: 0;
  }
  body header nav.site-header-navbar .site-header-toggler[aria-expanded="true"] .site-burger-bar:nth-child(1) {
    top: 50%;
    margin-top: -1px;
    transform: rotate(45deg);
  }
  body header nav.site-header-navbar .site-header-toggler[aria-expanded="true"] .site-burger-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  body header nav.site-header-navbar .site-header-toggler[aria-expanded="true"] .site-burger-bar:nth-child(3) {
    bottom: auto;
    top: 50%;
    margin-top: -1px;
    transform: rotate(-45deg);
  }
}
body header nav .site-nav-cluster,
body header nav .site-nav-standard-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.65rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
body header nav .site-nav-cluster > li,
body header nav .site-nav-standard-menu > li {
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 991px) {
  body header nav .site-nav-cluster,
  body header nav .site-nav-standard-menu {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  body header nav .site-nav-cluster .btn-nav,
  body header nav .site-nav-standard-menu .btn-nav {
    width: 100%;
    text-align: center;
  }
  body header nav.site-header-navbar .navbar-collapse {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    order: 10;
    z-index: 4;
    margin-top: 0.35rem;
    padding: 1rem 1.1rem;
    border-radius: 14px;
    border: 1px solid var(--c-line);
    background: rgba(6, 16, 22, 0.94);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    align-self: stretch;
  }
  body header nav .site-nav-mobile-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    order: 0;
    min-height: 3rem;
  }
}
@media screen and (min-width: 992px) {
  body header nav .site-nav-standard-menu {
    margin-left: auto !important;
    justify-content: flex-end;
  }
  body header nav .site-nav-composite-inner {
    position: relative;
    min-height: 3.5rem;
    align-items: center;
  }
  body header nav .site-nav-desktop-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    margin: 0 !important;
  }
  body header nav .site-nav-before {
    justify-content: flex-start;
    margin-right: auto;
  }
  body header nav .site-nav-after {
    justify-content: flex-end;
    margin-left: auto;
  }
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: var(--radius-btn);
  color: #ecfeff;
  border: 1.5px solid rgba(204, 251, 247, 0.45);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
  transition:
    transform 0.18s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  position: relative;
  background: rgba(8, 20, 28, 0.45);
  overflow: visible;
  z-index: 9999;
}
.btn-nav span {
  position: relative;
  z-index: 1;
}
.btn-nav::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--c-accent-soft), transparent 45%, rgba(251, 191, 36, 0.4));
  opacity: 0;
  transition: opacity 0.22s ease;
  z-index: -1;
  pointer-events: none;
}
.btn-nav:hover::before {
  opacity: 0.28;
}
.btn-nav:hover,
.btn-nav:active {
  cursor: pointer;
  color: #042018;
  background: linear-gradient(135deg, var(--c-accent-soft), var(--c-warm-hot));
  border-color: rgba(251, 191, 36, 0.65);
  box-shadow:
    0 10px 28px rgba(0, 10, 16, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  transform: translateY(-2px);
}
@media screen and (min-width: 576px) {
  .btn-nav {
    padding: 0.62rem 1.35rem;
    font-size: 0.8rem;
  }
}
@media screen and (min-width: 992px) {
  .btn-nav {
    text-transform: none;
    letter-spacing: -0.01em;
    font-size: 0.88rem;
    font-family: var(--font-body);
    font-weight: 600;
  }
}
.btn-nav.btn-full {
  background: linear-gradient(135deg, #0f766e, #047857);
  border-color: transparent;
  color: #f8fafc !important;
  box-shadow:
    0 10px 32px rgba(0, 0, 0, 0.4),
    0 0 24px rgba(45, 212, 191, 0.2);
}
.btn-nav.btn-full:hover,
.btn-nav.btn-full:active {
  background: linear-gradient(135deg, var(--c-warm), var(--c-warm-hot));
  color: #042f2e !important;
}
.btn-nav.btn-full::before {
  display: none;
}
.btn-nav.btn-ghost:link,
.btn-nav.btn-ghost:visited {
  color: #ecfeff;
  border-color: rgba(94, 234, 212, 0.35);
  background: rgba(4, 12, 18, 0.35);
}
.btn-nav.btn-ghost:hover,
.btn-nav.btn-ghost:active {
  border-color: var(--c-accent);
  color: var(--c-ink);
  background: var(--c-accent-soft);
}

a.lining {
  transition: color 0.2s;
}
a.lining::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: var(--c-warm);
  transition: width 0.3s ease;
}
a.lining:link, a.lining:visited {
  color: var(--c-accent-soft);
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 0;
}
a.lining:hover, a.lining:active {
  color: var(--c-warm);
}
a.lining:hover::before, a.lining:active::before {
  width: 100%;
}

body .cover {
  padding: 10px;
}

body .block {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(129, 230, 217, 0.13) 100%);
  border-radius: 20px;
  border: 1px solid var(--c-line);
  padding: 15px;
  transition: border 0.2s, box-shadow 0.2s, transform 0.2s ease;
}
body .box:hover {
  box-shadow: 0 0 15px rgba(94, 234, 212, 0.38);
  border: 1px solid rgba(94, 234, 212, 0.38);
}
body .accord .box {
  height: auto;
}

body .plate {
  display: flex;
  border: 1px solid var(--c-line);
  border-radius: 50px;
  padding: 2px 5px 2px;
  background: linear-gradient(180deg, transparent 0%, rgba(129, 230, 217, 0.13) 100%);
  margin: 5px;
  align-items: center;
  transition: box-shadow 0.4s, border 0.4s, transform 0.4s ease;
}
body .plate:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 15px rgba(94, 234, 212, 0.38);
  border: 1px solid rgba(94, 234, 212, 0.38);
}
body .plate p {
  font-size: 90%;
  margin: 0;
}

body .icon {
  margin-right: 5px;
  color: #fff;
  font-size: 100%;
}
body .box .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  text-align: center;
  padding: 5px;
  border-radius: 50px;
  background: rgba(224, 181, 106, 0.38);
  font-size: 220%;
  margin-right: 25px;
  color: #fff;
}
body .plate .icon {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  padding: 12px;
  font-size: 140%;
  border-radius: 50px;
  margin-right: 10px;
  box-shadow: 3px 3px 5px rgba(45, 212, 191, 0.26);
}
body h1 .icon {
  color: #fff;
  font-size: 100%;
}
body .wide .rel .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  padding: 12px;
  font-size: 140%;
  border-radius: 10px;
  box-shadow: 3px 3px 5px rgba(94, 234, 212, 0.38);
}
body .wide .plain .info {
  flex-direction: column;
}
@media screen and (min-width: 576px) {
  body .wide .plain .info {
    flex-direction: row;
  }
}
body .wide .plain .info .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  color: var(--c-warm);
  padding: 15px;
  font-size: 200%;
  border-radius: 100px;
  box-shadow: 3px 3px 5px rgba(45, 212, 191, 0.26);
}

body .ring {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
body .ring .ring-border {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(#ccfbf1 0% 0%, #115e59 0% 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 10px), black 0);
  mask: radial-gradient(farthest-side, transparent calc(100% - 10px), black 0);
}
body .ring .ring-border.nine-9 {
  background: conic-gradient(#ccfbf1 0% 99%, #115e59 99% 100%);
}
body .ring .ring-border.nine-8 {
  background: conic-gradient(#ccfbf1 0% 98%, #115e59 98% 100%);
}
body .ring .ring-border.nine-6 {
  background: conic-gradient(#ccfbf1 0% 96%, #115e59 96% 100%);
}
body .ring .ring-border.nine-4 {
  background: conic-gradient(#ccfbf1 0% 94%, #115e59 94% 100%);
}
body .ring .ring-border.nine-3 {
  background: conic-gradient(#ccfbf1 0% 93%, #115e59 93% 100%);
}
body .ring .ring-border.nine-2 {
  background: conic-gradient(#ccfbf1 0% 92%, #115e59 92% 100%);
}
body .ring .ring-border.nine-0 {
  background: conic-gradient(#ccfbf1 0% 90%, #115e59 90% 100%);
}
body .ring .ring-border.eight-9 {
  background: conic-gradient(#ccfbf1 0% 89%, #115e59 89% 100%);
}
body .ring .ring-border.eight-7 {
  background: conic-gradient(#ccfbf1 0% 87%, #115e59 87% 100%);
}
body .ring .rate {
  position: relative;
  text-align: center;
  font-weight: bold;
}


body header nav .collapse.navbar-collapse {
  flex: 1 1 100%;
  justify-content: flex-end;
}
@media screen and (min-width: 992px) {
  body header nav .collapse.navbar-collapse {
    flex: 1 1 auto;
    display: flex !important;
    align-items: center;
  }
  body header nav .navbar-nav {
    flex-direction: row !important;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.65rem;
    margin-left: auto !important;
  }
  body header nav .navbar-nav .nav-link {
    padding: 0.35rem 0.6rem;
  }
}


body section.blog .comparison-head-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 0;
  padding-bottom: 0.35rem;
  scrollbar-color: rgba(45, 212, 191, 0.45) rgba(5, 14, 20, 0.4);
  scrollbar-width: thin;
}
body section.blog .comparison-head-wrap::-webkit-scrollbar {
  height: 6px;
}
body section.blog .comparison-head-wrap::-webkit-scrollbar-thumb {
  background: rgba(45, 212, 191, 0.4);
  border-radius: 6px;
}
body section.blog .head-table {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  width: 100%;
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius-section);
  background: linear-gradient(180deg, rgba(17, 94, 89, 0.55), rgba(6, 22, 28, 0.92));
  border: 1px solid var(--c-line);
  color: #f4f6ff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(4, 2, 16, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
body section.blog .head-table li {
  flex: 1 1 auto;
  min-width: 5rem;
  text-align: center;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  body section.blog .head-table {
    flex-wrap: nowrap;
    width: max-content;
    min-width: 100%;
    justify-content: flex-start;
    gap: 0.45rem 0.75rem;
    margin-bottom: 1rem;
  }
  body section.blog .head-table li {
    flex: 0 0 auto;
    min-width: 6.5rem;
    max-width: 10rem;
    text-align: center;
    font-size: 0.62rem;
    line-height: 1.25;
  }
}


body section.blog .brand {
  position: relative;
  border-radius: 22px;
  background: linear-gradient(152deg, rgba(12, 32, 38, 0.88) 0%, rgba(6, 14, 22, 0.95) 52%, rgba(4, 12, 18, 1) 100%);
  border: 1px solid rgba(94, 234, 212, 0.22);
  box-shadow:
    0 28px 72px rgba(0, 4, 12, 0.65),
    -8px 0 40px rgba(45, 212, 191, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  overflow: hidden;
  margin-bottom: 2rem;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.22s ease;
}
body section.blog .brand::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: min(140px, 28%);
  height: 6px;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.85));
  border-radius: 0 21px 0 12px;
  pointer-events: none;
}
body section.blog .brand::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(100% 80% at 0% -10%, rgba(45, 212, 191, 0.2), transparent 52%);
  opacity: 0.75;
}
body section.blog .brand:hover {
  border-color: rgba(253, 186, 160, 0.35);
  box-shadow:
    0 34px 86px rgba(0, 0, 12, 0.72),
    -6px 0 48px rgba(45, 212, 191, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  transform: translateY(-5px);
}
body section.blog .brand > .row {
  position: relative;
  z-index: 1;
  --brand-divider: rgba(255, 255, 255, 0.08);
}
body section.blog .brand .brand-col {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 991px) {
  body section.blog .brand .brand-col:not(.brand-col-foot) {
    border-bottom: 1px solid var(--brand-divider);
  }
}
@media screen and (min-width: 992px) {
  body section.blog .brand .brand-col-lead {
    border-right: 1px solid var(--brand-divider);
  }
  body section.blog .brand .brand-col-body {
    border-right: 1px solid var(--brand-divider);
  }
}
body section.blog .brand .brand-col-lead {
  background: linear-gradient(180deg, rgba(19, 78, 74, 0.35) 0%, rgba(5, 22, 28, 0.5) 100%);
}
body section.blog .brand .brand-col-score,
body section.blog .brand .brand-col-pay {
  justify-content: center;
}
body section.blog .brand .logo {
  padding: 1.15rem 1rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
body section.blog .brand .logo figure {
  margin: 0;
  max-width: 220px;
}
body section.blog .brand .logo img {
  max-height: 72px;
  width: auto;
  object-fit: contain;
}
body section.blog .brand .promo {
  margin: 0 1rem 0.75rem;
  padding: 0.5rem 0.65rem;
  border-radius: 10px;
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--c-text);
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
body section.blog .brand .links {
  margin-top: auto;
  padding: 0 1rem 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.55rem;
  border: none;
  background: transparent;
}
body section.blog .brand .links .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  text-align: center;
  text-decoration: none;
}
body section.blog .brand .links .btn-ghost {
  color: #f4f6ff !important;
  border: 1px solid rgba(200, 210, 255, 0.65) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  font-weight: 600;
}
body section.blog .brand .links .btn-ghost:hover,
body section.blog .brand .links .btn-ghost:active {
  color: var(--c-ink) !important;
  border-color: transparent !important;
  background: linear-gradient(135deg, var(--c-warm), var(--c-warm-hot)) !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}
body section.blog .brand .links .btn-full {
  font-weight: 600;
  border: none;
  background: linear-gradient(135deg, #0f766e, var(--c-warm));
  color: #f8f9ff !important;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}
body section.blog .brand .links .btn-full:hover {
  filter: brightness(1.06);
  color: var(--c-ink) !important;
}
body section.blog .brand .brand-secondary-link {
  font-size: 0.8rem;
  text-align: center;
  color: var(--c-accent-soft);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
body section.blog .brand .brand-secondary-link:hover {
  color: var(--c-warm);
}
body section.blog .brand .list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 1.1rem;
  text-align: left;
  margin: 0;
  min-height: 100%;
}
body section.blog .brand .list h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: #f4f6ff;
}
body section.blog .brand .list p {
  font-size: 0.95rem;
  line-height: 1.45;
  margin-bottom: 0.65rem;
  color: var(--c-text-muted);
}
body section.blog .brand .list ul {
  padding-left: 0;
  margin: 0;
}
body section.blog .brand .list ul li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.15rem;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--c-text-muted);
}
body section.blog .brand .list ul li::before {
  left: 0;
  top: 0.65rem;
  width: 5px;
  height: 5px;
  background: var(--c-accent-soft);
}
body section.blog .brand .grade {
  padding: 1rem 0.65rem;
  min-height: 11rem;
  background: rgba(8, 6, 22, 0.22);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 992px) {
  body section.blog .brand .grade {
    border-left: 1px solid var(--brand-divider);
    border-right: 1px solid var(--brand-divider);
  }
}
body section.blog .brand .votes-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}
body section.blog .brand .votes-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.72rem;
  line-height: 1.25;
  color: var(--c-text-muted);
  text-align: center;
  max-width: 8rem;
}
body section.blog .brand .votes-count {
  font-weight: 700;
  color: var(--c-accent-soft);
}
body section.blog .brand .rate .value {
  color: #fff;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
body section.blog .brand .ring .ring-border {
  filter: drop-shadow(0 0 10px rgba(190, 205, 255, 0.55)) drop-shadow(0 0 4px rgba(255, 255, 255, 0.25));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 12px), black 0);
  mask: radial-gradient(farthest-side, transparent calc(100% - 12px), black 0);
}
body section.blog .brand .payment {
  height: 100%;
  min-height: 10rem;
  padding: 0.85rem 0.65rem;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 16, 22, 0.55);
  border: 1px solid rgba(45, 212, 191, 0.22);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
body section.blog .brand .payment .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}
body section.blog .brand .payment ul.info li::before {
  display: none !important;
  content: none !important;
}
body section.blog .brand .payment .info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 0.65rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
body section.blog .brand .payment .info figure {
  margin: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  padding: 8px;
  width: 52px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: none;
  max-height: none;
}
body section.blog .brand .payment .info img {
  max-width: 100%;
  max-height: 28px;
  width: auto;
  object-fit: contain;
}
body section.blog .brand .payment p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--c-text-muted);
  text-align: center;
}
body section.blog .brand .brand-col-foot .message {
  margin: 0;
  width: 100%;
}
body section.blog .brand .message {
  padding: 0.65rem 1rem;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.28);
  border: none;
  border-top: 1px solid var(--brand-divider);
  text-align: center;
}
body section.blog .brand .message p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--c-text-muted);
}


body section .section table,
body section .cover table {
  width: 100%;
  max-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.25rem 0;
  font-size: 0.92rem;
  line-height: 1.45;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(9, 24, 30, 0.65);
  border: 1px solid var(--c-line);
  box-shadow: 0 12px 36px rgba(4, 2, 16, 0.42);
}
body section .section table thead th,
body section .cover table thead th,
body section .section table tfoot th,
body section .cover table tfoot th {
  background: linear-gradient(180deg, rgba(17, 94, 89, 0.75) 0%, rgba(15, 118, 110, 0.7) 100%);
  color: #f6f7ff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.72rem;
  padding: 0.85rem 1rem;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
body section .section table tbody td,
body section .cover table tbody td {
  padding: 0.75rem 1rem;
  color: var(--c-text);
  background: rgba(16, 14, 32, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: top;
}
body section .section table tbody tr:nth-child(even) td,
body section .cover table tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.03);
}
body section .section .table,
body section .cover .table {
  --bs-table-bg: transparent;
  --bs-table-color: var(--c-text-muted);
  --bs-table-border-color: rgba(255, 255, 255, 0.08);
  --bs-table-striped-bg: rgba(255, 255, 255, 0.04);
  --bs-table-hover-bg: rgba(45, 212, 191, 0.08);
  margin-bottom: 1rem;
  color: var(--c-text-muted);
}
body section .section .table > :not(caption) > * > *,
body section .cover .table > :not(caption) > * > * {
  color: inherit;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
body section .section .table thead th,
body section .cover .table thead th {
  background: linear-gradient(180deg, rgba(17, 94, 89, 0.85), rgba(15, 118, 110, 0.75)) !important;
  color: #f6f7ff !important;
}
body .section figure.wp-block-table {
  margin: 1.25rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}
body .section figure.wp-block-table table {
  margin: 0;
  min-width: min(100%, 520px);
}


body section.accord .accordion .accordion-button {
  color: #f4f6ff !important;
  font-weight: 600;
  letter-spacing: 0.03em;
}
body section.accord .accordion .accordion-button:not(.collapsed) {
  background: rgba(45, 212, 191, 0.08);
}
body section.accord .accordion .accordion-body {
  line-height: 1.55;
}


body section.wide .section ul.info.no-style {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.85rem 1.15rem;
  padding: 0;
  margin-top: 1.75rem;
}
body section.wide .section ul.info.no-style li.plate {
  flex: 1 1 210px;
  max-width: 22rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  background: rgba(5, 22, 28, 0.62);
  border: 1px solid var(--c-line);
  box-shadow: 0 10px 32px rgba(4, 2, 16, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  margin: 0;
}
body section.wide .section ul.info .plate .icon {
  flex-shrink: 0;
  width: 3.35rem !important;
  height: 3.35rem !important;
  min-width: 3.35rem;
  margin-right: 0 !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem !important;
  border-radius: 14px !important;
  background: rgba(224, 181, 106, 0.3) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
body section.wide .section ul.info .plate p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.4;
  font-weight: 500;
  text-align: left;
  color: var(--c-text);
}


body section.container-fluid.flex .section > h2.title {
  margin: 0 0 0.85rem;
  font-size: clamp(0.78rem, 1.1vw, 0.88rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.45;
  text-transform: uppercase;
  color: var(--c-accent);
}
body section.container-fluid.flex .section > h2.title strong {
  color: var(--c-accent-soft);
  font-weight: 800;
}
body section.container-fluid.flex .section > p:empty {
  display: none;
}
body section.container-fluid.flex .section > p {
  max-width: 52rem;
  margin: 0 0 1.5rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--c-text-muted);
}
body section.container-fluid.flex .section > .col-md-12 > .row {
  margin-top: 0.25rem;
  --bs-gutter-x: 1.35rem;
  --bs-gutter-y: 1.35rem;
}
body section.container-fluid.flex .section .row > .col-lg-6.mx-auto {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
body section.container-fluid.flex .section .block {
  position: relative;
  height: 100%;
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  padding: 1.45rem 1.55rem 1.5rem;
  border-radius: calc(var(--radius-section) + 2px);
  background: linear-gradient(165deg, rgba(15, 40, 48, 0.48) 0%, rgba(6, 16, 22, 0.78) 100%);
  border: 1px solid var(--c-line);
  box-shadow: 0 14px 44px rgba(4, 2, 18, 0.48), 0 0 0 1px rgba(255, 255, 255, 0.04) inset, 0 1px 0 rgba(255, 255, 255, 0.06) inset;
  overflow: hidden;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.2s ease;
}
body section.container-fluid.flex .section .block::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(180, 195, 255, 0.55), rgba(224, 181, 106, 0.45), transparent);
  opacity: 0.85;
  pointer-events: none;
}
body section.container-fluid.flex .section .block:hover {
  border-color: rgba(200, 210, 255, 0.38);
  box-shadow: 0 18px 52px rgba(4, 2, 22, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  transform: translateY(-3px);
}
body section.container-fluid.flex .section .block h3 {
  margin: 0 0 0.35rem;
  padding: 0;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  color: #f6f7ff;
}
body section.container-fluid.flex .section .block h2.sub-title {
  margin: 0 0 1rem;
  padding: 0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--c-accent-soft);
  border: none;
}
body section.container-fluid.flex .section .block > .icon {
  margin-bottom: 0.65rem;
}
body section.container-fluid.flex .section .block > p {
  flex: 1 1 auto;
  margin: 0 0 0.65rem;
  font-size: 0.96rem;
  line-height: 1.62;
  color: var(--c-text-muted);
}
body section.container-fluid.flex .section .block > p:empty {
  display: none;
}
body section.container-fluid.flex .section .block p p {
  margin: 0 0 0.75rem;
}
body section.container-fluid.flex .section .block p p:last-child {
  margin-bottom: 0;
}
body section.container-fluid.flex .section .block figure {
  margin: 0 0 1rem;
  border-radius: 12px;
  overflow: hidden;
}
body section.container-fluid.flex .section .block .button {
  margin-top: auto;
  padding-top: 1.1rem;
}
body section.container-fluid.flex .section .block .button .btn.btn-full {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.68rem 1.25rem;
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #f8f9ff !important;
  background: linear-gradient(135deg, #0f766e 0%, #134e4a 40%, var(--c-warm) 100%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4), 0 0 24px rgba(45, 212, 191, 0.18);
  transition: filter 0.2s ease, transform 0.15s ease, color 0.2s ease;
}
body section.container-fluid.flex .section .block .button .btn.btn-full:hover {
  filter: brightness(1.12);
  color: var(--c-ink) !important;
  transform: translateY(-2px);
}


body section.container-fluid.wide .section h1.title {
  position: relative;
  margin: 0 0 1.1rem;
  padding-bottom: 1rem;
  font-size: clamp(1.15rem, 2.6vw, 1.7rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
  color: #f7f8ff;
}
body section.container-fluid.wide .section h1.title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 4rem;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--c-accent-soft), var(--c-warm));
  opacity: 0.95;
}
body section.container-fluid.wide .section .col-md-12.mx-auto.mt-5 > h2 {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-accent-soft);
}
body section.container-fluid.wide .section .col-md-12.mx-auto.mt-5 > p {
  max-width: 46rem;
  margin: 0 0 1rem;
  font-size: 1.02rem;
  line-height: 1.68;
  color: var(--c-text-muted);
}
body section.container-fluid.wide .section .col-md-12.mx-auto.mt-5 .button {
  margin-top: 1.35rem;
}
body section.container-fluid.wide .section .col-md-12.mx-auto.mt-5 .button .btn.btn-full {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f8f9ff !important;
  background: linear-gradient(135deg, #0f766e 0%, #134e4a 45%, var(--c-warm) 100%);
  border: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
}


body section.container-fluid.sender .section > h2 {
  margin: 0 0 1rem;
  padding-bottom: 0.9rem;
  font-size: clamp(1rem, 2vw, 1.28rem);
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
  color: #f5f7ff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
body section.container-fluid.sender .section > p {
  max-width: 44rem;
  margin: 0 0 1.35rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--c-text-muted);
}
body section.container-fluid.sender .section > ul.info {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
body section.container-fluid.sender .section > ul.info > li.item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.05rem 1.2rem;
  border-radius: var(--radius-section);
  background: linear-gradient(160deg, rgba(42, 40, 72, 0.45) 0%, rgba(6, 16, 22, 0.72) 100%);
  border: 1px solid var(--c-line);
  box-shadow: 0 10px 32px rgba(4, 2, 16, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
body section.container-fluid.sender .section > ul.info > li.item::before {
  display: none !important;
  content: none !important;
}
body section.container-fluid.sender ul.info .item .icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 12px;
  font-size: 1.25rem;
  color: #f4f6ff;
  background: rgba(224, 181, 106, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
}
body section.container-fluid.sender ul.info .item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--c-accent-soft);
}
body section.container-fluid.sender ul.info .item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--c-text);
}
body section.container-fluid.sender .block.p-4 {
  width: 100%;
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem 1.6rem 1.65rem !important;
  border-radius: calc(var(--radius-section) + 2px);
  background: linear-gradient(165deg, rgba(12, 32, 38, 0.6) 0%, rgba(5, 14, 20, 0.85) 100%);
  border: 1px solid var(--c-line);
  box-shadow: 0 16px 48px rgba(4, 2, 18, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
body section.container-fluid.sender .block.p-4 h1.h4 {
  margin-bottom: 1.25rem !important;
  font-size: 0.78rem !important;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f4f6ff !important;
}
body section.container-fluid.sender .form-label {
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #e8ebff;
}
body section.container-fluid.sender .form-control {
  padding: 0.65rem 0.9rem;
  font-size: 0.95rem;
  color: #f4f6ff;
  background: rgba(8, 6, 20, 0.55);
  border: 1px solid rgba(160, 175, 255, 0.28);
  border-radius: 10px;
}
body section.container-fluid.sender .form-control::placeholder {
  color: rgba(190, 200, 235, 0.45);
}
body section.container-fluid.sender .form-control:focus {
  border-color: rgba(200, 210, 255, 0.55);
  background: rgba(12, 10, 26, 0.65);
  box-shadow: 0 0 0 0.2rem rgba(45, 212, 191, 0.22);
  color: #fff;
}
body section.container-fluid.sender textarea.form-control {
  min-height: 8rem;
}
body section.container-fluid.sender .form-text {
  color: rgba(190, 198, 230, 0.65);
  font-size: 0.78rem;
}
body section.container-fluid.sender .form-check-label {
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--c-text-muted);
}
body section.container-fluid.sender .form-check-label a {
  color: var(--c-accent-soft);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
body section.container-fluid.sender .form-check-input {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.2rem;
  border-color: rgba(180, 195, 255, 0.45);
  background-color: rgba(8, 6, 20, 0.6);
}
body section.container-fluid.sender .form-check-input:checked {
  background-color: var(--c-warm);
  border-color: rgba(0, 0, 0, 0.2);
}

body section .section button.btn.btn-full,
body section .section .d-grid > button.btn.btn-full {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1.35rem;
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #f8f9ff !important;
  background: linear-gradient(135deg, #0f766e 0%, #134e4a 40%, var(--c-warm) 100%) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.42), 0 0 28px rgba(45, 212, 191, 0.15);
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.15s ease, color 0.2s ease;
}
body section .section button.btn.btn-full:hover,
body section .section .d-grid > button.btn.btn-full:hover {
  filter: brightness(1.1);
  color: var(--c-ink) !important;
  transform: translateY(-2px);
}
body section.container-fluid.sender .alert.alert-success {
  background: rgba(34, 160, 90, 0.2);
  border: 1px solid rgba(80, 220, 140, 0.45);
  color: #d4ffe8;
  border-radius: 10px;
}

.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background: rgba(4, 14, 20, 0.96);
  border-top: 1px solid var(--c-line);
  box-shadow: 0 -12px 42px rgba(0, 0, 0, 0.5), 0 -1px 0 rgba(45, 212, 191, 0.12);
  backdrop-filter: blur(10px);
  color: var(--c-text);
}

.cookie-consent--dismissed {
  display: none !important;
}

.cookie-consent__text {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--c-text-muted);
}

.cookie-consent__btn {
  min-width: 10rem;
  white-space: nowrap;
}

.legal-muted {
  font-size: 0.95em;
  color: rgba(173, 210, 204, 0.72);
  letter-spacing: 0.03em;
}

@media (prefers-reduced-motion: reduce) {
  body::after {
    opacity: 0.2;
  }
}

