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

/* ─── DARK THEME (default) ────────────────────────────── */
:root {
  --bg:        #000000;
  --bg-1:      #0a0a0a;
  --bg-2:      #111111;
  --bg-3:      #1c1c1e;
  --bg-4:      #2c2c2e;
  --blue:      #0a84ff;
  --blue-dark: #0060d0;
  --amber:     #ff9f0a;
  --green:     #30d158;
  --text:      #ffffff;
  --text-2:    #ebebf5cc;
  --text-3:    #ebebf599;
  --text-4:    #8e8e93;
  --border:    rgba(255,255,255,0.08);
  --border-2:  rgba(255,255,255,0.12);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;
  --nav-height: 68px;

  /* theme-aware nav + ui tokens */
  --nav-bg:            rgba(24, 24, 26, 0.78);
  --nav-bg-scrolled:   rgba(16, 16, 18, 0.88);
  --nav-inset:         rgba(255,255,255,0.05);
  --nav-link-hover-bg: rgba(255,255,255,0.09);
  --mobile-menu-bg:    rgba(0, 0, 0, 0.97);
  --map-filter:        invert(0.88) hue-rotate(180deg) saturate(0.7) brightness(0.9);

  /* liquid-glass nav tokens */
  --nav-glass-border-top:    rgba(255,255,255,0.45);
  --nav-glass-border-bottom: rgba(255,255,255,0.06);
  --nav-glass-top:           rgba(255,255,255,0.16);
  --nav-glass-bottom:        rgba(0,0,0,0.30);
  --nav-sheen:               rgba(255,255,255,0.12);

  color-scheme: dark;
}

/* ─── LIGHT THEME ─────────────────────────────────────── */
html[data-theme="light"] {
  --bg:        #ffffff;
  --bg-1:      #f5f5f7;
  --bg-2:      #e8e8ed;
  --bg-3:      #d1d1d6;
  --bg-4:      #aeaeb2;
  --text:      #1d1d1f;
  --text-2:    rgba(29,29,31,0.80);
  --text-3:    rgba(29,29,31,0.60);
  --text-4:    #6e6e73;
  --border:    rgba(0,0,0,0.08);
  --border-2:  rgba(0,0,0,0.14);

  --nav-bg:            rgba(250, 250, 252, 0.70);
  --nav-bg-scrolled:   rgba(247, 247, 249, 0.85);
  --nav-inset:         rgba(0,0,0,0.04);
  --nav-link-hover-bg: rgba(0,0,0,0.06);
  --mobile-menu-bg:    rgba(248, 248, 250, 0.98);
  --map-filter:        brightness(0.97) saturate(1.05);

  /* liquid-glass nav tokens */
  --nav-glass-border-top:    rgba(255,255,255,0.95);
  --nav-glass-border-bottom: rgba(0,0,0,0.10);
  --nav-glass-top:           rgba(255,255,255,0.85);
  --nav-glass-bottom:        rgba(0,0,0,0.06);
  --nav-sheen:               rgba(255,255,255,0.55);

  color-scheme: light;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.3s ease, color 0.2s ease;
}

/* ─── NAV (liquid glass) ───────────────────────────────── */
nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: calc(100% - 48px);
  max-width: 1100px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 20px;
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  background:
    linear-gradient(var(--nav-bg), var(--nav-bg)) padding-box,
    linear-gradient(180deg, var(--nav-glass-border-top), var(--nav-glass-border-bottom)) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius-xl);
  box-shadow:
    0 10px 40px rgba(0,0,0,0.22),
    inset 0 1px 0 var(--nav-glass-top),
    inset 0 -1px 0 var(--nav-glass-bottom);
  overflow: hidden;
  transition: background 0.3s, box-shadow 0.3s;
}

nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--nav-sheen) 0%, transparent 50%);
  pointer-events: none;
}

nav.scrolled {
  background:
    linear-gradient(var(--nav-bg-scrolled), var(--nav-bg-scrolled)) padding-box,
    linear-gradient(180deg, var(--nav-glass-border-top), var(--nav-glass-border-bottom)) border-box;
  box-shadow:
    0 14px 48px rgba(0,0,0,0.28),
    inset 0 1px 0 var(--nav-glass-top),
    inset 0 -1px 0 var(--nav-glass-bottom);
}

.nav-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.nav-inner .nav-links { justify-content: center; }

.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 38px; width: auto; filter: brightness(1.1); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: var(--nav-link-hover-bg);
}

/* ─── NAV RIGHT (call + toggle + hamburger) ───────────── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
}

.btn-nav-call {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-nav-call:hover { background: var(--blue-dark); transform: scale(1.03); }
.btn-nav-call svg { width: 16px; height: 16px; }

/* ─── THEME TOGGLE BUTTON ─────────────────────────────── */
.theme-toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-2);
  background: var(--bg-3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  transition: background 0.2s, color 0.2s, transform 0.15s, border-color 0.2s;
  flex-shrink: 0;
}
.theme-toggle:hover {
  background: var(--bg-4);
  color: var(--text);
  transform: scale(1.1);
}
.theme-toggle svg { width: 16px; height: 16px; pointer-events: none; }

/* Dark → sun icon visible; Light → moon icon visible */
.theme-toggle .icon-sun  { display: block; }
.theme-toggle .icon-moon { display: none; }
html[data-theme="light"] .theme-toggle .icon-sun  { display: none; }
html[data-theme="light"] .theme-toggle .icon-moon { display: block; }

/* ─── HAMBURGER ───────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
  border: none;
  background: transparent;
}

.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── MOBILE MENU ─────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 998;
  background: var(--mobile-menu-bg);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 40px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  padding: 10px 0;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--blue); }

.mobile-menu .btn-call-big {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  text-decoration: none;
}

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
  border: none;
}

.btn:hover { transform: scale(1.03); }
.btn:active { transform: scale(0.98); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 4px 20px rgba(10,132,255,0.35); }
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 6px 30px rgba(10,132,255,0.5); }

.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); }

.btn-white { background: #fff; color: #0050c8; }
.btn-white:hover { background: rgba(255,255,255,0.92); }

.btn-ghost-white { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.btn-ghost-white:hover { background: rgba(255,255,255,0.22); }

/* ─── LAYOUT ──────────────────────────────────────────── */
section { padding: 100px 24px; }

.container { max-width: 1200px; margin: 0 auto; }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(10,132,255,0.10);
  border: 1px solid rgba(10,132,255,0.22);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

h1, h2, h3, h4 { letter-spacing: -0.02em; line-height: 1.1; }
h1 { font-size: clamp(44px, 7vw, 80px); font-weight: 900; }
h2 { font-size: clamp(32px, 5vw, 56px); font-weight: 800; }
h3 { font-size: clamp(20px, 3vw, 28px); font-weight: 700; }
h4 { font-size: 18px; font-weight: 700; }
p { color: var(--text-2); line-height: 1.75; }

/* ─── PAGE HERO (subpages) ────────────────────────────── */
.page-hero {
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  padding: 0 24px 80px;
  position: relative;
  overflow: hidden;
}

.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.4) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-top: calc(var(--nav-height) + 60px);
  color: #fff;
}

.page-hero-content h1 { color: #fff; }
.page-hero-content p  { color: rgba(255,255,255,0.85); }
.page-hero-content .section-badge { color: var(--blue); }
.page-hero-content .btn { margin-top: 28px; }

/* ─── TWO COLUMN ──────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.section-text p { font-size: 17px; margin-bottom: 16px; }
.section-text p:last-of-type { margin-bottom: 32px; }

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-2);
}

.feature-list li::before {
  content: '';
  display: block;
  width: 20px; height: 20px; min-width: 20px;
  background: rgba(10,132,255,0.15);
  border-radius: 50%;
  position: relative;
  top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%230a84ff'%3E%3Cpath fill-rule='evenodd' d='M16.704 4.153a.75.75 0 01.143 1.052l-8 10.5a.75.75 0 01-1.127.075l-4.5-4.5a.75.75 0 011.06-1.06l3.894 3.893 7.48-9.817a.75.75 0 011.05-.143z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

.section-img {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.section-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-xl);
}

.section-img .img-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.img-badge-icon { font-size: 28px; }
.img-badge-text { font-size: 12px; color: rgba(255,255,255,0.65); }
.img-badge-title { font-size: 15px; font-weight: 700; color: #fff; }

/* ─── SERVICE CARDS ───────────────────────────────────── */
.service-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

.service-card-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }

.service-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }

.service-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 24px;
}

.service-card h3 { font-size: 20px; margin-bottom: 10px; }
.service-card p { font-size: 14px; line-height: 1.65; flex: 1; }

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 20px;
  transition: gap 0.2s;
}

.service-card:hover .service-card-link { gap: 10px; }

/* ─── INFO CARDS ──────────────────────────────────────── */
.info-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: transform 0.25s, border-color 0.25s;
}

.info-card:hover { transform: translateY(-4px); border-color: var(--border-2); }
.info-card-icon { font-size: 40px; margin-bottom: 20px; }
.info-card h4 { margin-bottom: 10px; }
.info-card p { font-size: 14px; line-height: 1.65; }

.price-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,159,10,0.12);
  border: 1px solid rgba(255,159,10,0.25);
  color: var(--amber);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-top: 16px;
}

/* ─── GALLERY ─────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 12px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s;
}

.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover::after { background: rgba(0,0,0,0.12); }

/* ─── ABOUT STATS ────────────────────────────────────── */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.about-stat-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.about-stat-num {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, #0a84ff, #30d158);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-stat-label { font-size: 13px; color: var(--text-3); margin-top: 6px; }

/* ─── CONTACT ─────────────────────────────────────────── */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

.contact-items { display: flex; flex-direction: column; gap: 16px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}

.contact-item:hover { border-color: var(--border-2); transform: translateX(4px); }

.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item-label { font-size: 12px; color: var(--text-4); }
.contact-item-value { font-size: 16px; font-weight: 600; }

.social-links { display: flex; gap: 12px; margin-top: 24px; }

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  transition: background 0.2s, color 0.2s;
}

.social-link:hover { background: var(--bg-3); color: var(--text); }

.contact-form-wrap {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.contact-form-wrap h3 { margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group.full { grid-column: span 2; }

label { font-size: 13px; font-weight: 600; color: var(--text-3); letter-spacing: 0.3px; }

input, textarea, select {
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-md);
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  padding: 14px 16px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input::placeholder, textarea::placeholder { color: var(--text-4); }
input:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(10,132,255,0.15); }
textarea { resize: vertical; min-height: 120px; }

.form-submit { width: 100%; justify-content: center; font-size: 15px; }
.form-note { text-align: center; font-size: 12px; color: var(--text-4); margin-top: 12px; }

/* ─── MAP ─────────────────────────────────────────────── */
.map-strip { background: var(--bg-1); padding: 0; }
.map-strip iframe {
  display: block;
  width: 100%; height: 420px;
  border: none;
  filter: var(--map-filter);
  transition: filter 0.3s;
}

/* ─── CTA BANNER ──────────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 80px 24px;
  text-align: center;
  overflow: hidden;
  background-color: #1a5fc4;
  background-image:
    radial-gradient(circle at var(--glow-x, 20%) var(--glow-y, 30%), #7ec4ff 0%, transparent 60%),
    radial-gradient(circle at 90% 15%, rgba(212,59,51,0.35) 0%, transparent 45%),
    radial-gradient(circle at 90% 90%, #0d3a80 0%, transparent 65%);
  animation: ctaGlowDrift 22s ease-in-out infinite;
}

@property --glow-x {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 20%;
}
@property --glow-y {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 30%;
}

@keyframes ctaGlowDrift {
  0%, 100% { --glow-x: 15%; --glow-y: 25%; }
  50%      { --glow-x: 35%; --glow-y: 45%; }
}

@media (prefers-reduced-motion: reduce) {
  .cta-banner { animation: none; }
}

.cta-banner-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-banner h2 { font-size: clamp(28px, 5vw, 48px); color: #fff; margin-bottom: 16px; text-shadow: 0 2px 16px rgba(0,0,0,0.35); }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 18px; margin-bottom: 36px; text-shadow: 0 2px 12px rgba(0,0,0,0.35); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ─── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding: 60px 24px 36px;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 52px;
}

.footer-brand img { height: 40px; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 14px; color: var(--text-4); line-height: 1.7; max-width: 280px; }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-4);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col a, .footer-col li {
  color: var(--text-3);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--text); }

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

.footer-bottom p { font-size: 13px; color: var(--text-4); }

/* ─── FLOATING CALL ───────────────────────────────────── */
.floating-call {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #000;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(48,209,88,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.floating-call:hover { transform: scale(1.06); box-shadow: 0 12px 40px rgba(48,209,88,0.55); }
.floating-call svg { width: 20px; height: 20px; }

/* ─── ANIMATIONS ──────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .two-col.reverse { direction: ltr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 180px); }
  .gallery-item:first-child { grid-column: span 2; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .kontakt-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 80px 20px; }
  .nav-inner { display: flex; justify-content: space-between; }
  .nav-links, .btn-nav-call { display: none; }
  .hamburger { display: flex; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .info-grid-3 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .page-hero { min-height: 50vh; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
  .about-stats { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .floating-call span { display: none; }
  .floating-call { padding: 16px; border-radius: 50%; }
}
