:root {
  color-scheme: light;
  --ink: #071126;
  --muted: #667085;
  --line: #e7ebf2;
  --paper: #ffffff;
  --soft: #f6f8fb;
  --accent: #ff5a14;
  --accent-dark: #d84200;
  --blue: #2f6fed;
  --green: #20a66a;
  --radius: 8px;
  --display-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 24px 70px rgba(7, 17, 38, 0.12);
  --glass-bg: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.34));
  --glass-bg-strong: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.44));
  --glass-border: rgba(255, 255, 255, 0.84);
  --glass-shadow: 0 30px 90px rgba(7, 17, 38, 0.16), inset 0 1px 1px rgba(255, 255, 255, 0.86), inset 0 -24px 42px rgba(255, 255, 255, 0.14);
  --glass-blur: blur(30px) saturate(175%);
  --glass-blur-strong: blur(38px) saturate(185%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(115deg, rgba(47, 111, 237, 0.08), rgba(255, 255, 255, 0.42) 46%, rgba(32, 166, 106, 0.05) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(246, 248, 251, 0.92)),
    var(--soft);
  color: var(--ink);
  font-family: var(--display-font);
}

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

img {
  display: block;
  max-width: 100%;
}

.liquid-glass,
.liquid-glass-strong {
  position: relative;
  overflow: hidden;
  border: 0;
  background: var(--glass-bg);
  background-blend-mode: luminosity;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
}

.liquid-glass-strong {
  background: var(--glass-bg-strong);
  box-shadow:
    4px 4px 4px rgba(0, 0, 0, 0.05),
    inset 0 1px 1px rgba(255, 255, 255, 0.15),
    0 28px 90px rgba(7, 17, 38, 0.2);
  -webkit-backdrop-filter: var(--glass-blur-strong);
  backdrop-filter: var(--glass-blur-strong);
}

.liquid-glass::before,
.liquid-glass-strong::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.15) 20%,
    transparent 40%,
    transparent 60%,
    rgba(255, 255, 255, 0.15) 80%,
    rgba(255, 255, 255, 0.45) 100%
  );
  content: "";
  pointer-events: none;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.liquid-glass-strong::before {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.2) 20%,
    transparent 40%,
    transparent 60%,
    rgba(255, 255, 255, 0.2) 80%,
    rgba(255, 255, 255, 0.5) 100%
  );
}

.liquid-glass > *,
.liquid-glass-strong > * {
  position: relative;
  z-index: 1;
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.75rem;
  background: #ffffff;
  transition: opacity 520ms ease, visibility 520ms ease;
}

.intro.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.intro__logo {
  width: 7rem;
  height: 7rem;
  border-radius: 1.75rem;
  box-shadow: 0 30px 80px rgba(255, 90, 20, 0.22);
  animation: intro-logo 2s cubic-bezier(0.2, 0.95, 0.2, 1) both;
}

.intro__title {
  margin-top: 0.6rem;
  color: var(--ink);
  font-size: 2rem;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.intro__subtitle {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: lowercase;
}

.site-header {
  position: sticky;
  top: 1.25rem;
  z-index: 10;
  display: flex;
  width: min(72rem, calc(100% - 2rem));
  min-height: 4.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.25rem auto 0;
  padding: 0.7rem 0.8rem;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: var(--glass-bg-strong);
  background-blend-mode: luminosity;
  box-shadow: var(--glass-shadow);
  -webkit-backdrop-filter: var(--glass-blur-strong);
  backdrop-filter: var(--glass-blur-strong);
}

.site-header::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0) 38%),
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.34), transparent 34%);
  content: "";
  pointer-events: none;
}

.site-header > * {
  position: relative;
  z-index: 1;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 900;
}

.brand__logo {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 8px;
  animation: logo-pop 2s cubic-bezier(0.2, 0.95, 0.2, 1) both;
}

.brand__name,
.footer-brand span {
  font-size: 1.35rem;
  line-height: 1;
  white-space: nowrap;
}

.brand__name {
  color: var(--ink);
}

.footer-brand span {
  color: var(--ink);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.language-switcher {
  display: inline-flex;
  min-height: 2.6rem;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.46);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  padding: 0 0.55rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
  backdrop-filter: blur(16px) saturate(145%);
}

.language-switcher span {
  color: var(--muted);
}

.language-switcher select {
  min-width: 8.2rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  outline: 0;
}

.site-nav a,
.status-link {
  display: inline-flex;
  min-height: 2.6rem;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 0.9rem;
  transition: color 180ms ease, transform 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 242, 234, 0.72);
  color: var(--accent-dark);
}

.status-link {
  background: var(--ink);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(7, 17, 38, 0.16);
}

.status-link:hover,
.status-link:focus-visible {
  background: var(--accent);
  transform: translateY(-1px);
}

.hero,
.section,
.pricing,
.site-footer {
  width: min(72rem, calc(100% - 2rem));
  margin-right: auto;
  margin-left: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 18rem);
  align-items: center;
  gap: 1.5rem;
  position: relative;
  min-height: 39rem;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--ink);
  padding: 6.8rem 0 3.4rem;
  isolation: isolate;
}

.hero::before {
  content: none;
}

.hero::after {
  content: none;
}

.hero__copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero h1,
.section h2,
.pricing h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero h1 {
  color: var(--ink);
  font-size: clamp(3.15rem, 4.85vw, 4.45rem);
  white-space: nowrap;
}

.hero__lead {
  max-width: 46rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 1.24rem;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.65rem;
}

.button {
  display: inline-flex;
  min-height: 3.65rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  padding: 0 1.55rem;
  font: inherit;
  font-size: 1rem;
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(135deg, rgba(255, 90, 20, 0.98), rgba(240, 75, 8, 0.9));
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(255, 90, 20, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--accent-dark);
}

.button--secondary {
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--ink);
  box-shadow: var(--glass-shadow);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  transition:
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease;
  will-change: transform;
}

.hero .button--secondary {
  color: var(--ink);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.45rem;
}

.hero__trust span {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: var(--glass-bg);
  background-blend-mode: luminosity;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.55rem 0.7rem;
  box-shadow: 0 10px 28px rgba(7, 17, 38, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
}

.hero__visual {
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: end;
  width: clamp(16rem, 28vw, 26rem);
  margin-right: 0;
  margin-bottom: -0.7rem;
  opacity: 1;
  pointer-events: none;
  transform: translateX(0) scale(1);
  transition:
    opacity 950ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 950ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

body.is-intro-complete .hero__visual,
body:has(.intro.is-hidden) .hero__visual {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.hero__visual img {
  display: block;
  width: 100%;
  max-height: 33rem;
  object-fit: contain;
  filter:
    drop-shadow(0 18px 22px rgba(0, 0, 0, 0.22))
    drop-shadow(0 6px 12px rgba(0, 0, 0, 0.1));
  transform-origin: 50% 80%;
  animation: hero-visual-float 6s 3.1s ease-in-out infinite;
}

.section {
  padding: 4.8rem 0;
}

.section__intro {
  max-width: 52rem;
}

.section h2,
.pricing h2 {
  font-size: 3.05rem;
  line-height: 1.05;
}

.section__intro p,
.pricing__copy p {
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.pain-grid,
.feature-grid,
.use-grid,
.trust-grid,
.policy-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.2rem;
}

.pain-grid,
.use-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid,
.trust-grid,
.policy-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pain-grid article,
.feature-card,
.use-grid article,
.trust-grid article,
.policy-grid article,
.contact-card,
.contact-form,
.step {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: var(--glass-bg);
  background-blend-mode: luminosity;
  box-shadow: var(--glass-shadow);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  transition:
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease;
  will-change: transform;
}

.pain-grid article::before,
.feature-card::before,
.use-grid article::before,
.trust-grid article::before,
.policy-grid article::before,
.contact-card::before,
.contact-form::before,
.step::before,
.pricing-card::before,
.footer-links a::before,
.cookie-banner::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0) 36%),
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.32), transparent 32%);
  content: "";
  opacity: 0.72;
  pointer-events: none;
  transition: opacity 260ms ease, transform 260ms ease;
}

.pain-grid article > *,
.feature-card > *,
.use-grid article > *,
.trust-grid article > *,
.policy-grid article > *,
.contact-card > *,
.contact-form > *,
.step > *,
.pricing-card > *,
.footer-links a > *,
.cookie-banner > * {
  position: relative;
  z-index: 1;
}

.pain-grid article:hover,
.feature-card:hover,
.use-grid article:hover,
.trust-grid article:hover,
.policy-grid article:hover,
.contact-card:hover,
.step:hover,
.pricing-card:hover,
.pain-grid article:focus-within,
.feature-card:focus-within,
.use-grid article:focus-within,
.trust-grid article:focus-within,
.policy-grid article:focus-within,
.contact-card:focus-within,
.step:focus-within,
.pricing-card:focus-within {
  border-color: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 36px 110px rgba(7, 17, 38, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.95),
    inset 0 -28px 48px rgba(255, 255, 255, 0.18);
  transform: translateY(-0.42rem);
}

.pain-grid article:hover::before,
.feature-card:hover::before,
.use-grid article:hover::before,
.trust-grid article:hover::before,
.policy-grid article:hover::before,
.contact-card:hover::before,
.step:hover::before,
.pricing-card:hover::before,
.pain-grid article:focus-within::before,
.feature-card:focus-within::before,
.use-grid article:focus-within::before,
.trust-grid article:focus-within::before,
.policy-grid article:focus-within::before,
.contact-card:focus-within::before,
.step:focus-within::before,
.pricing-card:focus-within::before {
  opacity: 1;
  transform: translateX(0.35rem);
}

.pain-grid article,
.use-grid article,
.trust-grid article,
.policy-grid article {
  padding: 1.3rem;
}

.pain-grid span {
  display: inline-flex;
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.25;
}

.pain-grid h3,
.use-grid h3,
.trust-grid h3,
.policy-grid h3 {
  margin-top: 0.75rem;
}

p,
li,
dd {
  color: var(--muted);
}

.pain-grid p,
.feature-card p,
.use-grid p,
.trust-grid p,
.policy-grid p,
.step p {
  margin: 0.75rem 0 0;
  font-size: 0.98rem;
  line-height: 1.6;
}

.feature-card {
  min-height: 16.4rem;
  padding: 1.3rem;
}

.feature-card__index {
  display: inline-flex;
  width: 2.45rem;
  height: 2.45rem;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: linear-gradient(135deg, rgba(255, 240, 231, 0.92), rgba(255, 255, 255, 0.58));
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 950;
}

.feature-card h3 {
  margin-top: 1.2rem;
}

.infographic-section {
  padding-top: 3.8rem;
}

.infographic-board {
  display: grid;
  gap: 1rem;
  align-items: stretch;
  margin-top: 2.2rem;
}

.infographic-metrics article,
.infographic-flow div {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: var(--glass-bg);
  background-blend-mode: luminosity;
  box-shadow: var(--glass-shadow);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
}

.infographic-metrics strong,
.infographic-flow span {
  color: var(--ink);
  font-weight: 950;
}

.infographic-metrics p,
.infographic-flow p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.infographic-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.infographic-metrics article {
  padding: 1.2rem;
  transition:
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 260ms ease;
}

.infographic-metrics article:hover,
.infographic-metrics article:focus-within,
.infographic-flow div:hover,
.infographic-flow div:focus-within {
  box-shadow: 0 30px 90px rgba(7, 17, 38, 0.18), inset 0 1px 1px rgba(255, 255, 255, 0.9);
  transform: translateY(-0.28rem);
}

.infographic-metrics span {
  display: inline-flex;
  margin-bottom: 0.85rem;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 950;
}

.infographic-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.infographic-flow div {
  min-height: 9.4rem;
  padding: 1.15rem;
  transition:
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 260ms ease;
}

.infographic-flow span {
  display: inline-flex;
  margin-bottom: 0.65rem;
}

.split-section {
  display: grid;
  align-items: start;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(19rem, 1.1fr);
}

.steps {
  display: grid;
  gap: 0.85rem;
}

.step {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: auto minmax(0, 1fr);
  padding: 1.15rem;
}

.step span {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 90, 20, 0.98), rgba(240, 75, 8, 0.88));
  color: #ffffff;
  font-weight: 950;
  grid-row: span 2;
}

.pricing {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.92fr);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(7, 17, 38, 0.88), rgba(7, 17, 38, 0.68)),
    linear-gradient(135deg, rgba(255, 90, 20, 0.2), rgba(47, 111, 237, 0.14) 58%, rgba(32, 166, 106, 0.12));
  box-shadow: 0 28px 90px rgba(7, 17, 38, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  color: #ffffff;
  padding: 3rem;
}

.pricing::before {
  content: none;
}

.pricing > * {
  position: static;
}

.pricing h2,
.pricing__copy p {
  color: #ffffff;
}

.pricing__copy p {
  opacity: 0.8;
}

.pricing-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
  background-blend-mode: luminosity;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 22px 54px rgba(0, 0, 0, 0.14);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  backdrop-filter: blur(18px) saturate(145%);
  padding: 1.4rem;
  transition:
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease;
  will-change: transform;
}

.plan-badge {
  display: inline-flex;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: #ffd7c8;
  font-size: 0.78rem;
  font-weight: 950;
  padding: 0.45rem 0.65rem;
  text-transform: uppercase;
}

.price {
  margin-top: 0.9rem;
  color: #ffffff;
  font-size: 4rem;
  font-weight: 950;
  line-height: 1;
}

.price span {
  font-size: 1.6rem;
  vertical-align: super;
}

.price small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  font-weight: 800;
}

.pricing-card p,
.pricing-card li {
  color: rgba(255, 255, 255, 0.78);
}

.pricing-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 1.3rem;
  padding-left: 1.1rem;
}

.billing-note {
  margin: 1rem 0 0;
  font-size: 0.86rem;
  line-height: 1.55;
}

.contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.82fr);
  margin-top: 2.2rem;
}

.contact-form,
.contact-card {
  padding: 1.25rem;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--ink);
  font: inherit;
  padding: 0.85rem 0.9rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(12px) saturate(130%);
  backdrop-filter: blur(12px) saturate(130%);
}

.contact-form textarea {
  resize: vertical;
}

.contact-card p {
  margin: 0.8rem 0 0;
  line-height: 1.6;
}

.contact-card dl {
  display: grid;
  gap: 0.9rem;
  margin: 1.2rem 0 0;
}

.contact-card dt {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-card dd {
  margin: 0.25rem 0 0;
  line-height: 1.5;
}

.contact-card a {
  color: var(--accent-dark);
  font-weight: 850;
}

.legal {
  padding-bottom: 2rem;
}

.site-footer {
  padding: 2.5rem 0 2rem;
  color: var(--muted);
}

.site-footer p {
  max-width: 46rem;
  margin: 1rem 0 0;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.footer-links a {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: var(--glass-bg);
  background-blend-mode: luminosity;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.55rem 0.7rem;
  box-shadow: 0 10px 28px rgba(7, 17, 38, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent-dark);
}

.copyright {
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 24;
  display: grid;
  width: min(68rem, calc(100% - 2rem));
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58)),
    rgba(255, 255, 255, 0.62);
  box-shadow:
    0 24px 70px rgba(7, 17, 38, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  padding: 1rem;
  backdrop-filter: blur(24px) saturate(150%);
  transition: opacity 260ms ease, transform 260ms ease, visibility 260ms ease;
}

.cookie-banner::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  content: "";
  pointer-events: none;
}

.cookie-banner.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
}

.cookie-banner__copy,
.cookie-banner__actions {
  position: relative;
  z-index: 1;
}

.cookie-banner__copy strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.cookie-banner__copy p {
  max-width: 48rem;
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.cookie-banner__copy a {
  display: inline-flex;
  margin-top: 0.45rem;
  color: var(--accent-dark);
  font-size: 0.9rem;
  font-weight: 850;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}

.cookie-button {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 950;
  padding: 0 1rem;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.cookie-button:hover,
.cookie-button:focus-visible {
  transform: translateY(-1px);
}

.cookie-button--primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(255, 90, 20, 0.24);
}

.cookie-button--ghost {
  border: 1px solid rgba(231, 235, 242, 0.92);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.chatbot {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 42;
}

.cookie-banner:not(.is-hidden) + .chatbot {
  bottom: 8.8rem;
}

.cookie-banner:not(.is-hidden) + .chatbot .chatbot__panel {
  max-height: min(34rem, calc(100vh - 14rem));
}

.chatbot__launcher,
.chatbot__send,
.chatbot__close {
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.chatbot__launcher {
  display: inline-flex;
  min-width: 5.4rem;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 90, 20, 0.98), rgba(216, 66, 0, 0.94));
  color: #ffffff;
  box-shadow: 0 18px 46px rgba(255, 90, 20, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.chatbot__launcher:hover,
.chatbot__launcher:focus-visible,
.chatbot__send:hover,
.chatbot__send:focus-visible {
  transform: translateY(-2px);
}

.chatbot__panel {
  position: absolute;
  right: 0;
  bottom: 4rem;
  display: grid;
  width: min(24rem, calc(100vw - 2rem));
  max-height: min(42rem, calc(100vh - 7rem));
  grid-template-rows: auto minmax(9rem, 1fr) auto auto;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: var(--glass-bg-strong);
  background-blend-mode: luminosity;
  box-shadow: 0 28px 90px rgba(7, 17, 38, 0.24), inset 0 1px 1px rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: var(--glass-blur-strong);
  backdrop-filter: var(--glass-blur-strong);
}

.chatbot__panel[hidden] {
  display: none;
}

.chatbot__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(7, 17, 38, 0.94);
  color: #ffffff;
  padding: 1rem;
}

.chatbot__header div {
  display: grid;
  gap: 0.25rem;
}

.chatbot__header strong {
  font-size: 1rem;
}

.chatbot__header span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.chatbot__close {
  min-height: 2rem;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.78rem;
  padding: 0 0.65rem;
}

.chatbot__messages {
  display: flex;
  min-height: 12rem;
  flex-direction: column;
  gap: 0.65rem;
  overflow-y: auto;
  padding: 1rem;
}

.chatbot__message {
  max-width: 88%;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 0.7rem 0.78rem;
}

.chatbot__message--bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.chatbot__message--user {
  align-self: flex-end;
  background: var(--accent);
  color: #ffffff;
}

.chatbot__form,
.chatbot__lead {
  border-top: 1px solid rgba(231, 235, 242, 0.9);
  padding: 0.85rem 1rem 1rem;
}

.chatbot__form {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.chatbot__field,
.chatbot__lead label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.chatbot__field span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.chatbot textarea,
.chatbot input,
.chatbot select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: inherit;
  padding: 0.72rem 0.78rem;
  resize: vertical;
}

.chatbot__send {
  min-height: 2.75rem;
  background: var(--accent);
  color: #ffffff;
  padding: 0 0.9rem;
}

.chatbot__lead {
  display: grid;
  gap: 0.7rem;
  max-height: 18.6rem;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.32);
}

.chatbot__lead[hidden] {
  display: none;
}

.chatbot__lead strong {
  color: var(--ink);
}

.chatbot__lead p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.chatbot__lead a {
  color: var(--accent-dark);
  font-weight: 950;
}

.section-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes logo-pop {
  0% {
    opacity: 0;
    transform: scale(0.64) rotate(-8deg);
  }
  55% {
    opacity: 1;
    transform: scale(1.08) rotate(2deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@keyframes intro-logo {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }
  45% {
    opacity: 1;
    transform: scale(1.08);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes hero-visual-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-0.45rem);
  }
}

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

  .language-switcher span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .language-switcher select {
    min-width: 7.2rem;
  }

  .split-section,
  .pricing,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(11rem, 14rem);
    gap: 1rem;
    min-height: auto;
    padding-top: 3.4rem;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .hero__visual {
    width: clamp(13.5rem, 30vw, 19rem);
    margin-right: -1.4rem;
  }

  .pain-grid,
  .feature-grid,
  .infographic-board,
  .use-grid,
  .trust-grid,
  .policy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .infographic-board {
    grid-template-columns: 1fr;
  }

  .infographic-metrics {
    grid-template-columns: 1fr;
  }

  .infographic-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .intro__logo {
    width: 5.8rem;
    height: 5.8rem;
    border-radius: 1.45rem;
  }

  .intro__title {
    font-size: 1.65rem;
  }

  .intro__subtitle {
    font-size: 0.92rem;
  }

  .site-header {
    top: 0.6rem;
    width: calc(100% - 1rem);
    min-height: 3.55rem;
    gap: 0.5rem;
    margin-top: 0.6rem;
    padding: 0.55rem;
  }

  .brand__logo {
    width: 2.2rem;
    height: 2.2rem;
  }

  .brand__name {
    font-size: 1rem;
  }

  .language-switcher {
    min-height: 2.35rem;
    padding: 0 0.35rem;
  }

  .language-switcher select {
    min-width: 5.9rem;
    max-width: 6.8rem;
    font-size: 0.78rem;
  }

  .status-link {
    display: inline-flex;
    min-height: 2.35rem;
    padding: 0 0.7rem;
    font-size: 0;
  }

  .status-link::after {
    content: "Access";
    font-size: 0.82rem;
  }

  .hero,
  .section,
  .pricing,
  .site-footer {
    width: min(100% - 2rem, 72rem);
  }

  .hero {
    display: block;
    gap: 1.35rem;
    padding: 4.2rem 1rem 2.2rem;
  }

  .hero h1 {
    color: var(--ink);
    font-size: 2.05rem;
  }

  .hero__lead {
    position: relative;
    z-index: 2;
    max-width: 21rem;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero::after {
    content: none;
  }

  .hero__visual {
    position: absolute;
    right: -4.8rem;
    bottom: 0.65rem;
    width: 15.5rem;
    margin: 0;
    opacity: 0.36;
    transform: translateX(0) scale(1);
  }

  body.is-intro-complete .hero__visual,
  body:has(.intro.is-hidden) .hero__visual {
    opacity: 0.36;
    transform: translateX(0) scale(1);
  }

  .hero__visual img {
    filter:
      drop-shadow(0 12px 16px rgba(0, 0, 0, 0.18))
      drop-shadow(0 4px 9px rgba(0, 0, 0, 0.1));
  }

  .hero__actions {
    position: relative;
    z-index: 2;
    gap: 0.75rem;
    margin-top: 1.2rem;
  }

  .hero__trust {
    position: relative;
    z-index: 2;
  }

  .button {
    width: 100%;
    min-height: 3.35rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section h2,
  .pricing h2 {
    font-size: 2.2rem;
  }

  .pain-grid,
  .feature-grid,
  .infographic-board,
  .infographic-flow,
  .use-grid,
  .trust-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .infographic-flow div {
    min-height: auto;
  }

  .feature-card {
    min-height: auto;
  }

  .pricing {
    padding: 1.25rem;
  }

  .price {
    font-size: 3.25rem;
  }

  .cookie-banner {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    width: auto;
    grid-template-columns: 1fr;
    margin: 0;
    padding: 0.9rem;
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-banner__copy p {
    max-width: 19rem;
  }

  .cookie-button {
    min-width: 0;
    padding: 0 0.75rem;
  }

  .chatbot {
    right: 0.75rem;
    left: 0.75rem;
    bottom: 0.75rem;
    display: flex;
    justify-content: flex-end;
  }

  .cookie-banner:not(.is-hidden) + .chatbot {
    bottom: 13rem;
  }

  .cookie-banner:not(.is-hidden) + .chatbot .chatbot__panel {
    max-height: min(34rem, calc(100vh - 18rem));
  }

  .chatbot__panel {
    right: 0;
    width: calc(100vw - 1.5rem);
    max-height: min(40rem, calc(100vh - 6rem));
  }

  .chatbot__form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .brand__name {
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: 1.95rem;
  }

  .hero__visual {
    right: -5.6rem;
    width: 14.2rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
