/* silicol®gel — medical sales layout + glass panels (3D-ready background) */

:root {
  --bg-deep: #06101d;
  --bg-mid: #0b1f37;
  --accent: #2dd4bf;
  --accent-soft: rgba(45, 212, 191, 0.35);
  --text: #e8f0f7;
  --text-muted: rgba(232, 240, 247, 0.72);
  --text-faint: rgba(232, 240, 247, 0.5);
  --stroke-glass: rgba(255, 255, 255, 0.22);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-bg-strong: rgba(255, 255, 255, 0.14);
  --overlay-opacity: 0.36;
  --shadow-soft: 0 18px 50px rgba(0, 20, 40, 0.35);
  --radius: 18px;
  --radius-sm: 12px;
  --font-sans: Inter, system-ui, -apple-system, "SF Pro Text", "Segoe UI",
    Roboto, Arial, sans-serif;
  --space-section: clamp(3.5rem, 6vw, 6rem);
  --container: min(1120px, calc(100% - 2.5rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html[dir="rtl"] body {
  direction: rtl;
}

html[dir="rtl"] .header-inner {
  direction: rtl;
}

html[dir="rtl"] .hero-copy,
html[dir="rtl"] .section-head,
html[dir="rtl"] .clinical-block,
html[dir="rtl"] .company-block,
html[dir="rtl"] .contact-form-wrap,
html[dir="rtl"] .contact-aside {
  text-align: right;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-deep);
  min-height: 100vh;
}

/* Fixed video background */
.bg-video {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.bg-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 90% 70% at 50% 20%,
      rgba(10, 30, 56, calc(var(--overlay-opacity) - 0.12)),
      rgba(4, 12, 22, var(--overlay-opacity))
    ),
    linear-gradient(180deg, rgba(3, 12, 22, var(--overlay-opacity)), rgba(7, 16, 29, calc(var(--overlay-opacity) + 0.06)));
  transition: background 120ms linear;
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(15px) saturate(145%);
  -webkit-backdrop-filter: blur(15px) saturate(145%);
  border: 1px solid var(--stroke-glass);
  box-shadow: var(--shadow-soft);
}

.glass--header {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0;
  border-width: 0 0 1px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.glass--panel {
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.25rem);
}

.glass--card {
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.35rem;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.container--narrow {
  width: min(720px, var(--container));
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0.75rem;
  z-index: 100;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #042f2e;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
}

.skip-link:focus {
  left: 0.75rem;
}

.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;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  width: var(--container);
  margin-inline: auto;
}

.logo {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.logo-text {
  display: inline-flex;
  align-items: baseline;
  gap: 0.1rem;
}

.logo-reg {
  font-size: 0.65em;
  vertical-align: super;
  font-weight: 600;
}

.nav {
  display: none;
  gap: 1.5rem;
  align-items: center;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

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

.header-actions {
  display: none;
  gap: 0.6rem;
  align-items: center;
}

.version-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.18rem 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.18rem 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.lang-btn {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: rgba(232, 240, 247, 0.7);
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
}

.lang-btn:hover {
  color: rgba(232, 240, 247, 0.92);
  background: rgba(255, 255, 255, 0.08);
}

.lang-btn.is-current {
  color: rgba(232, 240, 247, 0.92);
  background: rgba(255, 255, 255, 0.12);
}

.version-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(232, 240, 247, 0.7);
  text-decoration: none;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
}

.version-link:hover {
  color: rgba(232, 240, 247, 0.92);
  background: rgba(255, 255, 255, 0.08);
}

.version-link.is-current {
  color: #042f2e;
  background: rgba(45, 212, 191, 0.75);
}
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--stroke-glass);
  border-radius: 10px;
  background: var(--glass-bg);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--text);
  border-radius: 1px;
}

.nav-mobile {
  padding: 1rem;
  margin: 0 auto 0.5rem;
  width: var(--container);
  border-radius: var(--radius-sm);
}

.nav-mobile:not([hidden]) {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.nav-mobile a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--stroke-glass);
}

.nav-mobile a:last-child {
  border-bottom: 0;
}

@media (min-width: 880px) {
  .nav,
  .header-actions {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .nav-mobile {
    display: none !important;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1.15rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease,
    transform 0.12s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: linear-gradient(135deg, #2dd4bf 0%, #14b8a6 100%);
  color: #042f2e;
  border-color: rgba(255, 255, 255, 0.25);
}

.btn--primary:hover {
  filter: brightness(1.06);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-color: var(--stroke-glass);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn--lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

/* Typography */
.display {
  font-size: clamp(2.25rem, 5vw, 3.35rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}

.h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
  color: var(--text-muted);
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
}

.section-title.instrument { font-style: normal; }

.section-sub {
  margin: 0.5rem 0 0;
  color: var(--text-muted);
  font-size: 1rem;
}

/* Quiz placeholder */
.quiz-card {
  text-align: center;
}

.quiz-placeholder {
  margin: 1.25rem auto 0;
  max-width: 520px;
  padding: 1.1rem 1rem 1.25rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.quiz-line {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  margin: 0.65rem 0;
}

.quiz-line.short {
  width: 68%;
  margin-inline: auto;
}

.quiz-btn {
  width: min(240px, 100%);
  height: 44px;
  border-radius: 999px;
  margin: 1rem auto 0;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.7), rgba(20, 184, 166, 0.65));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.quiz-product {
  margin-top: 1.25rem;
  display: grid;
  place-items: center;
}

.quiz-product img {
  width: min(320px, 92%);
  height: auto;
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.35));
  opacity: 0.95;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.lead strong {
  color: var(--text);
  font-weight: 600;
}

.steps-inline {
  font-size: 0.9375rem;
  color: var(--text-faint);
  margin: 0 0 1.5rem;
}

.fine-print {
  font-size: 0.8125rem;
  color: var(--text-faint);
  margin: 0.75rem 0 0;
}

.text-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

/* Sections */
.section {
  padding-block: var(--space-section);
}

.section--tight {
  padding-block: clamp(2rem, 4vw, 3rem);
}

.section-head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
  max-width: 42rem;
  margin-inline: auto;
}

.section-head--left {
  text-align: left;
  margin-inline: 0;
}

/* Hero */
.hero-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
    gap: 1.5rem;
  }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-ill {
  margin: 1rem 0 0.85rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.22);
}

.hero-ill img {
  display: block;
  width: 100%;
  height: 170px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  opacity: 0.92;
}

.flow-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.flow-steps li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  counter-increment: step;
}

.flow-steps li::before {
  content: counter(step);
  font-size: 0.75rem;
  font-weight: 700;
  width: 1.65rem;
  height: 1.65rem;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
}

.flow-steps {
  counter-reset: step;
}

.flow-steps span {
  font-weight: 500;
}

/* Trust strip */
.trust-grid {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-title {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 0.35rem;
  letter-spacing: -0.01em;
}

.trust-meta {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-faint);
}

/* Card grids */
.card-grid--symptoms {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 560px) {
  .card-grid--symptoms {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .card-grid--symptoms {
    grid-template-columns: repeat(3, 1fr);
  }
}

.symptom-card h3 {
  font-size: 1.05rem;
  margin: 0.35rem 0 0.25rem;
}

.symptom-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.symptom-icon {
  display: flex;
  color: var(--accent);
  opacity: 0.95;
}

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

@media (min-width: 720px) {
  .benefits-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.benefit-item h3 {
  font-size: 1rem;
  margin: 0 0 0.25rem;
}

.benefit-item p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.check {
  flex-shrink: 0;
  display: flex;
  color: var(--accent);
  margin-top: 0.15rem;
}

/* Clinical */
.clinical-block p {
  color: var(--text-muted);
  max-width: 65ch;
}

.clinical-bullets {
  margin: 1.25rem 0 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.clinical-bullets li {
  margin-bottom: 0.35rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-tile {
  margin: 0;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.gallery-ph {
  aspect-ratio: 16 / 10;
  width: 100%;
}

.gallery-ph {
  display: block;
  object-fit: cover;
  background:
    linear-gradient(135deg, rgba(45, 212, 191, 0.15) 0%, transparent 50%),
    linear-gradient(225deg, rgba(56, 189, 248, 0.12) 0%, transparent 45%),
    rgba(255, 255, 255, 0.04);
}

.gallery-tile figcaption {
  padding: 1.1rem 1.25rem 1.25rem;
}

.gallery-tile h3 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
}

.gallery-tile p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Steps detailed */
.steps-detailed {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 800px) {
  .steps-detailed {
    grid-template-columns: repeat(2, 1fr);
  }
}

.step-card {
  position: relative;
  padding-top: 1.5rem;
}

.step-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  opacity: 0.9;
}

.step-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  padding-right: 2rem;
}

.step-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* Symptom tool */
.symptom-tool fieldset {
  border: 0;
  margin: 0 0 1.25rem;
  padding: 0;
}

.symptom-tool legend {
  font-weight: 600;
  margin-bottom: 0.75rem;
  padding: 0;
}

.checkbox-grid {
  display: grid;
  gap: 0.5rem;
}

@media (min-width: 560px) {
  .checkbox-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  cursor: pointer;
}

.checkbox-grid input {
  accent-color: var(--accent);
  width: 1.05rem;
  height: 1.05rem;
}

.symptom-result {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--stroke-glass);
  margin-bottom: 1rem;
}

.result-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.35rem;
}

.result-text {
  margin: 0;
  color: var(--text);
}

.symptom-form button {
  border: 0;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.quote-card {
  margin: 0;
}

.quote-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.quote-card p + p {
  margin-top: 0.65rem;
}

.stars {
  color: #fbbf24;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  padding-right: 0.5rem;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 400;
  color: var(--accent);
  font-size: 1.25rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* CTA retail */
.cta-retail {
  text-align: center;
}

.cta-retail .section-title {
  margin-bottom: 0.35rem;
}

.cta-retail .btn {
  margin-top: 1.25rem;
}

/* Blog */
.blog-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card time {
  font-size: 0.8125rem;
  color: var(--text-faint);
}

.blog-card .tag {
  display: inline-block;
  margin: 0.35rem 0 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.blog-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.blog-card p {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.blog-more {
  text-align: center;
  margin-top: 1.5rem;
}

/* Newsletter */
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1 1 220px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--stroke-glass);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

.newsletter-form input::placeholder {
  color: var(--text-faint);
}

.newsletter-form button {
  border: 0;
}

/* Company */
.cert-list {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.cert-list li {
  margin-bottom: 0.35rem;
}

.stats-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

@media (min-width: 560px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  text-align: center;
  padding: 1.1rem;
}

.stat-value {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0;
  color: var(--text);
}

.stat-label {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 880px) {
  .contact-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}

.contact-form label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin: 0.85rem 0 0.35rem;
  color: var(--text-muted);
}

.contact-form label:first-of-type {
  margin-top: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--stroke-glass);
  background: rgba(0, 0, 0, 0.22);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

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

.contact-form button {
  margin-top: 1rem;
  border: 0;
}

.contact-aside p {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.contact-aside .h3 {
  margin-top: 1.25rem;
}

.contact-aside .h3:first-child {
  margin-top: 0;
}

/* Footer */
.site-footer {
  margin-top: 0;
  padding: 1.5rem 0 2.5rem;
}

.footer-inner {
  width: var(--container);
  margin-inline: auto;
  text-align: center;
}

.footer-brand {
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.footer-links {
  margin: 0 0 0.5rem;
}

.footer-link {
  font-size: 0.8125rem;
  color: rgba(232, 240, 247, 0.62);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-link:hover {
  color: rgba(232, 240, 247, 0.82);
  border-bottom-color: rgba(45, 212, 191, 0.55);
}
