*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: #64748b transparent;
}

html::-webkit-scrollbar {
  width: 11px;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  background: #94a3b8;
  border-radius: 999px;
  border: 3px solid transparent;
  background-clip: padding-box;
}

html::-webkit-scrollbar-thumb:hover {
  background: #1e40af;
  border: 3px solid transparent;
  background-clip: padding-box;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--page-text);
  background: var(--page-bg);
  -webkit-font-smoothing: antialiased;
  transition: background 0.25s ease, color 0.25s ease;
}

[data-theme="dark"] html {
  scrollbar-color: #64748b transparent;
}

[data-theme="dark"] html::-webkit-scrollbar-thumb {
  background: #475569;
}

[data-theme="dark"] html::-webkit-scrollbar-thumb:hover {
  background: #3b82f6;
}

:root,
[data-theme="light"] {
  --page-bg: #f8f9fc;
  --page-text: #1a1a2e;
  --section-bg: #f1f5f9;
  --section-title: #0f172a;
  --section-muted: #64748b;
  --faq-border: #cbd5e1;
  --nav-scrolled-bg: #fff;
  --nav-scrolled-border: #e4e7ef;
  --nav-scrolled-text: #0f172a;
  --nav-scrolled-link: #475569;
  --nav-scrolled-link-hover: #1e40af;
  --nav-login-bg: #1e40af;
  --nav-login-color: #fff;
  --nav-register-bg: transparent;
  --nav-register-border: #1e40af;
  --nav-register-color: #1e40af;
  --theme-btn-bg: rgba(15, 23, 42, 0.06);
  --theme-btn-active: #1e40af;
  --theme-btn-color: #475569;
  --theme-btn-active-color: #fff;
  --reviews-card-bg: rgba(247, 244, 239, 0.96);
  --reviews-card-border: rgba(255, 255, 255, 0.12);
  --reviews-quote: #334155;
  --reviews-name: #0f172a;
  --reviews-role: #64748b;
  --reviews-avatar-bg: #1e40af;
}

[data-theme="dark"] {
  --page-bg: #000000;
  --page-text: #e2e8f0;
  --section-bg: #000000;
  --section-title: #f8fafc;
  --section-muted: #94a3b8;
  --faq-border: #1f1f1f;
  --nav-scrolled-bg: #0f172a;
  --nav-scrolled-border: #1e293b;
  --nav-scrolled-text: #f8fafc;
  --nav-scrolled-link: #cbd5e1;
  --nav-scrolled-link-hover: #93c5fd;
  --nav-login-bg: #fff;
  --nav-login-color: #1e40af;
  --nav-register-bg: transparent;
  --nav-register-border: rgba(255, 255, 255, 0.55);
  --nav-register-color: #fff;
  --theme-btn-bg: rgba(255, 255, 255, 0.08);
  --theme-btn-active: #3b82f6;
  --theme-btn-color: #cbd5e1;
  --theme-btn-active-color: #fff;
  --reviews-card-bg: #0f172a;
  --reviews-card-border: #1e293b;
  --reviews-quote: #dbe4f0;
  --reviews-name: #f8fafc;
  --reviews-role: #8ea0b8;
  --reviews-avatar-bg: #3b82f6;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.navbar.is-scrolled {
  background: var(--nav-scrolled-bg);
  border-bottom-color: var(--nav-scrolled-border);
  box-shadow: 0 1px 8px rgba(15, 23, 42, 0.08);
}

.container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  box-sizing: border-box;
}

.navbar__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.15rem;
  padding-bottom: 1.15rem;
  color: #fff;
  transition: color 0.25s ease;
}

.navbar.is-scrolled .navbar__inner {
  color: var(--nav-scrolled-text);
}

.navbar__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
  position: relative;
}

.navbar__logo-img {
  display: block;
  height: 42px;
  width: auto;
}

.navbar__logo-img--dark {
  display: none;
}

.navbar.is-scrolled .navbar__logo-img--light {
  display: none;
}

.navbar.is-scrolled .navbar__logo-img--dark {
  display: block;
}

[data-theme="dark"] .navbar.is-scrolled .navbar__logo-img--light {
  display: block;
}

[data-theme="dark"] .navbar.is-scrolled .navbar__logo-img--dark {
  display: none;
}

.navbar__right {
  display: flex;
  align-items: center;
  gap: 1.85rem;
  margin-left: auto;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.navbar__services {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.navbar__dropdown {
  position: relative;
}

.navbar__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  padding: 0;
  white-space: nowrap;
}

.navbar__dropdown-chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.navbar__dropdown.is-open .navbar__dropdown-chevron,
.navbar.is-menu-open .navbar__dropdown-chevron {
  transform: rotate(180deg);
}

.navbar__menu {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 0;
  right: 0;
  width: 100%;
  transform: translateY(8px);
  max-height: min(75vh, 560px);
  overflow-y: auto;
  padding: 1.25rem 1.35rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 120;
}

.navbar__menu-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 1.5rem;
}

.navbar__menu-col {
  min-width: 0;
}

.navbar__menu-label {
  margin: 0.15rem 0.7rem 0.45rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}

.navbar__menu-label--spaced {
  margin-top: 0.85rem;
  padding-top: 0.7rem;
  border-top: 1px solid #e2e8f0;
}

.navbar__menu-col--aside {
  padding-left: 0.75rem;
  border-left: 1px solid #e2e8f0;
}

.navbar__menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1rem;
  padding: 1.1rem 1.2rem;
  border-radius: 12px;
  background: linear-gradient(145deg, #1e3a8a 0%, #1e40af 55%, #2563eb 100%);
  color: #fff;
}

.navbar__menu-footer-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.navbar__menu-footer-text {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(226, 232, 240, 0.9);
  max-width: 48ch;
}

.navbar__menu-footer-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.navbar__menu-promo-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: #fff;
  color: #1e40af;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
}

.navbar__menu-promo-cta:hover {
  background: #eff6ff;
}

.navbar__menu-footer-link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.navbar__menu-footer-link:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.navbar.is-menu-open .navbar__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.navbar__menu-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 0.8rem;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}

.navbar__menu-item:hover {
  background: #f1f5f9;
  text-decoration: none;
}

.navbar__menu-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(30, 64, 175, 0.1);
  color: #1e40af;
  flex-shrink: 0;
}

.navbar__menu-icon svg {
  width: 18px;
  height: 18px;
}

.navbar__menu-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.navbar__menu-title {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}

.navbar__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.12rem 0.4rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(30, 64, 175, 0.12);
  color: #1e40af;
}

.navbar__menu-item--soon {
  cursor: default;
  opacity: 0.92;
}

.navbar__menu-item--soon:hover {
  background: transparent;
}

.navbar__menu-desc {
  font-size: 0.8rem;
  line-height: 1.4;
  color: #64748b;
}

[data-theme="dark"] .navbar__menu {
  background: #000000;
  border-color: #1f1f1f;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

[data-theme="dark"] .navbar__menu-label {
  color: #64748b;
}

[data-theme="dark"] .navbar__menu-label--spaced {
  border-top-color: #1f1f1f;
}

[data-theme="dark"] .navbar__menu-col--aside {
  border-left-color: #1f1f1f;
}

[data-theme="dark"] .navbar__menu-item:hover {
  background: rgba(30, 64, 175, 0.18);
}

[data-theme="dark"] .navbar__menu-icon {
  background: rgba(30, 64, 175, 0.22);
  color: #93c5fd;
}

[data-theme="dark"] .navbar__menu-title {
  color: #f8fafc;
}

[data-theme="dark"] .navbar__badge {
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
}

[data-theme="dark"] .navbar__menu-item--soon:hover {
  background: transparent;
}

[data-theme="dark"] .navbar__menu-desc {
  color: #94a3b8;
}

.navbar__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}

.navbar.is-scrolled .navbar__link {
  color: var(--nav-scrolled-link);
}

.navbar__link:not(.navbar__link--login):not(.navbar__link--register):hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.navbar.is-scrolled .navbar__link:not(.navbar__link--login):not(.navbar__link--register):hover {
  color: var(--nav-scrolled-link-hover);
}

.navbar__dropdown-toggle:hover,
.navbar.is-scrolled .navbar__dropdown-toggle:hover {
  text-decoration: none;
  color: #fff;
}

.navbar.is-scrolled .navbar__dropdown-toggle:hover {
  color: var(--nav-scrolled-link-hover);
}

.navbar__theme {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: 0.35rem;
  padding: 0.2rem;
  border-radius: 999px;
  background: var(--theme-btn-bg);
}

.navbar:not(.is-scrolled) .navbar__theme {
  background: rgba(255, 255, 255, 0.12);
}

.navbar__theme-btn {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.navbar.is-scrolled .navbar__theme-btn {
  color: var(--theme-btn-color);
}

.navbar__theme-btn svg {
  width: 16px;
  height: 16px;
}

.navbar__theme-btn.is-active {
  background: var(--theme-btn-active);
  color: #fff;
}

.navbar.is-scrolled .navbar__theme-btn.is-active {
  color: #fff;
}

.navbar:not(.is-scrolled) .navbar__theme-btn.is-active {
  background: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.navbar__link--login {
  padding: 0.55rem 1.1rem;
  border-radius: 8px;
  background: #fff;
  color: #1e40af;
  font-weight: 600;
}

.navbar__link--login:hover {
  background: #eff6ff;
  color: #1e3a8a;
}

.navbar.is-scrolled .navbar__link--login {
  background: var(--nav-login-bg);
  color: var(--nav-login-color);
}

.navbar.is-scrolled .navbar__link--login:hover {
  filter: brightness(0.95);
}

.navbar__link--register {
  padding: 0.5rem 1.05rem;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  font-weight: 600;
}

.navbar__link--register:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
}

.navbar.is-scrolled .navbar__link--register {
  border-color: var(--nav-register-border);
  color: var(--nav-register-color);
  background: var(--nav-register-bg);
}

.navbar.is-scrolled .navbar__link--register:hover {
  background: rgba(30, 64, 175, 0.08);
  color: var(--nav-register-color);
  text-decoration: none;
}

[data-theme="dark"] .navbar.is-scrolled .navbar__link--register:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 85% 40%, rgba(59, 130, 246, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(30, 58, 138, 0.4) 0%, transparent 50%),
    linear-gradient(145deg, #0f172a 0%, #1e3a8a 45%, #1e40af 70%, #2563eb 100%);
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 90%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 3rem 3.5rem;
  max-width: 1440px;
  margin: 0 auto;
  padding: 9rem 2rem 5.5rem;
  min-height: 100vh;
}

.hero__title {
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 18ch;
  margin-bottom: 1.15rem;
  animation: hero-fade-up 0.6s ease both;
}

.hero__desc {
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(226, 232, 240, 0.9);
  max-width: 42ch;
  margin-bottom: 1.5rem;
  animation: hero-fade-up 0.6s ease 0.16s both;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 1.65rem;
  border-radius: 8px;
  background: #fff;
  color: #1e40af;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
  animation: hero-fade-up 0.6s ease 0.22s both;
}

.hero__cta:hover {
  background: #eff6ff;
  transform: translateY(-1px);
}

.hero__cards {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
  animation: hero-fade-up 0.6s ease 0.28s both;
}

.hero__card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 1.4rem 1.25rem;
  backdrop-filter: blur(8px);
}

.hero__card-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: #fff;
  margin-top: 0.1rem;
}

.hero__card-body {
  min-width: 0;
}

.hero__card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  color: #fff;
}

.hero__card-text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(226, 232, 240, 0.85);
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: hero-fade-in 0.8s ease 0.2s both;
}

.panel {
  width: 100%;
  max-width: 760px;
  background: #f8fafc;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  padding: 1.35rem;
  color: #0f172a;
  animation: hero-float 5s ease-in-out infinite;
}

.panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
  font-size: 0.8rem;
}

.panel__brand {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  min-width: 0;
}

.panel__dot {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: #1e40af;
  flex-shrink: 0;
}

.panel__sep {
  color: #94a3b8;
}

.panel__host {
  color: #64748b;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.panel__user {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
  flex-shrink: 0;
}

.panel__avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #1e40af;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.panel__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
  flex-wrap: wrap;
}

.panel__tabs {
  display: flex;
  gap: 0.9rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #64748b;
}

.panel__tabs .is-active {
  color: #0f172a;
  font-weight: 700;
  border-bottom: 2px solid #0f172a;
  padding-bottom: 0.2rem;
}

.panel__actions {
  display: flex;
  gap: 0.3rem;
}

.panel__btn {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #64748b;
}

.panel__btn--danger {
  border-color: #fca5a5;
  color: #dc2626;
}

.panel__btn--solid {
  border-color: #dc2626;
  background: #dc2626;
  color: #fff;
}

.panel__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
  margin-bottom: 0.75rem;
}

.panel__stat {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.7rem 0.6rem;
}

.panel__stat-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}

.panel__stat-value {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
}

.panel__stat-value small {
  font-size: 0.65rem;
  font-weight: 500;
  color: #94a3b8;
}

.panel__live {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
}

.panel__charts {
  display: grid;
  grid-template-columns: 0.85fr 1fr 1fr;
  gap: 0.55rem;
}

.panel__chart {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.7rem;
  min-height: 140px;
  display: flex;
  flex-direction: column;
}

.panel__chart-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.panel__chart--ring {
  align-items: center;
  text-align: center;
}

.panel__ring {
  position: relative;
  width: 84px;
  height: 84px;
  margin: 0.3rem auto 0.55rem;
}

.panel__ring svg {
  width: 100%;
  height: 100%;
}

.panel__ring span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  font-weight: 700;
}

.panel__badge {
  font-size: 0.65rem;
  font-weight: 600;
  color: #64748b;
  background: #f1f5f9;
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
}

.panel__graph {
  flex: 1;
  width: 100%;
  min-height: 90px;
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 7rem 1.25rem 4rem;
    gap: 2.5rem;
    min-height: auto;
  }

  .hero__title,
  .hero__desc {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .panel {
    max-width: 100%;
    animation: none;
  }

  .panel__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .panel__charts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .navbar__inner {
    flex-wrap: wrap;
  }

  .navbar__right {
    width: 100%;
    margin-left: 0;
    justify-content: center;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    gap: 1rem 1.35rem;
  }

  .navbar.is-scrolled .navbar__right {
    border-top-color: #e2e8f0;
  }

  .navbar__services,
  .navbar__nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .navbar__menu {
    width: 100%;
    left: 0;
    right: 0;
    transform: translateY(8px);
  }

  .navbar.is-menu-open .navbar__menu {
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .navbar__menu-cols {
    grid-template-columns: 1fr;
  }

  .navbar__menu-col--aside {
    padding-left: 0;
    border-left: none;
    padding-top: 0.75rem;
    border-top: 1px solid #e2e8f0;
  }

  [data-theme="dark"] .navbar__menu-col--aside {
    border-top-color: #1f1f1f;
  }

  .navbar__menu-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .navbar__inner {
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
  }

  .navbar__nav {
    gap: 1rem;
  }

  .hero__cards {
    grid-template-columns: 1fr;
  }
}

.why {
  background: var(--section-bg);
  padding: 7rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  transition: background 0.25s ease;
}

.why__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.why__title {
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--section-title);
  text-align: center;
  margin-bottom: 4.5rem;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 5rem;
  row-gap: 4.5rem;
}

.why__item {
  padding: 0;
  border: none;
  background: none;
}

.why__item-header {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  margin-bottom: 1rem;
}

.why__icon {
  display: block;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: #1e40af;
}

.why__item-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--section-title);
  margin: 0;
}

.why__item-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--section-muted);
  max-width: none;
}

@media (max-width: 900px) {
  .why__grid {
    grid-template-columns: 1fr;
    row-gap: 2.5rem;
    column-gap: 0;
  }
}

@media (max-width: 640px) {
  .why {
    padding: 4.5rem 0;
    min-height: auto;
  }

  .why__inner {
    padding: 0 1.25rem;
  }

  .why__title {
    margin-bottom: 2.75rem;
  }
}

/* —— Avis —— */
.reviews {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 70% at 12% 30%, rgba(37, 99, 235, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 45% 55% at 88% 70%, rgba(30, 58, 138, 0.5) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 50% 0%, rgba(59, 130, 246, 0.18) 0%, transparent 60%),
    linear-gradient(160deg, #020617 0%, #0f172a 40%, #1e3a8a 100%);
  padding: 7rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
}

.reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 90%);
  pointer-events: none;
}

.reviews__inner {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.reviews__title {
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  text-align: center;
  margin-bottom: 0.9rem;
}

.reviews__intro {
  text-align: center;
  color: rgba(226, 232, 240, 0.75);
  font-size: 1.1rem;
  max-width: 44ch;
  margin: 0 auto 4rem;
  line-height: 1.65;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.reviews__item {
  margin: 0;
  padding: 1.85rem 1.65rem;
  border: 1px solid var(--reviews-card-border);
  border-radius: 14px;
  background: var(--reviews-card-bg);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.18);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.reviews__quote {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--reviews-quote);
  margin-bottom: 1.6rem;
  transition: color 0.25s ease;
}

.reviews__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviews__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--reviews-avatar-bg);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.reviews__name {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--reviews-name);
  transition: color 0.25s ease;
}

.reviews__role {
  display: block;
  font-size: 0.85rem;
  color: var(--reviews-role);
  margin-top: 0.15rem;
  transition: color 0.25s ease;
}

[data-theme="dark"] .reviews {
  background:
    radial-gradient(ellipse 55% 70% at 10% 25%, rgba(37, 99, 235, 0.32) 0%, transparent 55%),
    radial-gradient(ellipse 45% 55% at 90% 75%, rgba(30, 64, 175, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 50% 0%, rgba(59, 130, 246, 0.14) 0%, transparent 60%),
    linear-gradient(160deg, #020617 0%, #0f172a 45%, #1e3a8a 100%);
}

[data-theme="dark"] .reviews__item {
  background: rgba(0, 0, 0, 0.45);
  border-color: rgba(148, 163, 184, 0.16);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
}

/* —— FAQ —— */
.faq {
  background: var(--section-bg);
  padding: 7rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  transition: background 0.25s ease;
}

.faq__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq__title {
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--section-title);
  text-align: center;
  margin-bottom: 0.9rem;
}

.faq__intro {
  text-align: center;
  color: var(--section-muted);
  font-size: 1.1rem;
  max-width: 44ch;
  margin: 0 auto 4rem;
  line-height: 1.65;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--faq-border);
}

.faq__item {
  border-bottom: 1px solid var(--faq-border);
}

.faq__question {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 2.5rem 1.5rem 0;
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--section-title);
  position: relative;
  transition: color 0.15s;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.45rem;
  font-weight: 400;
  color: #1e40af;
  line-height: 1;
}

.faq__item[open] .faq__question::after {
  content: "−";
}

.faq__question:hover {
  color: #1e40af;
}

.faq__answer {
  padding: 0 2.5rem 1.5rem 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--section-muted);
  max-width: 90ch;
}

/* —— Footer —— */
.footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 80% at 15% 20%, rgba(59, 130, 246, 0.25) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 90% 80%, rgba(30, 58, 138, 0.45) 0%, transparent 50%),
    linear-gradient(160deg, #0f172a 0%, #1e3a8a 55%, #1e40af 100%);
  color: #fff;
}

.footer__glow {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 85%);
  pointer-events: none;
}

.footer__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3.5rem;
  padding-top: 4.25rem;
  padding-bottom: 3.25rem;
}

.footer__brand {
  flex: 0 1 420px;
  min-width: 0;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 1.15rem;
}

.footer__logo-img {
  display: block;
  height: 44px;
  width: auto;
}

.footer__tagline {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(226, 232, 240, 0.82);
  max-width: 42ch;
  margin-bottom: 1.35rem;
}

.footer__perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer__perks li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.78);
}

.footer__perks svg {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  color: #93c5fd;
}

.footer__follow {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 6, 23, 0.28);
}

.footer__follow-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 2.2rem;
  padding-bottom: 2.2rem;
}

.footer__follow-title {
  font-size: clamp(1.3rem, 2.1vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 0.35rem;
  text-transform: none;
}

.footer__follow-text {
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(226, 232, 240, 0.78);
  margin-bottom: 0;
  max-width: 48ch;
}

.footer__follow .footer__social {
  flex-shrink: 0;
  gap: 0.7rem;
}

.footer__follow .footer__social-link {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
  box-shadow: 0 0 0 transparent;
}

.footer__follow .footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__follow .footer__social-link:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.95);
  color: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.28);
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 2rem 6.5rem;
  flex: 0 0 auto;
  margin-left: auto;
  align-items: start;
}

.footer__heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(191, 219, 254, 0.88);
  margin-bottom: 1.35rem;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.82rem;
}

.footer__links a {
  color: rgba(226, 232, 240, 0.72);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 400;
  transition: color 0.18s ease;
}

.footer__links a:hover {
  color: #fff;
}

.footer__links a.footer__link--alert {
  color: #f87171;
}

.footer__links a.footer__link--alert:hover {
  color: #fca5a5;
}

.footer__bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(2, 6, 23, 0.18);
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
  font-size: 0.8rem;
  color: rgba(226, 232, 240, 0.48);
  letter-spacing: 0.01em;
}

.footer__bottom-inner p {
  margin: 0;
}

.footer__siret {
  font-size: 0.8rem;
  color: rgba(226, 232, 240, 0.45);
  letter-spacing: 0.03em;
  font-variant-numeric: tabular-nums;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer__social-link {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: rgba(226, 232, 240, 0.85);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.footer__social-link svg {
  width: 17px;
  height: 17px;
}

.footer__social-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.22);
}

@media (max-width: 1000px) {
  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.25rem;
  }

  .footer__follow-inner {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .footer__inner {
    flex-direction: column;
    gap: 3rem;
    padding-top: 3.5rem;
    padding-bottom: 2.5rem;
  }

  .footer__brand {
    flex: none;
    max-width: none;
  }

  .footer__cols {
    width: 100%;
    max-width: none;
    margin-left: 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .reviews,
  .faq {
    padding: 4.5rem 0;
    min-height: auto;
  }

  .reviews__inner,
  .faq__inner {
    padding: 0 1.25rem;
  }

  .reviews__grid {
    grid-template-columns: 1fr;
  }

  .footer__cols {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__social {
    flex-wrap: wrap;
    gap: 0.55rem;
  }
}
