:root {
  --navy: #0f172a;
  --navy-800: #1e293b;
  --navy-700: #334155;
  --accent: #06b6d4;
  --accent-light: #22d3ee;
  --accent-dark: #0891b2;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --white: #ffffff;
  --header-h: 4.5rem;
  --shadow-soft: 0 4px 24px -4px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 8px 32px -8px rgba(15, 23, 42, 0.12);
  --shadow-lift: 0 12px 40px -12px rgba(6, 182, 212, 0.25);
  --radius: 1rem;
  --radius-lg: 1.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, sans-serif;
  color: var(--navy);
  background: var(--slate-50);
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 80;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
}

.skip-link:focus {
  left: 1rem;
}

.container {
  width: min(80rem, calc(100% - 2rem));
  margin-inline: auto;
}

.container-narrow {
  width: min(48rem, calc(100% - 2rem));
  margin-inline: auto;
}

.container-mid {
  width: min(56rem, calc(100% - 2rem));
  margin-inline: auto;
}

/* Background */
.site-bg {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: linear-gradient(to bottom, #fff, var(--slate-50) 40%, var(--slate-100));
}

.aurora {
  position: absolute;
}

.aurora-cyan {
  top: -20rem;
  right: -16rem;
  width: 58rem;
  height: 58rem;
  background: radial-gradient(closest-side, rgba(34, 211, 238, 0.3), rgba(34, 211, 238, 0.1) 45%, transparent 72%);
  animation: drift-a 34s ease-in-out infinite alternate;
}

.aurora-blue {
  top: 18%;
  left: -22rem;
  width: 56rem;
  height: 56rem;
  background: radial-gradient(closest-side, rgba(59, 130, 246, 0.24), rgba(59, 130, 246, 0.08) 45%, transparent 72%);
  animation: drift-b 42s ease-in-out infinite alternate;
}

.aurora-indigo {
  bottom: -24rem;
  left: 38%;
  width: 54rem;
  height: 54rem;
  background: radial-gradient(closest-side, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0.07) 45%, transparent 72%);
  animation: drift-c 38s ease-in-out infinite alternate;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(15, 23, 42, 0.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse 95% 65% at 50% 0%, #000 25%, transparent 85%);
  mask-image: radial-gradient(ellipse 95% 65% at 50% 0%, #000 25%, transparent 85%);
}

.hero-wash {
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 38rem;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(34, 211, 238, 0.16), transparent 70%);
}

@keyframes drift-a {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-7rem, 5rem, 0) scale(1.15); }
}
@keyframes drift-b {
  from { transform: translate3d(0, 0, 0) scale(1.1); }
  to { transform: translate3d(8rem, -6rem, 0) scale(0.95); }
}
@keyframes drift-c {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-9rem, -4rem, 0) scale(1.2); }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: var(--shadow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 4rem;
}

@media (min-width: 640px) {
  .header-inner {
    height: var(--header-h);
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--navy);
}

.brand:hover {
  opacity: 0.8;
}

.brand-mark {
  display: flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}

.brand-name {
  display: none;
  font-size: 1.125rem;
}

@media (min-width: 640px) {
  .brand-name {
    display: inline;
  }
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.desktop-nav a {
  border-radius: 0.75rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-600);
}

.desktop-nav a:hover,
.desktop-nav a.active {
  background: var(--slate-100);
  color: var(--navy);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.header-mobile-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 1024px) {
  .desktop-nav,
  .header-actions {
    display: flex;
  }

  .header-mobile-actions {
    display: none;
  }
}

.lang-switch {
  display: inline-flex;
  padding: 0.25rem;
  border: 1px solid var(--slate-200);
  border-radius: 0.75rem;
  background: #fff;
}

.lang-btn {
  border: 0;
  border-radius: 0.5rem;
  padding: 0.35rem 0.75rem;
  background: transparent;
  color: var(--slate-600);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.lang-btn.active {
  background: var(--navy);
  color: #fff;
}

.menu-toggle {
  border: 0;
  border-radius: 0.75rem;
  padding: 0.5rem;
  background: transparent;
  color: var(--navy);
}

.menu-toggle:hover {
  background: var(--slate-100);
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--slate-200);
  background: #fff;
  padding: 1rem;
}

.mobile-menu.open {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-menu,
  .mobile-menu.open {
    display: none;
  }
}

.mobile-menu a {
  display: block;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-weight: 500;
  color: var(--slate-600);
}

.mobile-menu a.active,
.mobile-menu a:hover {
  background: var(--slate-100);
  color: var(--navy);
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 0.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 1rem;
  font-weight: 500;
  border: 1px solid transparent;
  transition: 0.2s;
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: 0.75rem;
}

.btn-md {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover:not(:disabled) {
  background: var(--accent-dark);
  box-shadow: var(--shadow-lift);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}

.btn-navy:hover:not(:disabled) {
  background: var(--navy-800);
}

.btn-outline {
  background: #fff;
  color: var(--navy);
  border-color: var(--slate-200);
  box-shadow: var(--shadow-soft);
}

.btn-outline:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
}

.btn-ghost:hover:not(:disabled) {
  background: var(--slate-100);
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-ghost-light:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.2);
}

.btn-link {
  background: none;
  border: 0;
  padding: 0;
  color: var(--accent-dark);
  font-weight: 500;
}

.btn-link:hover {
  color: var(--accent);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 4rem 0;
}

.page-hero {
  padding: 3rem 0 4rem;
  text-align: center;
}

.section-veil {
  background-image: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.78) 9%,
    rgba(255, 255, 255, 0.78) 91%,
    rgba(255, 255, 255, 0) 100%
  );
}

.section-title {
  margin: 0 0 2.5rem;
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-subtitle {
  margin: 0.75rem auto 0;
  max-width: 42rem;
  color: var(--slate-600);
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 400;
}

h1, h2, h3, p {
  margin: 0;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.page-hero p {
  margin: 1.25rem auto 0;
  max-width: 46rem;
  color: var(--slate-600);
  font-size: 1.125rem;
  line-height: 1.7;
}

.hero {
  padding: 3rem 0 5rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-sub {
  margin-top: 1rem;
  color: var(--accent-dark);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 500;
}

.hero-text {
  margin-top: 1.5rem;
  max-width: 36rem;
  color: var(--slate-600);
  font-size: 1.125rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

.hero-card {
  position: relative;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(6px);
}

.hero-card-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid var(--slate-100);
  border-radius: 1rem;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.hero-card-row:nth-child(2) {
  margin-left: 2rem;
}

.hero-card-row:nth-child(3) {
  margin-left: 4rem;
  margin-bottom: 0;
}

.icon-box {
  display: flex;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  color: #fff;
}

.grad-cyan { background: linear-gradient(135deg, #22d3ee, #3b82f6); }
.grad-blue { background: linear-gradient(135deg, #3b82f6, #6366f1); }
.grad-indigo { background: linear-gradient(135deg, #6366f1, #8b5cf6); }

.grid-3 {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  gap: 1.25rem;
}

.grid-4,
.grid-5 {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-5 { grid-template-columns: repeat(5, 1fr); }
}

.card,
.audience-card,
.trust-card,
.area-card,
.service-card,
.step-card,
.value-card,
.flow-card,
.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  background: #fff;
}

.audience-card,
.service-card,
.value-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.audience-card:hover,
.service-card:hover {
  box-shadow: var(--shadow-card);
}

.trust-card,
.area-card,
.step-card {
  padding: 1.5rem;
}

.trust-card {
  text-align: center;
}

.area-card {
  display: flex;
  flex-direction: column;
  background: rgba(248, 250, 252, 0.5);
}

.area-card:hover {
  background: #fff;
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: var(--shadow-soft);
}

.icon-soft {
  display: flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  background: rgba(6, 182, 212, 0.1);
  color: var(--accent-dark);
}

.icon-lg {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.flow-card {
  padding: 2rem;
  background: rgba(248, 250, 252, 0.5);
}

.flow-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--slate-600);
}

.flow-chip {
  border-radius: 0.5rem;
  background: #fff;
  padding: 0.4rem 0.75rem;
  font-weight: 500;
  box-shadow: var(--shadow-soft);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--slate-200);
  border-radius: 0.75rem;
  background: #fff;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--shadow-soft);
}

.step-num {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}

.muted {
  color: var(--slate-600);
  line-height: 1.7;
}

.small {
  font-size: 0.875rem;
}

.faq-item {
  overflow: hidden;
  background: rgba(248, 250, 252, 0.5);
}

.faq-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: transparent;
  padding: 1.25rem;
  text-align: left;
  font-weight: 500;
  color: var(--navy);
}

.faq-trigger:hover {
  background: #fff;
}

.faq-trigger svg {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--slate-400);
  transition: transform 0.2s;
}

.faq-item.open .faq-trigger svg {
  transform: rotate(180deg);
}

.faq-panel {
  display: none;
  padding: 0 1.25rem 1.25rem;
  color: var(--slate-600);
  line-height: 1.7;
}

.faq-item.open .faq-panel {
  display: block;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy), var(--navy-800) 55%, #0f172a);
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
}

.cta-banner h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
}

.cta-banner p {
  margin: 1rem auto 0;
  max-width: 36rem;
  color: #cbd5e1;
  font-size: 1.125rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.form-card {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

@media (min-width: 640px) {
  .form-card {
    padding: 2.5rem;
  }
}

.form-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.field.full,
.consent,
.form-actions,
.form-error,
.form-success {
  grid-column: 1 / -1;
}

.field label,
.legend {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
}

.req {
  color: var(--accent-dark);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--slate-200);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--navy);
  background: #fff;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.2);
}

.field.error input,
.field.error select,
.field.error textarea {
  border-color: #f87171;
}

.field-error,
.form-error {
  color: #dc2626;
  font-size: 0.875rem;
}

.radio-row,
.check-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.check-row {
  align-items: flex-start;
  gap: 0.75rem;
}

.check-row input {
  margin-top: 0.2rem;
}

.choice {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--slate-200);
  border-radius: 0.75rem;
  padding: 1rem;
  cursor: pointer;
}

.choice.active,
.choice:has(input:checked) {
  border-color: var(--accent);
  background: rgba(6, 182, 212, 0.05);
}

.skill-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-pill {
  border: 1px solid var(--slate-200);
  border-radius: 0.75rem;
  background: #fff;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-600);
}

.skill-pill.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.form-success {
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-lg);
  background: #f0fdf4;
  padding: 2rem;
  text-align: center;
  color: #166534;
}

.success-mark {
  display: flex;
  width: 3.5rem;
  height: 3.5rem;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: #dcfce7;
  color: #16a34a;
  font-size: 1.25rem;
}

.progress {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: var(--slate-500);
}

.progress-bars {
  display: flex;
  gap: 0.25rem;
}

.progress-bars span {
  width: 2rem;
  height: 0.35rem;
  border-radius: 999px;
  background: var(--slate-200);
}

.progress-bars span.on {
  background: var(--accent);
}

.result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--slate-200);
  border-radius: 1rem;
  background: var(--slate-50);
  padding: 1rem;
}

.result-score {
  color: var(--accent-dark);
  font-size: 1.125rem;
  font-weight: 700;
}

.legal {
  color: var(--slate-600);
}

.legal h1 {
  margin-bottom: 0.75rem;
  color: var(--navy);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.legal .updated {
  margin-bottom: 2.5rem;
  color: var(--slate-500);
  font-size: 0.875rem;
  font-weight: 500;
}

.legal h2 {
  margin: 0 0 0.75rem;
  color: var(--navy);
  font-size: 1.15rem;
}

.legal p,
.legal li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.legal ul {
  margin: 0 0 0.75rem 1.25rem;
}

.legal-contact {
  margin-top: 1rem;
  border: 1px solid var(--slate-200);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.7);
  padding: 1.5rem;
}

.legal a,
.consent a {
  color: var(--accent-dark);
  text-decoration: underline;
}

.optional-tag {
  display: inline-block;
  margin-left: 0.25rem;
  border-radius: 0.5rem;
  background: var(--slate-100);
  padding: 0.1rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--slate-500);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--slate-200);
  background: rgba(255, 255, 255, 0.8);
  padding: 4rem 0;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer-top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-brand {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.social-btn {
  display: flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--slate-200);
  border-radius: 0.75rem;
  color: var(--slate-500);
}

.social-btn:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(5, 1fr); }
}

.footer-grid h3 {
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid a,
.footer-grid button.linkish {
  display: inline;
  border: 0;
  background: none;
  padding: 0;
  color: var(--slate-600);
  font-size: 0.875rem;
}

.footer-grid li + li {
  margin-top: 0.75rem;
}

.footer-grid a:hover,
.footer-grid button.linkish:hover {
  color: var(--accent-dark);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--slate-200);
}

.disclaimer {
  margin-top: 1rem;
  max-width: 56rem;
  color: var(--slate-400);
  font-size: 0.75rem;
  line-height: 1.7;
}

/* Floating telegram */
.float-contact {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
}

@media (min-width: 640px) {
  .float-contact {
    right: 1.5rem;
    bottom: 1.5rem;
  }
}

.float-contact a {
  display: flex;
  width: 3.25rem;
  height: 3.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #229ed9;
  color: #fff;
  box-shadow: var(--shadow-card);
}

.float-contact a:hover {
  background: #1d8bc2;
}

body.cookie-open .float-contact {
  display: none;
}

@media (min-width: 1024px) {
  body.cookie-open .float-contact {
    display: block;
  }
}

/* Cookies */
.cookie-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 50;
  padding: 1rem;
}

.cookie-banner[hidden],
.modal[hidden] {
  display: none;
}

.cookie-card {
  width: min(56rem, 100%);
  margin: 0 auto;
  border: 1px solid var(--slate-200);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(8px);
}

.cookie-layout {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .cookie-layout {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .cookie-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
}

.modal-card {
  position: relative;
  width: min(36rem, 100%);
  max-height: 90vh;
  overflow: auto;
  border-radius: 1.25rem;
  background: #fff;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  border: 0;
  background: transparent;
  color: var(--slate-500);
  font-size: 1.5rem;
  line-height: 1;
}

.cookie-cat {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.75rem;
  border: 1px solid var(--slate-200);
  border-radius: 1rem;
  background: rgba(248, 250, 252, 0.6);
  padding: 1rem;
}

.note {
  display: inline-block;
  margin-top: 0.5rem;
  border-radius: 0.5rem;
  background: rgba(226, 232, 240, 0.7);
  padding: 0.15rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--slate-600);
}

.hidden {
  display: none !important;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
