:root {
  --bg: #f5f6f8;
  --card: #ffffff;
  --text: #1f242d;
  --muted: #5f6b7c;
  --accent: #4a86e8;
  --accent-soft: #e0e8f7;
  --border: #e3e7ed;
  --shadow: 0 20px 50px rgba(30, 42, 67, 0.08);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

body.nav-open::after {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 8, 20, 0.45);
  z-index: 10;
}

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

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

.hero {
  min-height: 90vh;
  background: linear-gradient(
      120deg,
      rgba(245, 246, 248, 0.82),
      rgba(232, 236, 241, 0.75)
    ),
    url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?auto=format&fit=crop&w=1600&q=80')
      center/cover;
  padding: 2.5rem clamp(1.25rem, 4vw, 5rem) 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero::before {
  background: radial-gradient(
    circle at 20% 20%,
    rgba(74, 134, 232, 0.25),
    transparent 50%
  );
  animation: pulse 16s ease-in-out infinite alternate;
}

.hero::after {
  background: radial-gradient(
    circle at 80% 0%,
    rgba(255, 255, 255, 0.45),
    transparent 60%
  );
  mix-blend-mode: screen;
  animation: floaty 18s ease-in-out infinite alternate;
}

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

.hero-sub {
  min-height: 70vh;
  padding-bottom: 3rem;
}

.hero-sub .hero-content {
  margin-top: 2.5rem;
}

body.nav-loaded .hero {
  padding-top: calc(2.5rem + 90px);
}

body.nav-loaded .hero.hero-sub {
  padding-top: calc(2rem + 80px);
}

.hero-dark {
  color: #fff;
}

.hero-dark .hero-content h1 {
  color: #fff;
  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}

.hero-dark .subtitle {
  color: rgba(255, 255, 255, 0.82);
}

.hero-dark .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.hero-dark .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-dark .hero-scroll {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.hero-dark .highlight-card,
.hero-dark .highlight-card p,
.hero-dark .highlight-card span,
.hero-dark .highlight-card strong {
  color: var(--text);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: rgba(250, 250, 252, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(31, 36, 45, 0.08);
  box-shadow: 0 15px 30px rgba(14, 20, 40, 0.08);
  z-index: 40;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  transition: right 0.35s ease;
  margin-left: auto;
  position: relative;
}

.nav-links a.active {
  color: var(--accent);
  font-weight: 600;
}

.nav-links a {
  position: relative;
  padding: 0.25rem 0.45rem;
  border-radius: 999px;
  transition: color 0.3s ease, background 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(74, 134, 232, 0.08);
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: -1;
}

.nav-links a:hover::after {
  opacity: 1;
  transform: scale(1);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a.active::after {
  opacity: 1;
  transform: scale(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.35rem;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero-content {
  max-width: 640px;
  margin-top: 4rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero h1 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.55rem;
}

.hero h1::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 62%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #6fa0f0);
  box-shadow: 0 10px 30px rgba(74, 134, 232, 0.25);
}

.subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2rem;
  text-indent: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background 0.3s ease;
  box-shadow: 0 15px 30px rgba(74, 134, 232, 0.3);
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(74, 134, 232, 0.4);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(31, 36, 45, 0.15);
  color: var(--text);
  box-shadow: none;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

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

.stats strong {
  font-size: 1.4rem;
  color: var(--text);
}

.hero-highlights {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(31, 36, 45, 0.12);
  min-width: 180px;
  animation: floaty 8s ease-in-out infinite;
}

.highlight-card strong {
  display: block;
  font-size: 1.8rem;
  margin: 0.25rem 0;
}

.highlight-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.floating-delay-2 {
  animation-delay: -1.5s;
}

.floating-delay-3 {
  animation-delay: -3s;
}

.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 2rem;
  padding: 0.3rem 0.6rem;
  align-self: flex-start;
  width: fit-content;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(74, 134, 232, 0.18);
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(31, 36, 45, 0.12);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.hero-scroll:hover {
  transform: translateY(-2px);
  border-color: rgba(74, 134, 232, 0.35);
  box-shadow: 0 18px 38px rgba(31, 36, 45, 0.16);
  background: rgba(255, 255, 255, 0.9);
}

.arrow-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #6fa0f0);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(74, 134, 232, 0.3);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.arrow-icon::before {
  content: '';
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-width: 0 2px 2px 0;
  display: block;
  transform: rotate(45deg);
}

.hero-scroll:hover .arrow-icon {
  transform: translateX(2px);
  box-shadow: 0 12px 26px rgba(74, 134, 232, 0.35);
  background: linear-gradient(135deg, #5b93eb, #7fb0f4);
}

.hero-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(74, 134, 232, 0.3),
    rgba(74, 134, 232, 0)
  );
  filter: blur(0px);
  opacity: 0.7;
  animation: floaty 12s ease-in-out infinite;
}

.bubble-1 {
  width: 220px;
  height: 220px;
  bottom: 10%;
  right: 5%;
}

.bubble-2 {
  width: 120px;
  height: 120px;
  top: 25%;
  left: 10%;
}

.bubble-3 {
  width: 160px;
  height: 160px;
  bottom: 5%;
  left: 25%;
}

.ticker {
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(31, 36, 45, 0.08);
  padding: 0.75rem 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  font-size: 0.95rem;
  color: var(--muted);
  animation: marquee 28s linear infinite;
}

main {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  padding: 4rem 1.5rem 5rem;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  background: var(--card);
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: left;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  margin: 0.7rem 0;
}

.section-header p,
.section p {
  color: var(--muted);
}

.has-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 15% 20%,
      rgba(74, 134, 232, 0.12),
      transparent 40%
    ),
    radial-gradient(circle at 80% 30%, rgba(232, 236, 241, 0.9), transparent 45%);
  z-index: 0;
}

.has-pattern > * {
  position: relative;
  z-index: 1;
}

.service-grid,
.location-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--bg);
  border: 1px solid var(--border);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: flex-start;
  text-align: center;
  align-items: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.card::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-md) - 6px);
  border: 1px solid rgba(74, 134, 232, 0.08);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(31, 36, 45, 0.12);
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  color: var(--muted);
}

.card-link {
  font-weight: 600;
  color: var(--accent);
  font-size: 0.95rem;
  margin-top: auto;
}

.card-link::after {
  content: '›';
  margin-left: 0.4rem;
}

.service-detail {
  background: linear-gradient(135deg, #fefefe, #eef2f8);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.detail-grid.reverse .detail-text {
  order: 2;
}

.detail-grid.reverse .detail-media {
  order: 1;
}

.detail-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(74, 134, 232, 0.1);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
}

.detail-text h2 {
  margin: 1rem 0;
}

.detail-list {
  list-style: none;
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--muted);
}

.detail-list li::before {
  content: '•';
  margin-right: 0.5rem;
  color: var(--accent);
}

.detail-cta {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
}

.detail-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.detail-media:hover img {
  transform: scale(1.05);
}

.detail-media figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(31, 36, 45, 0.65);
  color: #fff;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.map-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.map-svg {
  width: 100%;
  height: auto;
  max-width: 520px;
  margin: 0 auto;
  display: block;
}

.map-features use,
.map-features path {
  fill: #fff !important;
  stroke: rgba(31, 36, 45, 0.16);
  stroke-width: 1.2;
}

.map-legend {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  color: var(--muted);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--text);
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.legend-akquise {
  background: var(--accent);
}

.legend-consulting {
  background: #1f242d;
}

.legend-it {
  background: #6ac5b0;
}

.reference-note {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.map-pin {
  r: 3.2;
  opacity: 0.9;
  filter: drop-shadow(0 2px 4px rgba(31, 36, 45, 0.2));
}

.pin-akquise {
  fill: var(--accent);
}

.pin-consulting {
  fill: #1f242d;
}

.pin-it {
  fill: #6ac5b0;
}

html[data-cookie-gate] body {
  overflow: hidden;
}

html[data-cookie-gate] body > *:not(.cookie-banner) {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  user-select: none;
}

.cookie-banner {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 24, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 999;
}

.cookie-banner.show {
  display: flex;
}

.cookie-modal {
  max-width: 640px;
  width: min(640px, 90vw);
  max-height: 90vh;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 40px 90px rgba(10, 14, 24, 0.35);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
}

.cookie-modal h4 {
  margin: 0;
  font-size: 1.25rem;
}

.cookie-modal p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.cookie-text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cookie-text a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cookie-option {
  display: flex;
  gap: 0.75rem;
  padding: 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #f6f7fb;
}

.cookie-option strong {
  display: block;
  margin-bottom: 0.2rem;
}

.cookie-option p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-option input {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  padding: 0.75rem 1.4rem;
  font-size: 0.95rem;
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid transparent;
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(31, 36, 45, 0.08);
}

.pv-services {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.pv-services .card {
  min-height: 220px;
}

.it-services,
.formate-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .it-services,
  .formate-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

.akquise-services {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.akquise-services .card {
  min-height: 220px;
}

.cookie-manage {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 998;
}

.cookie-manage.hidden {
  display: none;
}

.cookie-manage button {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  box-shadow: 0 10px 25px rgba(31, 36, 45, 0.12);
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cookie-manage button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(31, 36, 45, 0.16);
}

.ref-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 1.25rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ref-meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.9rem;
}

.ref-type {
  font-weight: 600;
}

.about {
  background: linear-gradient(135deg, #fefefe, #e8ecf1);
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: var(--muted);
}

.about-highlight {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.about-highlight strong {
  font-size: 3rem;
  display: block;
  margin: 0.5rem 0;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-weight: 600;
}

input,
textarea {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  padding: 0.85rem 1rem;
  font: inherit;
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-options {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.checkbox input {
  width: 1rem;
  height: 1rem;
}

.footnote {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: right;
}

.form-status {
  grid-column: 1 / -1;
  font-size: 0.95rem;
  color: var(--muted);
  min-height: 1.2em;
}

.form-status[data-type='success'] {
  color: #1a7f4b;
}

.form-status[data-type='error'] {
  color: #b3261e;
}

.contact-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.contact-cta p {
  color: var(--muted);
  max-width: 600px;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-embed iframe {
  border: 0;
  width: 100%;
  height: 360px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.legal h2 {
  color: var(--text);
}

.legal h3 {
  margin-top: 1.5rem;
  color: var(--text);
}

.legal ul {
  list-style: disc;
  padding-left: 1.25rem;
}

.footer {
  margin: 3rem auto 2rem;
  padding: 2.5rem clamp(1.5rem, 4vw, 3rem);
  max-width: var(--max-width);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #fefefe, #e9edf4);
  box-shadow: var(--shadow);
  color: var(--muted);
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.footer-brand p {
  margin-top: 0.5rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.footer-columns h4 {
  margin-bottom: 0.5rem;
  color: var(--text);
  font-size: 1rem;
}

.footer-columns a {
  display: block;
  color: var(--muted);
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer a {
  color: var(--accent);
}

/* Animations */
[data-animate] {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floaty {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }
  100% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

@keyframes bounce {
  0% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 6px);
  }
  100% {
    transform: translate(-50%, 0);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .ticker-track {
    animation-duration: 20s;
  }
}

@media (max-width: 1024px) {
  .nav-inner {
    position: relative;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    width: min(280px, 85vw);
    max-height: 70vh;
    overflow-y: auto;
    background: var(--card);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
    z-index: 45;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.75rem) scaleY(0.95);
    transform-origin: top right;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scaleY(1);
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav-links .btn {
    width: 100%;
    justify-content: center;
  }

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

  .detail-grid.reverse .detail-text,
  .detail-grid.reverse .detail-media {
    order: initial;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 1.5rem 1.25rem 3rem;
    min-height: 75vh;
  }

  .hero-highlights {
    flex-direction: column;
  }

  .hero-bubbles {
    display: none;
  }

  .detail-cta,
  .form-options {
    flex-direction: column;
    align-items: stretch;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .map-embed iframe {
    height: 260px;
  }

  .map-wrap {
    grid-template-columns: 1fr;
  }

  .ticker-track {
    animation-duration: 15s;
  }
}

@media (max-width: 520px) {
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation-duration: 0s !important;
  }
}

@media (max-width: 640px) {
  body.nav-loaded {
    padding-top: 80px;
  }

  main {
    padding: 3rem 1rem 4rem;
    gap: 3rem;
  }

  .section {
    padding: 1.5rem;
  }

  .hero {
    padding: 1.25rem 1rem 2.5rem;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 7vw, 2.5rem);
  }

  .hero .subtitle {
    font-size: 1rem;
  }

  .hero-highlights {
    flex-direction: column;
  }

  .card {
    min-height: 240px;
  }

  .detail-grid,
  .about-content {
    gap: 1.25rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .form-options {
    align-items: flex-start;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 0.75rem 0.85rem;
    font-size: 0.95rem;
  }

  .footer {
    padding: 2rem 1.25rem;
  }

  .map-svg {
    max-width: 100%;
  }
}

@media (max-width: 420px) {
  .btn,
  .cookie-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cookie-banner {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
  }

  .cookie-manage {
    right: 0.75rem;
    bottom: 0.75rem;
  }
}
