/* Andrii Ryndia Solutions */
:root {
  --color-ink: #152033;
  --color-ink-soft: #31425f;
  --color-navy: #1c2d4a;
  --color-blue: #2563eb;
  --color-blue-dark: #1d4ed8;
  --color-teal: #0f766e;
  --color-amber: #f59e0b;
  --color-green: #16a34a;
  --color-whatsapp: #25d366;
  --color-whatsapp-dark: #1fb758;
  --color-bg: #f7f9fc;
  --color-bg-warm: #fff8ed;
  --color-card: #ffffff;
  --color-muted: #eef3f8;
  --color-line: #dbe4ef;
  --color-line-strong: #c5d2e2;
  --color-text-muted: #5f6f86;
  --color-star: #facc15;

  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container-max: 1180px;
  --nav-height: 96px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --shadow-sm: 0 1px 2px rgba(21, 32, 51, 0.08);
  --shadow-md: 0 12px 30px rgba(21, 32, 51, 0.12);
  --shadow-lg: 0 24px 60px rgba(21, 32, 51, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: var(--font-sans);
  color: var(--color-ink);
  background:
    linear-gradient(180deg, #ffffff 0, var(--color-bg) 520px),
    var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.28);
  outline-offset: 3px;
}

.container {
  width: min(100% - 48px, var(--container-max));
  margin: 0 auto;
}

.section,
.ba-section {
  padding: 88px 0;
}

.section-muted {
  background: linear-gradient(180deg, #f2f6fb 0, #ffffff 100%);
}

.text-center {
  text-align: center;
}

.text-primary {
  color: var(--color-blue);
}

.section-badge,
.hero-badge,
.coverage-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 32px;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.section-badge,
.hero-badge {
  color: var(--color-blue-dark);
  background: #e8f0ff;
}

.section-badge i,
.hero-badge i,
.coverage-badge i {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.section-title,
.coverage-title,
.hero-title {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--color-ink);
}

.section-title {
  margin-top: 14px;
  font-size: 2.25rem;
  line-height: 1.15;
}

.section-subtitle {
  max-width: 650px;
  margin: 14px auto 0;
  color: var(--color-text-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: var(--radius-md);
  color: var(--color-ink);
  background: transparent;
  border: 1px solid transparent;
  font-size: 0.9375rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn i,
.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn-sm {
  min-height: 38px;
  padding: 0 15px;
  font-size: 0.875rem;
}

.btn-lg {
  min-height: 52px;
  padding: 0 24px;
  font-size: 1rem;
}

.btn-primary {
  color: #ffffff;
  background: var(--color-blue);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
}

.btn-primary:hover {
  background: var(--color-blue-dark);
}

.btn-whatsapp {
  color: #ffffff;
  background: var(--color-whatsapp);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.22);
}

.btn-whatsapp:hover {
  background: var(--color-whatsapp-dark);
}

.btn-whatsapp-outline {
  color: #128c46;
  border-color: rgba(37, 211, 102, 0.45);
  background: #ffffff;
}

.btn-whatsapp-outline:hover {
  color: #ffffff;
  background: var(--color-whatsapp);
  border-color: var(--color-whatsapp);
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(219, 228, 239, 0.92);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.nav.scrolled {
  box-shadow: 0 12px 28px rgba(21, 32, 51, 0.08);
}

.nav-inner {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  min-height: var(--nav-height);
  gap: 18px;
}

.nav-logo {
  display: flex;
  align-items: center;
  height: var(--nav-height);
  overflow: hidden;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo img {
  /* Larger than container — transparent PNG padding gets clipped by overflow:hidden */
  height: 148px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
}

.nav-links a {
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--color-text-muted);
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: color 0.18s ease, background-color 0.18s ease;
}

.nav-links a:hover {
  color: var(--color-ink);
  background: var(--color-muted);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  justify-self: flex-end;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  color: var(--color-ink);
  background: #ffffff;
  border: 1px solid var(--color-line);
  cursor: pointer;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 760px;
  padding: calc(var(--nav-height) + 44px) 0 72px;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: var(--nav-height) 0 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(28, 45, 74, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(28, 45, 74, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, #000 0, transparent 78%);
}

.hero-gradient {
  position: absolute;
  inset: var(--nav-height) 0 auto auto;
  width: 48%;
  height: 520px;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(15, 118, 110, 0.08));
  clip-path: polygon(18% 0, 100% 0, 100% 86%, 0 100%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1.08fr);
  align-items: center;
  gap: 92px;
  max-width: 1160px;
  margin: 0 auto;
}

.hero-inner > div:first-child {
  max-width: 560px;
  justify-self: start;
  margin-left: 14px;
}

.hero-title {
  max-width: 720px;
  margin-top: 18px;
  font-size: 3.45rem;
  line-height: 1.05;
}

.hero-subtitle {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--color-text-muted);
  font-size: 1.125rem;
  line-height: 1.75;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, max-content));
  gap: 10px;
  margin-top: 26px;
}

.hero-feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--color-ink-soft);
  background: #ffffff;
  border: 1px solid var(--color-line);
  font-size: 0.875rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.hero-feature i {
  width: 17px;
  height: 17px;
  color: var(--color-teal);
  flex: 0 0 auto;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 24px;
}

.hero-stars {
  display: flex;
  gap: 2px;
}

.hero-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--color-star);
}

.hero-rating-text {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.hero-rating-text strong {
  color: var(--color-ink);
}

.hero-image-area {
  min-width: 0;
}

.hero-image-wrap {
  position: relative;
  width: min(100%, 510px);
  margin-left: auto;
}

.hero-image-rot {
  position: absolute;
  inset: 16px -14px -14px 16px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.28), rgba(15, 118, 110, 0.22)),
    #eaf2f8;
  transform: rotate(2.5deg);
}

.hero-image-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-lg);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.025);
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-arrow {
  display: none;
}

.hero-arrow:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.06);
}

.hero-arrow.prev {
  left: 14px;
}

.hero-arrow.next {
  right: 14px;
}

.hero-arrow svg {
  width: 21px;
  height: 21px;
}

.hero-dots {
  display: none;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: width 0.18s ease, background-color 0.18s ease;
}

.hero-dot.active {
  width: 22px;
  background: #ffffff;
}

.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 172px;
  padding: 13px 15px;
  border-radius: var(--radius-lg);
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(219, 228, 239, 0.9);
  box-shadow: var(--shadow-md);
}

.floating-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.floating-card-icon.green {
  background: #dcfce7;
}

.floating-card-icon.blue {
  background: #e8f0ff;
}

.floating-card-icon i {
  width: 19px;
  height: 19px;
}

.floating-card-icon.green i {
  color: var(--color-green);
}

.floating-card-icon.blue i {
  color: var(--color-blue);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  font-size: 0.875rem;
  line-height: 1.2;
}

.floating-card span {
  margin-top: 2px;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  line-height: 1.25;
}

.fc-bottom {
  left: -18px;
  bottom: 22px;
}

.fc-top {
  right: -20px;
  top: 24px;
}

.about-grid,
.coverage-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 64px;
}

.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 22px;
  background: var(--color-muted);
  box-shadow: var(--shadow-md);
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: inherit;
  pointer-events: none;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.about-lead {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  width: 100%;
  padding: 16px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-sm);
}

.about-highlight i {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--color-teal);
  flex: 0 0 auto;
}

.about-highlight p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.coverage {
  padding: 88px 0;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.2), rgba(37, 99, 235, 0.12)),
    var(--color-ink);
}

.coverage-grid {
  align-items: center;
}

.coverage-badge {
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.coverage-title {
  max-width: 620px;
  margin-top: 16px;
  color: #ffffff;
  font-size: 2.375rem;
  line-height: 1.12;
}

.coverage-lead {
  max-width: 610px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.coverage-cities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.coverage-city {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9375rem;
  font-weight: 750;
}

.coverage-city svg {
  flex: 0 0 auto;
}

.coverage-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9375rem;
}

.coverage-map-frame {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 4 / 5;
  margin: 0 auto;
  padding: 28px;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.coverage-map-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.63;
}

.map-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.map-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #ffffff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2);
  animation: ping 2s ease-in-out infinite;
}

.map-dot::after {
  content: attr(data-city);
  position: absolute;
  top: 50%;
  left: 19px;
  padding: 5px 8px;
  border-radius: var(--radius-sm);
  color: #ffffff;
  background: rgba(21, 32, 51, 0.92);
  font-size: 0.75rem;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity 0.16s ease;
}

.map-dot:hover::after,
.map-dot:focus-visible::after {
  opacity: 1;
}

@keyframes ping {
  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.22);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
  }
}

.map-legend {
  position: absolute;
  left: 50%;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(21, 32, 51, 0.5);
  font-size: 0.8125rem;
  white-space: nowrap;
  transform: translateX(-50%);
}

.map-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ffffff;
}

.ba-section {
  background: var(--color-card);
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.ba-slider {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 20px;
  background: var(--color-muted);
  box-shadow: var(--shadow-md);
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}

.ba-slider.is-dragging {
  cursor: grabbing;
}

.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
}

.ba-before img,
.ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
}

.ba-after-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21, 32, 51, 0.58), transparent 55%);
}

.ba-after-label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 48px;
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 800;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

.ba-line {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 4;
  width: 3px;
  background: #ffffff;
  box-shadow: 0 0 12px rgba(21, 32, 51, 0.35);
  pointer-events: none;
  transform: translateX(-50%);
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #ffffff;
  border: 3px solid var(--color-blue);
  box-shadow: var(--shadow-md);
  transform: translate(-50%, -50%);
}

.ba-handle span {
  display: block;
  width: 2px;
  height: 16px;
  border-radius: 999px;
  background: var(--color-blue);
}

.ba-label-before,
.ba-label-after {
  position: absolute;
  bottom: 14px;
  z-index: 5;
  min-height: 30px;
  padding: 8px 12px 0;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 850;
  line-height: 1;
  pointer-events: none;
  transition: opacity 0.16s ease;
}

.ba-label-before {
  left: 14px;
  background: var(--color-amber);
}

.ba-label-after {
  right: 14px;
  background: var(--color-teal);
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin: 30px auto 34px;
}

.gallery-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 17px;
  border-radius: 999px;
  color: var(--color-text-muted);
  background: #ffffff;
  border: 1px solid var(--color-line);
  font-size: 0.875rem;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.gallery-tab:hover,
.gallery-tab.active {
  color: #ffffff;
  background: var(--color-blue);
  border-color: var(--color-blue);
  transform: translateY(-1px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery-ready .gallery-item {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-muted);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  isolation: isolate;
}

.gallery-ready .gallery-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: inherit;
  pointer-events: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.gallery-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  min-height: 44%;
  padding: 40px 14px 14px;
  color: #ffffff;
  background: linear-gradient(to top, rgba(21, 32, 51, 0.78), transparent);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gallery-overlay span {
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.25;
}

.gallery-item:hover img {
  transform: scale(1.055);
}

.gallery-item:hover .gallery-overlay,
.gallery-item:focus-within .gallery-overlay {
  opacity: 1;
}

.gallery-item.hidden {
  display: none;
}

.gallery-show-all {
  margin-top: 34px;
  text-align: center;
}

.gallery-show-all .gallery-tab {
  min-height: 46px;
  padding: 0 28px;
}

.contact-grid {
  align-items: start;
  margin-top: 44px;
}

.contact-options {
  display: grid;
  gap: 14px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  min-height: 118px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-sm);
}

.contact-card.wa-card {
  border-color: rgba(37, 211, 102, 0.42);
  background: linear-gradient(135deg, #ffffff 0, #effdf4 100%);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-lg);
  flex: 0 0 auto;
}

.contact-icon.blue {
  background: #e8f0ff;
}

.contact-icon.blue i {
  color: var(--color-blue);
}

.contact-icon.wa {
  background: var(--color-whatsapp);
}

.contact-icon.wa i {
  color: #ffffff;
}

.contact-icon i {
  width: 21px;
  height: 21px;
}

.contact-info {
  min-width: 0;
  flex: 1;
  overflow-wrap: anywhere;
}

.contact-info h3 {
  margin: 1px 0 7px;
  font-size: 1rem;
  line-height: 1.2;
}

.contact-info p {
  margin: 0 0 16px;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.contact-info > a:not(.btn) {
  display: inline-flex;
  max-width: 100%;
  color: var(--color-blue-dark);
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-info > a:not(.btn):hover {
  text-decoration: underline;
}

.form-card {
  padding: 28px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-md);
}

.form-title {
  margin: 0 0 6px;
  font-size: 1.25rem;
  font-weight: 850;
}

.form-subtitle {
  margin-bottom: 22px;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.field {
  margin-bottom: 15px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--color-ink-soft);
  font-size: 0.8125rem;
  font-weight: 850;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-md);
  padding: 11px 13px;
  color: var(--color-ink);
  background: #ffffff;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8a98aa;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.form-success {
  text-align: center;
  padding: 44px 18px;
}

.form-success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: #dcfce7;
}

.form-success h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.form-success p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.footer {
  padding: 58px 0 26px;
  color: #ffffff;
  background: #111827;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr;
  gap: 36px;
  margin-bottom: 38px;
}

.footer-logo {
  width: fit-content;
  margin-bottom: 14px;
}

.footer-logo img {
  width: auto;
  height: 54px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer-desc {
  max-width: 330px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.footer-socials {
  display: flex;
  gap: 9px;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.footer-social:hover {
  transform: translateY(-1px);
}

.footer-social.wa {
  background: var(--color-whatsapp);
}

.footer-social.neutral {
  background: rgba(255, 255, 255, 0.1);
}

.footer-social.neutral:hover {
  background: rgba(255, 255, 255, 0.18);
}

.footer-social i {
  width: 17px;
  height: 17px;
}

.footer-col h4 {
  margin: 0 0 14px;
  font-size: 0.875rem;
  line-height: 1.2;
}

.footer-col ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col a,
.footer-contact-item {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.18s ease;
}

.footer-col a:hover,
.footer-contact-item:hover {
  color: #ffffff;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
  overflow-wrap: anywhere;
}

.footer-contact-item i {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.footer-hours {
  margin-top: 14px;
  padding: 13px;
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.8125rem;
  line-height: 1.65;
}

.footer-hours strong {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.8125rem;
}

.float-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--color-whatsapp);
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.3);
  text-decoration: none;
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.float-wa:hover,
.float-wa:focus {
  background: var(--color-whatsapp-dark);
  transform: translateY(-2px) scale(1.03);
}

.float-wa i {
  width: 27px;
  height: 27px;
}

@media (hover: none) {
  .gallery-overlay {
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  :root {
    --nav-height: 84px;
  }

  .container {
    width: min(100% - 36px, var(--container-max));
  }

  .nav-inner {
    grid-template-columns: 1fr auto;
  }

  .nav-logo img {
    height: 128px;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .mobile-menu {
    position: fixed;
    top: var(--nav-height);
    left: 18px;
    right: 18px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--color-line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 12px;
    border-radius: var(--radius-md);
    color: var(--color-ink);
    font-weight: 850;
    text-decoration: none;
  }

  .mobile-menu a:hover {
    background: var(--color-muted);
  }

  .mobile-menu-actions {
    display: grid;
    gap: 8px;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--color-line);
  }

  .mobile-menu-actions .btn {
    width: 100%;
  }

  .hero {
    min-height: 0;
    padding: calc(var(--nav-height) + 40px) 0 62px;
  }

  .hero-inner,
  .about-grid,
  .coverage-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-inner > div:first-child {
    max-width: 680px;
    margin-left: 0;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .hero-image-wrap {
    width: min(100%, 500px);
    margin: 0 auto;
  }

  .about-photo {
    max-width: 520px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .section,
  .ba-section,
  .coverage {
    padding: 64px 0;
  }

  .hero-title {
    font-size: 2.28rem;
    line-height: 1.08;
  }

  .hero-subtitle,
  .section-subtitle,
  .coverage-lead,
  .about-lead {
    font-size: 1rem;
  }

  .section-title,
  .coverage-title {
    font-size: 1.9rem;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

  .hero-feature {
    justify-content: flex-start;
  }

  .hero-ctas {
    display: grid;
  }

  .hero-ctas .btn {
    width: 100%;
    white-space: normal;
    line-height: 1.2;
    text-align: center;
  }

  .hero-rating {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .floating-card {
    min-width: 0;
    max-width: calc(100% - 28px);
  }

  .fc-bottom {
    left: 14px;
  }

  .fc-top {
    right: 14px;
  }

  .coverage-cities,
  .ba-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .contact-card {
    min-height: 0;
  }
}

@media (max-width: 520px) {
  :root {
    --nav-height: 76px;
  }

  .container {
    width: min(100% - 28px, var(--container-max));
  }

  .nav-logo img {
    height: 112px;
  }

  .hero {
    padding-top: calc(var(--nav-height) + 30px);
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title,
  .coverage-title {
    font-size: 1.65rem;
  }

  .hero-image-frame {
    border-radius: 18px;
  }

  .hero-arrow {
    width: 38px;
    height: 38px;
  }

  .floating-card {
    display: none;
  }

  .gallery-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .gallery-tabs::-webkit-scrollbar {
    display: none;
  }

  .gallery-tab {
    flex: 0 0 auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 16px;
  }

  .contact-icon {
    width: 42px;
    height: 42px;
  }

  .form-card {
    padding: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .float-wa {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-inner {
    gap: 60px;
  }

  .hero-image-wrap {
    width: min(100%, 450px);
  }

  .gallery-grid {
    gap: 14px;
  }

  .about-grid,
  .coverage-grid,
  .contact-grid {
    gap: 50px;
  }

  .nav-links a {
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .nav-actions .btn-sm {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.8rem;
  }
}

@media (max-width: 640px) {
  .section,
  .ba-section,
  .coverage {
    padding: 48px 0;
  }

  .hero {
    padding: calc(var(--nav-height) + 20px) 0 40px;
  }

  .hero-title {
    font-size: 1.75rem;
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-features {
    gap: 8px;
  }

  .hero-feature {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .hero-ctas {
    gap: 12px;
  }

  .section-title,
  .coverage-title {
    font-size: 1.5rem;
  }

  .section-subtitle,
  .coverage-lead,
  .about-lead {
    font-size: 0.95rem;
  }

  .btn {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.9rem;
  }

  .btn-lg {
    min-height: 48px;
    padding: 0 20px;
  }

  .contact-options {
    gap: 16px;
  }

  .contact-card {
    padding: 20px;
  }

  .form-card {
    padding: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-col h4 {
    margin-bottom: 12px;
  }

  .footer-socials {
    justify-content: center;
  }
}

@media (max-width: 360px) {
  .container {
    width: min(100% - 20px, var(--container-max));
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .section-title,
  .coverage-title {
    font-size: 1.3rem;
  }

  .btn {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.85rem;
  }

  .float-wa {
    right: 12px;
    bottom: 12px;
    width: 50px;
    height: 50px;
  }

  .float-wa i {
    width: 24px;
    height: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Privacy & Impressum Pages ───────────────────────────────────────────── */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.privacy-section {
  margin-bottom: 48px;
}

.privacy-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-ink);
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.privacy-text {
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: 1rem;
}

.privacy-text p {
  margin: 0 0 16px 0;
}

.privacy-text p:last-child {
  margin-bottom: 0;
}

.privacy-text a {
  color: var(--color-blue);
  text-decoration: underline;
}

.privacy-text a:hover {
  color: var(--color-blue-dark);
}

.impressum-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.impressum-section {
  margin-bottom: 48px;
}

.impressum-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-ink);
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.impressum-text {
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: 1rem;
}

.impressum-text p {
  margin: 0 0 16px 0;
}

.impressum-text p:last-child {
  margin-bottom: 0;
}

.impressum-text a {
  color: var(--color-blue);
  text-decoration: underline;
}

.impressum-text a:hover {
  color: var(--color-blue-dark);
}

@media (max-width: 760px) {
  .privacy-content,
  .impressum-content {
    padding: 0 16px;
  }

  .privacy-section,
  .impressum-section {
    margin-bottom: 32px;
  }

  .privacy-section h2,
  .impressum-section h2 {
    font-size: 1.25rem;
  }
}

/* ── SEO Services Block ───────────────────────────────────────────────────── */
.seo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.seo-card {
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.seo-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.seo-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: #e8f0ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--color-blue);
}

.seo-card-icon i {
  width: 22px;
  height: 22px;
}

.seo-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-ink);
}

.seo-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.seo-why {
  margin-top: 64px;
}

.seo-why-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-ink);
  margin: 0 0 32px;
  text-align: center;
}

.seo-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.seo-why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
}

.seo-why-item i {
  width: 22px;
  height: 22px;
  color: var(--color-teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.seo-why-item div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.seo-why-item strong {
  font-size: 0.925rem;
  color: var(--color-ink);
}

.seo-why-item span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.seo-multilang {
  margin-top: 64px;
}

.seo-multilang-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-ink);
  margin: 0 0 32px;
  text-align: center;
}

.seo-multilang-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.seo-lang-card {
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
}

.seo-lang-flag {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 10px;
}

.seo-lang-card p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (max-width: 960px) {
  .seo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .seo-why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .seo-multilang-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .seo-grid,
  .seo-why-grid {
    grid-template-columns: 1fr;
  }

  .seo-multilang-grid {
    grid-template-columns: 1fr 1fr;
  }

  .seo-why-title,
  .seo-multilang-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 380px) {
  .seo-multilang-grid {
    grid-template-columns: 1fr;
  }
}

/* ── About without photo ──────────────────────────────────────────────────── */
.about-grid--no-photo {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
}

/* ── Lightbox ─────────────────────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(10, 15, 25, 0.95);
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: calc(100vw - 120px);
  max-height: calc(100vh - 80px);
}

.lightbox-img {
  max-width: 100%;
  max-height: calc(100vh - 130px);
  object-fit: contain;
  border-radius: 10px;
  user-select: none;
  display: block;
}

.lightbox-caption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 16px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  transition: background 0.18s;
  flex-shrink: 0;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.24);
}

.lightbox-close svg {
  width: 22px;
  height: 22px;
}

.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  transition: background 0.18s;
  flex-shrink: 0;
}

.lightbox-arrow:hover {
  background: rgba(255, 255, 255, 0.24);
}

.lightbox-arrow svg {
  width: 24px;
  height: 24px;
}

.lightbox-prev {
  left: 12px;
}

.lightbox-next {
  right: 12px;
}

.gallery-item {
  cursor: pointer;
}

@media (max-width: 560px) {
  .lightbox-inner {
    max-width: calc(100vw - 20px);
  }

  .lightbox-arrow {
    width: 38px;
    height: 38px;
  }

  .lightbox-prev {
    left: 6px;
  }

  .lightbox-next {
    right: 6px;
  }
}

/* ── Cookie Banner ────────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 800;
  width: min(calc(100% - 32px), 480px);
  background: #1c2d4a;
  color: #ffffff;
  border-radius: 18px;
  padding: 24px 24px 20px;
  box-shadow: 0 20px 60px rgba(10, 15, 25, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-icon {
  font-size: 2rem;
  line-height: 1;
}

.cookie-text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.cookie-text a {
  color: #93c5fd;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  width: 100%;
}

.cookie-btn {
  flex: 1;
  min-height: 42px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}

.cookie-btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

.cookie-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.cookie-btn-primary {
  background: var(--color-blue);
  border: 1px solid transparent;
  color: #ffffff;
}

.cookie-btn-primary:hover {
  background: var(--color-blue-dark);
}

@media (max-width: 400px) {
  .cookie-banner {
    bottom: 12px;
    padding: 18px 16px 16px;
  }

  .cookie-actions {
    flex-direction: column;
  }
}


.privacy-field { display: flex; justify-content: center; }
.privacy-label { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.9rem; cursor: pointer; }
.privacy-label span { flex: 1; min-width: 0; line-height: 1.5; }
.privacy-label a { color: var(--color-blue); text-decoration: underline; }

@media (max-width: 1080px) {
  .contact-grid { gap: 28px; }
}

@media (max-width: 640px) {
  .contact-grid { gap: 20px; margin-top: 28px; }
  .contact-options { gap: 12px; }
  .contact-card { min-height: 0; padding: 14px; gap: 12px; }
  .contact-icon { width: 40px; height: 40px; }
  .contact-info h3 { font-size: 0.9rem; margin-bottom: 4px; }
  .contact-info p { font-size: 0.85rem; margin-bottom: 10px; }
  .contact-info > a:not(.btn) { word-break: break-all; font-size: 0.88rem; }
  .form-card { padding: 18px; }
  .form-title { font-size: 1.1rem; }
  .form-subtitle { font-size: 0.85rem; margin-bottom: 14px; }
  .privacy-label { font-size: 0.82rem; }
}

@media (max-width: 380px) {
  .contact-card { padding: 12px; gap: 10px; }
  .contact-icon { width: 36px; height: 36px; }
  .contact-icon i { width: 18px; height: 18px; }
  .form-card { padding: 14px; }
}
