@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700;800&display=swap");

:root {
  --brand-navy: #002349;
  --brand-gold: #c5a059;
  --font: "Montserrat", "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;

  --bg: #070a12;
  --bg-elev: rgba(255, 255, 255, 0.06);
  --card: rgba(255, 255, 255, 0.06);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --faint: rgba(255, 255, 255, 0.55);
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 12px;
  --radius-sm: 8px;
  --accent: var(--brand-navy);
  --accent2: var(--brand-gold);
  --accent3: var(--brand-gold);
  --warn: #ffd37a;
  --danger: #b00020;
  --focus: rgba(0, 35, 73, 0.22);
  --max: 1140px;
}

[data-theme="light"] {
  --bg: #ffffff;
  --bg-elev: rgba(0, 0, 0, 0.04);
  --card: rgba(0, 0, 0, 0.04);
  --text: rgba(0, 0, 0, 0.92);
  --muted: rgba(0, 0, 0, 0.68);
  --faint: rgba(0, 0, 0, 0.52);
  --line: rgba(0, 0, 0, 0.12);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  --focus: rgba(0, 35, 73, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Anchor links: offset for sticky header */
main section[id],
main > [id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: radial-gradient(1200px 700px at 10% -20%, rgba(0, 35, 73, 0.18), transparent 60%),
    radial-gradient(900px 520px at 90% 0%, rgba(197, 160, 89, 0.14), transparent 62%),
    radial-gradient(900px 520px at 50% 100%, rgba(0, 35, 73, 0.08), transparent 60%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), transparent 40%),
    var(--bg);
  line-height: 1.55;
}

/* Subtle official watermark */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(197, 160, 89, 0.10), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(0, 35, 73, 0.08), transparent 55%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='520' height='520' viewBox='0 0 520 520'%3E%3Cg fill='none' stroke='%23002349' stroke-opacity='0.10'%3E%3Ccircle cx='260' cy='260' r='190' stroke-width='2'/%3E%3Ccircle cx='260' cy='260' r='150' stroke-width='1.5'/%3E%3Cpath d='M260 110v300M110 260h300' stroke-width='1'/%3E%3Cpath d='M260 150c-40 0-72 32-72 72s32 72 72 72 72-32 72-72-32-72-72-72Z' stroke-width='1.5'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: 0% 0%, 100% 100%, 50% 10%;
  background-size: 900px 600px, 900px 600px, 560px 560px;
  opacity: 0.9;
}

[data-theme="light"] body::before {
  opacity: 0.45;
}

body > * {
  position: relative;
  z-index: 1;
}

.card-icon {
  color: var(--brand-navy);
}

[data-theme="light"] .card-icon {
  color: var(--brand-navy);
}

.card-icon .icon {
  width: 22px;
  height: 22px;
  display: block;
}

/* Make icons look more official */
.card-icon {
  background: rgba(197, 160, 89, 0.10);
  border-color: rgba(197, 160, 89, 0.25);
}

[data-theme="light"] .card-icon {
  background: rgba(197, 160, 89, 0.14);
  border-color: rgba(0, 51, 102, 0.14);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 4px;
}

[data-theme="light"] a:hover {
  text-decoration-color: rgba(9, 12, 20, 0.22);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.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;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: white;
  transform: translateY(-140%);
  transition: transform 180ms ease;
  z-index: 9999;
}

.skip-link:focus {
  transform: translateY(0);
  outline: none;
  box-shadow: 0 0 0 4px var(--focus);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(7, 10, 18, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 220ms ease, background 220ms ease;
}

[data-theme="light"] .site-header {
  background: rgba(247, 248, 251, 0.72);
  border-bottom-color: rgba(9, 12, 20, 0.08);
}

.site-header[data-scrolled="true"] {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  max-width: 100%;
  text-decoration: none;
  color: inherit;
}

.brand.small {
  min-width: 0;
}

.brand.small .brand-text {
  min-width: 0;
}

.brand.small .brand-logo {
  height: 38px;
  max-width: 150px;
}

.brand:hover {
  text-decoration: none;
  color: inherit;
}

/* Logo: PNG cu fundal transparent — placa aurie FormaLex; transparență ușoară pentru integrare în UI */
.brand-logo {
  display: block;
  height: 48px;
  width: auto;
  max-width: min(220px, 46vw);
  object-fit: contain;
  object-position: center center;
  flex-shrink: 0;
  opacity: 0.92;
}

.brand-logo--admin {
  height: 40px;
  max-width: min(180px, 40vw);
}

.site-header .brand-logo {
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.35));
}

[data-theme="light"] .site-header .brand-logo {
  filter: drop-shadow(0 1px 2px rgba(9, 12, 20, 0.12));
}

.site-footer .brand-logo {
  opacity: 0.94;
}

.brand-text--compact {
  min-width: 0;
}

.brand-text {
  display: grid;
  gap: 2px;
  line-height: 1.1;
}

.brand-name {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-sub {
  font-size: 12px;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  appearance: none;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}

.nav-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--focus);
}

.nav-toggle-lines {
  width: 20px;
  height: 12px;
  display: block;
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.nav-toggle-lines::before {
  top: 1px;
}
.nav-toggle-lines::after {
  bottom: 1px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--muted);
  padding: 10px 10px;
  border-radius: 10px;
}

.nav-link:hover {
  text-decoration: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

[data-theme="light"] .nav-link:hover {
  background: rgba(9, 12, 20, 0.05);
}

.nav-link.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

[data-theme="light"] .nav-link.is-active {
  background: rgba(9, 12, 20, 0.05);
  border-color: rgba(9, 12, 20, 0.12);
}

/* Limbă: meniu derulant în dreapta barei de navigație */
.lang-dropdown {
  position: relative;
  flex-shrink: 0;
  z-index: 300;
}

.lang-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  appearance: none;
}

.lang-dropdown-trigger::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  opacity: 0.65;
  margin-top: 1px;
}

.lang-dropdown-trigger[aria-expanded="true"]::after {
  transform: rotate(180deg);
  margin-top: 0;
}

.lang-dropdown-trigger:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--focus);
}

.lang-dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 188px;
  padding: 6px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 10, 18, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

[data-theme="light"] .lang-dropdown-panel {
  background: rgba(247, 248, 251, 0.96);
  border-color: rgba(9, 12, 20, 0.12);
}

.lang-dropdown-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
}

.lang-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .lang-dropdown-item:hover {
  background: rgba(9, 12, 20, 0.06);
}

.lang-dropdown-item.is-active {
  background: rgba(0, 35, 73, 0.35);
  color: rgba(255, 255, 255, 0.95);
}

[data-theme="light"] .lang-dropdown-item.is-active {
  background: rgba(0, 35, 73, 0.12);
  color: var(--text);
}

.lang-dropdown-item:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--focus);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 12px;
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
}

.theme-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--focus);
}

.theme-toggle-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 211, 122, 0.95), rgba(104, 215, 255, 0.85));
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.18);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 68px 0 34px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: start;
  z-index: 2;
}

.hero.hero-center .hero-copy {
  text-align: center;
}

.hero.hero-center .lead {
  margin-left: auto;
  margin-right: auto;
}

.hero.hero-center .hero-actions {
  justify-content: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 0 0 12px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 999px;
  opacity: 0.9;
}

h1 {
  margin: 0 0 12px;
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.lead {
  margin: 0 0 22px;
  font-size: 16px;
  color: var(--muted);
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
  user-select: none;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--focus);
}

.btn-primary {
  background: linear-gradient(180deg, #0b2f5f, var(--brand-navy));
  color: rgba(255, 255, 255, 0.96);
  border-color: rgba(0, 35, 73, 0.35);
  box-shadow: 0 18px 46px rgba(0, 35, 73, 0.18);
}

.btn-primary:hover {
  box-shadow: 0 22px 58px rgba(0, 35, 73, 0.22);
}

.btn-secondary {
  background: linear-gradient(180deg, #d6b46c, var(--brand-gold));
  color: rgba(20, 18, 10, 0.95);
  border-color: rgba(197, 160, 89, 0.45);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
}

[data-theme="light"] .btn-ghost {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.12);
}

/* Urgency / warning block */
.urgency {
  margin: 14px auto 0;
  display: flex;
  gap: 12px;
  align-items: center;
  width: min(720px, 100%);
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(176, 0, 32, 0.28);
  background: rgba(176, 0, 32, 0.06);
}

[data-theme="light"] .urgency {
  background: rgba(176, 0, 32, 0.06);
}

.urgency-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--danger);
  background: rgba(176, 0, 32, 0.10);
  border: 1px solid rgba(176, 0, 32, 0.22);
}

.urgency-icon .icon {
  width: 18px;
  height: 18px;
}

.urgency-text {
  margin: 0;
  color: var(--text);
  font-weight: 750;
}

/* Floating buttons: Sus + Feedback + WhatsApp */
.fab-stack {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 210;
  display: grid;
  gap: 10px;
}

.fab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 950;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.92);
  color: rgba(0, 0, 0, 0.92);
}

button.fab {
  appearance: none;
}

[data-theme="dark"] .fab {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.14);
}

.fab:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.fab:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--focus), 0 18px 60px rgba(0, 0, 0, 0.18);
}

.fab-wa {
  background: #25d366;
  color: rgba(0, 0, 0, 0.92);
}

.fab-top {
  border-color: rgba(0, 35, 73, 0.18);
}

.fab-feedback {
  background: var(--brand-navy);
  color: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 35, 73, 0.24);
}

@media (max-width: 720px) {
  .fab-stack {
    right: 14px;
    bottom: 14px;
  }
}

/* WhatsApp-style social proof */
.chat-wrap {
  width: min(600px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.chat-thread {
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
  padding: 14px;
}

[data-theme="dark"] .chat-thread {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.chat-messages {
  display: grid;
  gap: 10px;
}

.bubble {
  max-width: 88%;
  border-radius: 18px;
  padding: 10px 12px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(250, 250, 250, 0.96);
}

[data-theme="dark"] .bubble {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.bubble.client {
  justify-self: start;
  background: rgba(37, 211, 102, 0.16);
  border-color: rgba(37, 211, 102, 0.22);
}

[data-theme="dark"] .bubble.client {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.22);
}

.bubble.formalex {
  justify-self: end;
}

.bubble-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.bubble-name {
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.82);
}

[data-theme="dark"] .bubble-name {
  color: rgba(255, 255, 255, 0.88);
}

.bubble-time {
  font-size: 12px;
  color: var(--faint);
  font-weight: 700;
}

.bubble-text {
  margin: 0;
  color: rgba(0, 0, 0, 0.78);
  font-weight: 650;
  line-height: 1.45;
}

[data-theme="dark"] .bubble-text {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 720px) {
  .bubble {
    max-width: 94%;
  }
  .chat-thread {
    padding: 12px;
  }
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
}

.trust-item {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

[data-theme="light"] .trust-item {
  border-color: rgba(9, 12, 20, 0.12);
  background: rgba(9, 12, 20, 0.03);
}

.trust-item dt {
  font-weight: 800;
  font-size: 13px;
}

.trust-item dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.fineprint {
  margin: 10px 0 0;
  color: var(--faint);
  font-size: 12px;
}

.hero-card {
  display: grid;
  gap: 14px;
  align-items: start;
}

.glass {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  padding: 18px;
}

[data-theme="light"] .glass {
  border-color: rgba(9, 12, 20, 0.12);
  background: linear-gradient(180deg, rgba(9, 12, 20, 0.05), rgba(9, 12, 20, 0.02));
}

.hero-card-top {
  display: flex;
  gap: 12px;
  align-items: start;
  justify-content: space-between;
}

.hero-card-title {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.hero-card-sub {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.badge {
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 211, 122, 0.16);
  border: 1px solid rgba(255, 211, 122, 0.22);
  color: rgba(255, 211, 122, 0.95);
  white-space: nowrap;
}

.badge.badge-neutral {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--text);
}

[data-theme="light"] .badge.badge-neutral {
  background: rgba(9, 12, 20, 0.04);
  border-color: rgba(9, 12, 20, 0.12);
  color: var(--text);
}

[data-theme="light"] .badge {
  background: rgba(255, 211, 122, 0.28);
  border-color: rgba(255, 211, 122, 0.34);
  color: rgba(122, 78, 0, 0.95);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}

.checklist li {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}

.checklist li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(123, 255, 179, 0.9), rgba(104, 215, 255, 0.9));
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .checklist li::before {
  box-shadow: inset 0 0 0 2px rgba(9, 12, 20, 0.12);
}

.hero-card-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.inline-link {
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}

.inline-link:hover {
  color: var(--text);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.metric {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 14px;
}

[data-theme="light"] .metric {
  border-color: rgba(9, 12, 20, 0.12);
  background: rgba(9, 12, 20, 0.03);
}

.metric-value {
  display: block;
  font-weight: 950;
  letter-spacing: -0.03em;
  font-size: 20px;
}

.metric-label {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  width: 580px;
  height: 580px;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.55;
  transform: translate3d(0, 0, 0);
}

.orb-a {
  left: -210px;
  top: -220px;
  background: radial-gradient(circle at 30% 30%, rgba(104, 215, 255, 0.8), transparent 60%),
    radial-gradient(circle at 70% 40%, rgba(155, 140, 255, 0.55), transparent 55%);
  animation: floatA 12s ease-in-out infinite;
}

.orb-b {
  right: -280px;
  top: 90px;
  background: radial-gradient(circle at 30% 30%, rgba(123, 255, 179, 0.55), transparent 55%),
    radial-gradient(circle at 70% 40%, rgba(104, 215, 255, 0.55), transparent 60%);
  animation: floatB 14s ease-in-out infinite;
}

.gridlines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(closest-side at 50% 30%, black, transparent 80%);
  opacity: 0.2;
}

[data-theme="light"] .gridlines {
  background-image: linear-gradient(to right, rgba(9, 12, 20, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(9, 12, 20, 0.07) 1px, transparent 1px);
  opacity: 0.18;
}

@keyframes floatA {
  0%,
  100% {
    transform: translate(-8px, -6px);
  }
  50% {
    transform: translate(10px, 12px);
  }
}

@keyframes floatB {
  0%,
  100% {
    transform: translate(10px, 4px);
  }
  50% {
    transform: translate(-10px, -10px);
  }
}

.section {
  padding: 66px 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 45%, rgba(255, 255, 255, 0.02));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

[data-theme="light"] .section.alt {
  background: linear-gradient(180deg, rgba(9, 12, 20, 0.02), transparent 45%, rgba(9, 12, 20, 0.015));
  border-top-color: rgba(9, 12, 20, 0.06);
  border-bottom-color: rgba(9, 12, 20, 0.06);
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
  text-align: center;
}

.section-head.left {
  text-align: left;
}

h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.015em;
  line-height: 1.1;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

[data-theme="light"] .card {
  border-color: rgba(9, 12, 20, 0.12);
  background: rgba(9, 12, 20, 0.03);
  box-shadow: 0 18px 50px rgba(9, 12, 20, 0.06);
}

.card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

[data-theme="light"] .card:hover {
  background: rgba(9, 12, 20, 0.04);
  border-color: rgba(9, 12, 20, 0.16);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 18px;
}

[data-theme="light"] .card-icon {
  background: rgba(9, 12, 20, 0.04);
  border-color: rgba(9, 12, 20, 0.12);
}

h3 {
  margin: 14px 0 8px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-weight: 600;
}

.mini-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 650;
  font-size: 13px;
  display: grid;
  gap: 6px;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.step {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 18px;
}

[data-theme="light"] .step {
  border-color: rgba(9, 12, 20, 0.12);
  background: rgba(9, 12, 20, 0.03);
}

.step-num {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 950;
  background: linear-gradient(135deg, rgba(104, 215, 255, 0.9), rgba(155, 140, 255, 0.9));
  color: rgba(7, 10, 18, 0.95);
}

.step-body h3 {
  margin: 12px 0 6px;
}

.step-body p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  font-size: 13px;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.price-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 18px;
}

[data-theme="light"] .price-card {
  border-color: rgba(9, 12, 20, 0.12);
  background: rgba(9, 12, 20, 0.03);
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(104, 215, 255, 0.12), rgba(155, 140, 255, 0.08));
  border-color: rgba(104, 215, 255, 0.22);
  box-shadow: 0 20px 70px rgba(104, 215, 255, 0.12);
}

[data-theme="light"] .price-card.featured {
  background: linear-gradient(180deg, rgba(104, 215, 255, 0.14), rgba(155, 140, 255, 0.08));
  border-color: rgba(15, 109, 255, 0.18);
  box-shadow: 0 20px 70px rgba(15, 109, 255, 0.08);
}

.featured-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.pill {
  font-size: 12px;
  font-weight: 950;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(123, 255, 179, 0.12);
  border: 1px solid rgba(123, 255, 179, 0.22);
  color: rgba(123, 255, 179, 0.95);
}

[data-theme="light"] .pill {
  background: rgba(123, 255, 179, 0.22);
  border-color: rgba(35, 120, 66, 0.2);
  color: rgba(35, 120, 66, 0.95);
}

.price {
  margin: 12px 0 4px;
  color: var(--muted);
  font-weight: 700;
}

.muted {
  color: var(--muted);
}

.muted-tight {
  margin: 0;
}

.mt-10 {
  margin-top: 10px;
}

.cards.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 980px) {
  .cards.cards-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .cards.cards-3 {
    grid-template-columns: 1fr;
  }
}

.faq {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq-item {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 14px 16px;
}

[data-theme="light"] .faq-item {
  border-color: rgba(9, 12, 20, 0.12);
  background: rgba(9, 12, 20, 0.03);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.faq-item p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.problem-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.problem-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 107, 138, 0.28);
  background: linear-gradient(180deg, rgba(255, 107, 138, 0.12), rgba(255, 255, 255, 0.03));
}

[data-theme="light"] .problem-item {
  border-color: rgba(255, 107, 138, 0.22);
  background: linear-gradient(180deg, rgba(255, 107, 138, 0.14), rgba(9, 12, 20, 0.02));
}

.x-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 1000;
  color: rgba(255, 107, 138, 0.98);
  background: rgba(255, 107, 138, 0.14);
  border: 1px solid rgba(255, 107, 138, 0.26);
}

.x-mark span {
  transform: translateY(-1px);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 10px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 980px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.info-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
}

[data-theme="light"] .info-card {
  border-color: rgba(0, 51, 102, 0.14);
  background: rgba(255, 255, 255, 0.92);
}

.info-k {
  margin: 0;
  color: var(--faint);
  font-weight: 850;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.info-v {
  margin: 8px 0 6px;
  font-weight: 950;
  letter-spacing: -0.02em;
  font-size: 18px;
}

.form {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 18px;
}

[data-theme="light"] .form {
  border-color: rgba(0, 51, 102, 0.16);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
  font-weight: 800;
  font-size: 13px;
  color: var(--faint);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.15);
  color: var(--text);
  font: inherit;
  font-weight: 650;
}

[data-theme="light"] input,
[data-theme="light"] select,
[data-theme="light"] textarea {
  background: #ffffff;
  border-color: rgba(0, 51, 102, 0.18);
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

[data-theme="light"] input::placeholder,
[data-theme="light"] textarea::placeholder {
  color: rgba(9, 12, 20, 0.45);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  box-shadow: 0 0 0 4px var(--focus);
  border-color: rgba(0, 51, 102, 0.45);
}

.consent {
  display: flex;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-weight: 650;
  margin: 6px 0 14px;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.form-note {
  margin: 10px 0 0;
  font-weight: 700;
  color: var(--muted);
  min-height: 1.2em;
}

.site-footer {
  padding: 36px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .site-footer {
  border-top-color: rgba(9, 12, 20, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  align-items: center;
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}

.footer-bottom {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .footer-bottom {
  border-top-color: rgba(9, 12, 20, 0.08);
}

@media (max-width: 980px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body {
    background: radial-gradient(900px 500px at 20% -10%, rgba(104, 215, 255, 0.22), transparent 58%),
      radial-gradient(900px 500px at 90% 10%, rgba(155, 140, 255, 0.22), transparent 58%),
      radial-gradient(700px 420px at 50% 85%, rgba(123, 255, 179, 0.12), transparent 58%),
      var(--bg);
  }

  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .header-inner {
    padding: 12px 0;
  }

  .brand-sub {
    display: none;
  }

  .site-header .header-inner > .brand {
    min-width: 0;
  }

  .site-header .brand-logo {
    height: 40px;
    max-width: min(200px, 44vw);
  }

  .lang-dropdown-trigger {
    padding: 8px 10px;
    font-size: 12px;
  }

  .lang-dropdown-panel {
    right: 0;
    left: auto;
    max-width: calc(100vw - 32px);
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    position: absolute;
    right: 20px;
    top: 64px;
    width: min(360px, calc(100vw - 40px));
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(7, 10, 18, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
  }

  [data-theme="light"] .nav-menu {
    background: rgba(247, 248, 251, 0.92);
    border-color: rgba(9, 12, 20, 0.12);
  }

  .nav-menu[data-open="true"] {
    display: flex;
  }

  .nav-link {
    padding: 12px 12px;
  }

  .theme-toggle {
    justify-content: center;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 54px 0 22px;
  }

  .hero-copy {
    padding-bottom: 4px;
  }

  h1 {
    font-size: 34px;
    letter-spacing: -0.03em;
  }

  .lead {
    font-size: 15px;
  }

  .hero-actions {
    gap: 10px;
  }

  .btn {
    width: 100%;
    padding: 13px 16px;
  }

  .btn-ghost {
    border-color: rgba(255, 255, 255, 0.16);
  }

  .hero-card-cta .btn {
    width: auto;
  }

  .hero-card-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .inline-link {
    text-align: center;
    padding: 10px 0 2px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .pricing {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .site-footer {
    padding-bottom: 86px;
  }
}

.mobile-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 80;
  display: none;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 10, 18, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
}

[data-theme="light"] .mobile-cta {
  background: rgba(247, 248, 251, 0.92);
  border-color: rgba(9, 12, 20, 0.12);
  box-shadow: 0 20px 60px rgba(9, 12, 20, 0.12);
}

.mobile-cta a {
  flex: 1;
  text-align: center;
  text-decoration: none;
}

.mobile-cta .btn {
  width: 100%;
  padding: 12px 14px;
}

@media (max-width: 720px) {
  .mobile-cta {
    display: none;
  }
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

[data-theme="light"] .modal-overlay {
  background: rgba(9, 12, 20, 0.25);
}

.modal {
  width: min(520px, 100%);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 10, 18, 0.88);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  padding: 18px;
}

[data-theme="light"] .modal {
  background: rgba(247, 248, 251, 0.98);
  border-color: rgba(9, 12, 20, 0.12);
  box-shadow: 0 30px 90px rgba(9, 12, 20, 0.18);
}

.modal-title {
  margin: 0 0 8px;
  font-weight: 950;
  letter-spacing: -0.03em;
  font-size: 18px;
}

.modal-text {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
