﻿:root {
  --bg: #e7f2ff;
  --panel: rgba(255, 255, 255, 0.58);
  --text: #0a2f66;
  --muted: #0f3f7d;
  --primary: #0b3f85;
  --primary2: #17a7e8;
  --accent: #f39434;
  --border: rgba(255, 255, 255, 0.42);
  --shadow: 0 18px 40px rgba(10, 35, 80, 0.16), 0 4px 14px rgba(15, 37, 70, 0.08);
  --heroText: #f7fbff;
  --heroMuted: rgba(240, 247, 255, 0.92);
  --glassBg: rgba(255, 255, 255, 0.18);
  --glassBorder: rgba(255, 255, 255, 0.42);
  --radius: 20px;
  --container: 1160px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #08192d;
    --panel: rgba(15, 23, 42, 0.56);
    --text: #e7f2ff;
    --muted: #b5c6de;
    --primary: #2a7fff;
    --primary2: #2bc5ff;
    --accent: #ffab4e;
    --border: rgba(148, 163, 184, 0.24);
    --shadow: 0 24px 44px rgba(0, 0, 0, 0.42), 0 6px 14px rgba(0, 0, 0, 0.24);
    --heroText: #f5fbff;
    --heroMuted: rgba(230, 241, 255, 0.92);
    --glassBg: rgba(8, 22, 40, 0.38);
    --glassBorder: rgba(178, 205, 242, 0.34);
  }
}

:root[data-theme="light"] {
  --bg: #e7f2ff;
  --panel: rgba(255, 255, 255, 0.58);
  --text: #0a2f66;
  --muted: #0f3f7d;
  --primary: #0b3f85;
  --primary2: #17a7e8;
  --accent: #f39434;
  --border: rgba(255, 255, 255, 0.42);
  --shadow: 0 18px 40px rgba(10, 35, 80, 0.16), 0 4px 14px rgba(15, 37, 70, 0.08);
  --heroText: #f7fbff;
  --heroMuted: rgba(240, 247, 255, 0.92);
  --glassBg: rgba(255, 255, 255, 0.18);
  --glassBorder: rgba(255, 255, 255, 0.42);
}

:root[data-theme="dark"] {
  --bg: #08192d;
  --panel: rgba(15, 23, 42, 0.56);
  --text: #e7f2ff;
  --muted: #b5c6de;
  --primary: #2a7fff;
  --primary2: #2bc5ff;
  --accent: #ffab4e;
  --border: rgba(148, 163, 184, 0.24);
  --shadow: 0 24px 44px rgba(0, 0, 0, 0.42), 0 6px 14px rgba(0, 0, 0, 0.24);
  --heroText: #f5fbff;
  --heroMuted: rgba(230, 241, 255, 0.92);
  --glassBg: rgba(8, 22, 40, 0.38);
  --glassBorder: rgba(178, 205, 242, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 110px;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Segoe UI", "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  background:
    linear-gradient(180deg, #e9f5ff 0%, #e2f1ff 28%, #d5ebff 60%, #eef8ff 100%);
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    conic-gradient(from 210deg at 82% -8%, rgba(255, 247, 210, 0.78) 0deg, rgba(255, 247, 210, 0) 18deg, rgba(255, 247, 210, 0.58) 36deg, rgba(255, 247, 210, 0) 58deg, rgba(255, 247, 210, 0.46) 80deg, rgba(255, 247, 210, 0) 108deg),
    radial-gradient(1200px 560px at 84% 2%, rgba(255, 253, 243, 0.92), rgba(255, 253, 243, 0) 74%);
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(680px 340px at 78% 9%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 76%),
    radial-gradient(520px 260px at 74% 12%, rgba(255, 244, 204, 0.48), rgba(255, 244, 204, 0) 80%),
    radial-gradient(1400px 540px at 15% 115%, rgba(116, 194, 255, 0.18), rgba(116, 194, 255, 0) 74%);
  pointer-events: none;
  z-index: -1;
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--primary2) 70%, white);
  outline-offset: 2px;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 10px 14px;
  background: #fff;
  color: #0a2f66;
  border-radius: 10px;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

.section {
  padding: 30px 0;
}

.section h2 {
  margin: 0 0 18px;
  font-size: clamp(1.65rem, 1.08rem + 1.9vw, 2.15rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 14px;
}

ul {
  margin: 0;
  padding-left: 1.2rem;
}

li + li {
  margin-top: 8px;
}

.site-header {
  position: sticky;
  top: 10px;
  z-index: 60;
  margin-bottom: -86px;
  padding-top: 0;
}

.header-inner {
  min-height: 70px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 38px rgba(10, 31, 61, 0.16);
  backdrop-filter: blur(14px) saturate(130%);
}

.logo {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  margin-left: 15px;
}

.logo img {
  display: block;
  height: 49px;
  width: auto;
  max-width: 180px;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--glassBorder);
  background: color-mix(in srgb, var(--glassBg) 86%, transparent);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  border-radius: 2px;
  background: #0a2f66;
  margin: 0;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.main-nav a {
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 700;
  color: #0a2f66;
  opacity: 1;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #0a2f66;
  text-decoration: none;
  opacity: 1;
  border-color: rgba(18, 63, 132, 0.24);
  background: rgba(18, 63, 132, 0.08);
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(18, 63, 132, 0.18);
  margin-right: 15px;
}

.lang-switcher a {
  color: #0a2f66;
  font-size: 0.77rem;
  font-weight: 700;
  padding: 6px 8px;
  border-radius: 999px;
  line-height: 1;
}

.lang-switcher a.active {
  color: #fff;
  background: linear-gradient(120deg, var(--primary), var(--primary2));
}

.nav-lang-switcher {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(640px, 78vh, 900px);
  padding-top: 150px;
  padding-bottom: 48px;
  background:
    radial-gradient(1200px 700px at 20% 20%, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0) 60%),
    linear-gradient(180deg, #cfe6ff 0%, #bfe0ff 28%, #b7dcff 55%, #eaf5ff 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}

.hero-media picture {
  display: block;
}

.hero-media img {
  width: min(2400px, 140vw);
  height: auto;
  max-height: 92%;
  transform: translateX(0);
  filter: saturate(1.04) contrast(1.03);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 24%, #000 76%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 24%, #000 76%, transparent 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.55) 0%, rgba(15, 23, 42, 0.18) 38%, rgba(15, 23, 42, 0) 62%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.25) 0%, rgba(15, 23, 42, 0) 28%);
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(234, 245, 255, 0) 0%, rgba(234, 245, 255, 0.82) 72%, rgba(234, 245, 255, 1) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-media::after {
  content: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 20px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
}

.hero-copy {
  padding: clamp(20px, 3.5vw, 30px);
  border-radius: 24px;
  max-width: none;
  width: 100%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.5), rgba(235, 245, 255, 0.5));
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 14px 32px rgba(6, 26, 53, 0.18);
  backdrop-filter: blur(6px);
}

.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #0a2f66;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(18, 63, 132, 0.22);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 1.05rem + 3.25vw, 3.45rem);
  line-height: 1.07;
  letter-spacing: -0.03em;
  text-wrap: balance;
  color: #0a2f66;
  text-shadow: none;
}

.hero .lead {
  margin-top: 14px;
  margin-bottom: 20px;
  color: #0f3f7d;
  max-width: 63ch;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(120deg, #0b3f85, #0f5bb8);
  box-shadow: 0 10px 22px rgba(11, 63, 133, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 14px 28px rgba(11, 63, 133, 0.42);
}

.btn-ghost {
  color: #0a2f66;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(18, 63, 132, 0.28);
}

.hero-side {
  display: none;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.trust-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 14px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.5), rgba(235, 245, 255, 0.5));
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 30px rgba(9, 31, 62, 0.25);
  backdrop-filter: blur(10px) saturate(130%);
}

.trust-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(120deg, var(--primary), var(--primary2));
  box-shadow: 0 8px 18px rgba(21, 100, 214, 0.36);
  flex-shrink: 0;
}

.trust-title {
  margin: 0;
  color: #0a2f66;
  font-weight: 800;
  font-size: 0.96rem;
  line-height: 1.2;
}

.trust-caption {
  margin: 4px 0 0;
  color: #0f3f7d;
  font-size: 0.82rem;
  line-height: 1.35;
}

@supports not ((backdrop-filter: blur(8px))) {
  .header-inner,
  .hero-copy,
  .trust-card {
    background: rgba(14, 40, 78, 0.72);
  }
}

.cards-grid {
  display: grid;
  gap: 14px;
}

.facts-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.facts-section h2,
#pricing > .container > h2 {
  text-align: center;
  color: #0a2f66;
}

.facts-section h2::after,
#pricing > .container > h2::after {
  content: "";
  display: block;
  width: 140px;
  height: 2px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, transparent, #88b7e8, transparent);
}

.panel,
.card,
.accordion-item,
.table-wrap,
.closing-cta {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.panel {
  padding: 24px;
}

.panel.compact {
  margin-top: 14px;
}

.card {
  padding: 20px;
}

.fact-card {
  display: grid;
  gap: 8px;
  align-content: start;
  text-align: center;
}

.fact-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(145deg, #d7ecff, #b9dcff);
  border: 1px solid rgba(14, 86, 176, 0.22);
  position: relative;
  margin-inline: auto;
}

.fact-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 22px;
  height: 22px;
  background-color: #0b3f85;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

/* 1) Kalendar */
.fact-icon-0::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='5' width='18' height='16' rx='2' fill='black'/%3E%3Crect x='3' y='9' width='18' height='2' fill='white'/%3E%3Crect x='7' y='2' width='2' height='6' fill='black'/%3E%3Crect x='15' y='2' width='2' height='6' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='5' width='18' height='16' rx='2' fill='black'/%3E%3Crect x='3' y='9' width='18' height='2' fill='white'/%3E%3Crect x='7' y='2' width='2' height='6' fill='black'/%3E%3Crect x='15' y='2' width='2' height='6' fill='black'/%3E%3C/svg%3E");
}

/* 2) Sipka doleva a doprava */
.fact-icon-1::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 8L3 12l4 4M3 12h18M17 8l4 4-4 4' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 8L3 12l4 4M3 12h18M17 8l4 4-4 4' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* 3) Trajekt */
.fact-icon-2::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 15h14l-2 4H7l-2-4zM9 8h6v4H9zM11 5h2v3h-2zM3 21c2-2 4-2 6 0 2-2 4-2 6 0 2-2 4-2 6 0' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 15h14l-2 4H7l-2-4zM9 8h6v4H9zM11 5h2v3h-2zM3 21c2-2 4-2 6 0 2-2 4-2 6 0 2-2 4-2 6 0' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* 4) Dodavka */
.fact-icon-3::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 8h13v8H2zM15 11h4l3 3v2h-7z' fill='black'/%3E%3Ccircle cx='7' cy='18' r='2' fill='black'/%3E%3Ccircle cx='18' cy='18' r='2' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 8h13v8H2zM15 11h4l3 3v2h-7z' fill='black'/%3E%3Ccircle cx='7' cy='18' r='2' fill='black'/%3E%3Ccircle cx='18' cy='18' r='2' fill='black'/%3E%3C/svg%3E");
}

.card-value {
  margin: 0;
  color: #0b3f85;
  font-size: clamp(1.1rem, 0.93rem + 0.75vw, 1.45rem);
  font-weight: 800;
  line-height: 1.2;
}

.card-title {
  margin: 0;
  font-size: 1.09rem;
  line-height: 1.3;
}

.card-description {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

#pricing .cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

#pricing .card {
  text-align: center;
}

.warning-banner {
  margin-top: 16px;
  border-radius: 18px;
  padding: 18px 18px;
  background: linear-gradient(120deg, #d63f30, #ef7a2f);
  color: #fff;
  box-shadow: 0 14px 30px rgba(180, 48, 35, 0.28);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.warning-title {
  margin: 0 0 8px;
  font-size: clamp(1.06rem, 0.95rem + 0.62vw, 1.4rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #ffffff;
}

.warning-banner p {
  margin-inline: auto;
  max-width: 980px;
}

.accordion {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.accordion-item {
  overflow: clip;
}

.accordion-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  font-weight: 700;
  cursor: pointer;
}

.accordion-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--panel) 82%, transparent);
  color: var(--primary);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.23s ease;
}

.accordion-panel.open {
  padding: 0 18px 16px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 360px;
}

th,
td {
  text-align: left;
  padding: 12px 14px;
}

thead th {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

tbody tr:nth-child(odd) {
  background: color-mix(in srgb, var(--panel) 40%, transparent);
}

tbody tr + tr td {
  border-top: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
}

.social-links {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  box-shadow: 0 10px 20px rgba(10, 31, 61, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.social-link svg {
  width: 22px;
  height: 22px;
}

.social-floating .social-link {
  width: 32px;
  height: 32px;
}

.social-floating .social-link svg {
  width: 18px;
  height: 18px;
}

.social-facebook {
  background: linear-gradient(135deg, #1877f2, #0b5fd6);
}

.social-instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 52%, #8134af 78%, #515bd4);
}

.contact-details {
  text-align: left;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-person {
  margin: 0;
  line-height: 1.4;
}

.contact-phone {
  color: var(--primary2);
  font-weight: 700;
}

.process-note {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--panel) 75%, transparent);
  border-left: 4px solid var(--primary2);
  font-style: italic;
  color: var(--muted);
}

.extra-services,
.insurance-note,
.social-note {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
}

.social-note {
  font-weight: 600;
}

.social-floating {
  position: fixed;
  right: 12px;
  bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 90;
}

.social-link:hover {
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(10, 31, 61, 0.3);
  filter: brightness(1.06);
}

.social-link:focus-visible {
  outline: 3px solid rgba(10, 47, 102, 0.4);
  outline-offset: 2px;
}

.closing-cta {
  padding: clamp(26px, 4vw, 48px);
  text-align: center;
  background:
    linear-gradient(135deg, #0b3f85, #0f5bb8 55%, #1780de);
  color: #fff;
  box-shadow: 0 24px 48px rgba(11, 63, 133, 0.35);
}

.closing-cta h2,
.closing-cta p {
  color: #fff;
}

.closing-cta h2 {
  font-size: clamp(2rem, 1.4rem + 2vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.closing-cta p {
  max-width: 74ch;
  margin-inline: auto;
}

.closing-cta .btn-row {
  justify-content: center;
  margin-top: 16px;
}

.closing-cta .btn {
  min-height: 64px;
  padding: 14px 36px;
  font-size: 1.12rem;
  font-weight: 800;
}

.closing-cta .cta-whatsapp {
  background: linear-gradient(145deg, #25d366, #19bb5c);
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 14px 28px rgba(16, 120, 58, 0.45);
}

.closing-cta .cta-whatsapp:hover {
  box-shadow: 0 18px 34px rgba(16, 120, 58, 0.55);
}

#contacts .panel {
  text-align: center;
}

.smallprint p {
  font-size: 0.95rem;
  color: var(--muted);
}

.whatsapp-float {
  position: fixed;
  right: calc(22px + env(safe-area-inset-right));
  bottom: calc(22px + env(safe-area-inset-bottom));
  width: 74px;
  height: 74px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #25d366, #16b758);
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 28px rgba(16, 120, 58, 0.35), 0 6px 14px rgba(0, 0, 0, 0.18);
  z-index: 120;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: waPopIn 0.45s ease-out, waPulse 2.4s ease-in-out 1.1s infinite;
}

.whatsapp-float svg {
  width: 38px;
  height: 38px;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 34px rgba(16, 120, 58, 0.45), 0 8px 16px rgba(0, 0, 0, 0.22);
}

.whatsapp-float:focus-visible {
  outline: 3px solid #0b3f85;
  outline-offset: 2px;
}

@keyframes waPopIn {
  0% {
    opacity: 0;
    transform: scale(0.68);
  }
  72% {
    opacity: 1;
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes waPulse {
  0%, 100% {
    box-shadow: 0 14px 28px rgba(16, 120, 58, 0.35), 0 6px 14px rgba(0, 0, 0, 0.18);
  }
  50% {
    box-shadow: 0 22px 40px rgba(16, 120, 58, 0.52), 0 10px 20px rgba(0, 0, 0, 0.26);
  }
}

@media (max-width: 1024px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 600px;
    padding-top: 138px;
  }

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

  .facts-grid,
  #pricing .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero-media img {
    transform: translateX(0);
    width: 150vw;
    max-height: 80%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(15, 23, 42, 0.35) 0%, rgba(15, 23, 42, 0) 38%);
  }
}

@media (max-width: 840px) {
  .site-header {
    top: 8px;
    margin-bottom: -74px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    row-gap: 10px;
    border-radius: 20px;
    padding: 8px 10px;
  }

  .logo {
    margin-left: 6px;
  }

  .logo img {
    height: 40px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .main-nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 8px;
    margin-top: 4px;
    padding: 10px;
    border: 1px solid rgba(18, 63, 132, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    display: block;
    padding: 10px 12px;
    border: 1px solid transparent;
    background: linear-gradient(120deg, #0b3f85, #0f5bb8);
    color: #ffffff;
    box-shadow: 0 8px 16px rgba(11, 63, 133, 0.28);
  }

  .header-controls {
    display: none;
  }

  .lang-switcher {
    margin-right: 4px;
  }

  .nav-lang-switcher {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    margin-top: 4px;
    padding-top: 4px;
    border-top: 1px solid rgba(18, 63, 132, 0.16);
  }

  .nav-lang-switcher a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: linear-gradient(120deg, #0b3f85, #0f5bb8);
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 6px 12px rgba(11, 63, 133, 0.24);
  }

  .nav-lang-switcher a.active {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(120deg, var(--primary), var(--primary2));
  }

  .hero {
    min-height: 700px;
    padding-top: 126px;
  }

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

  .hero-side {
    display: none;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .section {
    padding: 24px 0;
  }

  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .hero {
    min-height: 720px;
    padding-top: 114px;
    padding-bottom: 28px;
  }

  .hero-grid {
    display: block;
  }

  .hero-copy {
    max-width: none;
    padding: 16px 14px 18px;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 9vw, 2.45rem);
    line-height: 1.1;
  }

  .btn {
    width: 100%;
  }

  .hero-trust {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .trust-card {
    padding: 12px;
  }

  .trust-caption {
    font-size: 0.8rem;
  }

  .social-link {
    width: 60px;
    height: 60px;
  }

  .social-link svg {
    width: 30px;
    height: 30px;
  }

  .closing-cta {
    padding: 22px 14px;
  }

  .closing-cta .btn {
    min-height: 56px;
    font-size: 1rem;
    padding: 12px 20px;
  }

  .facts-grid,
  #pricing .cards-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .panel,
  .card,
  .closing-cta,
  .accordion-trigger {
    border-radius: 16px;
  }

  .table-wrap {
    padding: 8px;
  }

  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
    min-width: 0;
  }

  thead {
    display: none;
  }

  tbody tr {
    padding: 10px;
    border-radius: 12px;
    border: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
    background: color-mix(in srgb, var(--panel) 62%, transparent);
  }

  tbody tr + tr {
    margin-top: 8px;
  }

  td {
    border: 0;
    padding: 7px 8px;
  }

  td::before {
    content: attr(data-label) ": ";
    font-weight: 700;
    color: var(--muted);
  }

  .whatsapp-float {
    right: calc(12px + env(safe-area-inset-right));
    bottom: calc(12px + env(safe-area-inset-bottom));
    width: 68px;
    height: 68px;
  }

  .whatsapp-float svg {
    width: 35px;
    height: 35px;
  }
}
