/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --accent: #2b8cc4;
  --accent-dark: #1a6a9a;
  --dark: #0b1622;
  --dark-card: #101d2e;
  --text: #1a1a2e;
  --text-light: #5a6377;
  --bg: #f8f9fc;
  --white: #ffffff;
  --border: #e2e6ee;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(36px, 5vw, 56px); }
h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: clamp(24px, 3.5vw, 42px); }
h4 { font-size: 32px; }
h5 { font-size: 24px; }
h6 { font-size: 18px; }

.body-small {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.5;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.5s; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: 80px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-sm);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header-logo img {
  width: 180px;
  height: auto;
  transition: transform var(--transition);
}

.header-logo:hover img {
  transform: scale(1.03);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width var(--transition);
}

.header-nav a:hover::after,
.header-nav a.active::after {
  width: 100%;
}

.header-nav a:hover {
  color: var(--accent);
}

.header-nav a.active {
  font-weight: 700;
  color: var(--accent);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hamburger {
  display: none;
}

.mobile-nav {
  display: none;
}

.header-phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(43, 140, 196, 0.08);
  color: var(--accent);
  transition: all var(--transition);
}

.header-phone-icon:hover {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.08);
}

.header-phone-icon svg {
  width: 18px;
  height: 18px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: var(--accent);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(43, 140, 196, 0.3);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary-dark {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: var(--dark);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary-dark:hover {
  background: #1a2a3e;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(11, 22, 34, 0.3);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
}

.hero-bg {
  position: absolute;
  inset: -30px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.15s ease-out;
  will-change: transform;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 22, 34, 0.78) 0%, rgba(11, 22, 34, 0.55) 50%, rgba(43, 140, 196, 0.25) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--white), transparent);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding-top: 120px;
  padding-bottom: 120px;
}

.hero-content {
  max-width: 640px;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 800;
  line-height: 1.1;
}

.hero-content h1 span {
  background: linear-gradient(135deg, #fff, #a8d8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.hero-text strong {
  font-weight: 700;
  color: var(--white);
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  margin-top: 28px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--transition);
}

.hero-phone:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-phone img, .hero-phone svg {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

.hero-phone a {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero-logo {
  max-width: 360px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-indicator .mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 13px;
  position: relative;
}

.scroll-indicator .mouse::before {
  content: '';
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ===== DIENSTLEISTUNGEN / SERVICES SECTION ===== */
.services-section {
  background: var(--bg);
  padding: 100px 0 120px;
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  border-radius: 2px;
}

.services-section .section-title {
  text-align: center;
  margin-bottom: 12px;
  margin-top: 20px;
}

.services-section .section-subtitle {
  text-align: center;
  margin-bottom: 60px;
  color: var(--text-light);
  font-size: 18px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(43, 140, 196, 0.2);
}

.service-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-img {
  transform: scale(1.05);
}

.service-card .card-body {
  padding: 24px;
}

.service-card h6 {
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 700;
}

.service-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
}

/* ===== CONTACT SECTION (on homepage) ===== */
.contact-section {
  background: var(--white);
  padding: 100px 0;
  position: relative;
}

.contact-section .container {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.contact-info {
  flex: 0 0 460px;
  max-width: 460px;
}

.contact-info h3 {
  margin-bottom: 20px;
}

.contact-info .desc {
  margin-bottom: 40px;
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.7;
}

.contact-info .label {
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
}

.contact-info .value {
  margin-bottom: 20px;
  font-size: 17px;
}

.contact-info .value a {
  text-decoration: none;
  color: var(--text);
  transition: color var(--transition);
}

.contact-info .value a:hover {
  color: var(--accent);
}

.contact-form-wrapper {
  flex: 1;
  background: var(--bg);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.contact-form-wrapper h3 {
  font-size: 20px;
  margin-bottom: 28px;
  font-weight: 700;
}

/* ===== FORMS ===== */
.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.form-group label .required {
  color: #e53e3e;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  outline: none;
  transition: all var(--transition);
  color: var(--text);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a0a8b8;
}

.form-group input:hover,
.form-group textarea:hover {
  border-color: #c0c8d8;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(43, 140, 196, 0.1);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-submit {
  margin-top: 16px;
}

.form-submit .btn-primary {
  width: 100%;
  padding: 16px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 80px 0 40px;
  color: rgba(255, 255, 255, 0.7);
}

.footer .container {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 48px;
  align-items: start;
}

.footer-logo img {
  width: 130px;
  margin-bottom: 16px;
  opacity: 0.9;
}

.footer-company h1 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 700;
}

.footer-company p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.footer-contact .body-small {
  margin-bottom: 16px;
  color: var(--white);
  letter-spacing: 2px;
}

.footer-contact p {
  margin-bottom: 10px;
}

.footer-contact a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-legal .body-small {
  margin-bottom: 16px;
  color: var(--white);
  letter-spacing: 2px;
}

.footer-legal p {
  margin-bottom: 12px;
}

.footer-legal a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--accent);
}

.footer-copyright {
  grid-column: 1 / -1;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 28px 32px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  z-index: 9999;
  text-align: left;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookie-banner p {
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-light);
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 10px 24px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  transition: all var(--transition);
}

.cookie-accept {
  background: var(--accent);
  color: var(--white);
}

.cookie-accept:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.cookie-decline {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid var(--border);
}

.cookie-decline:hover {
  background: var(--bg);
  border-color: #c0c8d8;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
}

.about-hero .hero-bg {
  position: absolute;
  inset: -30px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.15s ease-out;
  will-change: transform;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 22, 34, 0.82) 0%, rgba(11, 22, 34, 0.6) 50%, rgba(43, 140, 196, 0.2) 100%);
  z-index: 1;
}

.about-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--white), transparent);
  z-index: 2;
}

.about-hero .container {
  position: relative;
  z-index: 3;
  padding: 140px 24px 100px;
}

.about-content {
  max-width: 820px;
  text-align: center;
  margin: 0 auto;
}

.about-content h1 {
  color: var(--white);
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 32px;
  font-weight: 800;
  line-height: 1.15;
}

.about-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ===== KONTAKT PAGE ===== */
.kontakt-page {
  padding: 120px 0 100px;
}

.kontakt-page .container {
  display: flex;
  flex-direction: column;
}

.kontakt-header {
  margin-bottom: 50px;
}

.kontakt-header h1 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 16px;
  font-weight: 800;
}

.kontakt-header p {
  max-width: 700px;
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.7;
}

.kontakt-body {
  display: flex;
  gap: 48px;
}

.kontakt-form-area {
  flex: 1;
  background: var(--bg);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.kontakt-sidebar {
  flex: 0 0 380px;
}

.kontakt-sidebar-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin-bottom: 32px;
  box-shadow: var(--shadow-md);
}

.kontakt-sidebar h6 {
  margin-bottom: 12px;
  color: var(--text);
  font-weight: 700;
  font-size: 16px;
}

.kontakt-sidebar p {
  margin-bottom: 8px;
  color: var(--text-light);
}

.kontakt-sidebar a {
  color: var(--accent);
  transition: color var(--transition);
}

.kontakt-sidebar a:hover {
  color: var(--accent-dark);
}

.kontakt-sidebar .kontakt-detail-section {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.kontakt-sidebar .kontakt-detail-section:last-child {
  border-bottom: none;
}

/* ===== LEGAL PAGES (Impressum, Datenschutz, AGB) ===== */
.legal-page {
  padding: 120px 0 100px;
}

.legal-page .container {
  max-width: 860px;
}

.legal-page h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 40px;
  font-weight: 800;
}

.legal-page h2 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 16px;
  font-weight: 700;
  color: var(--text);
}

.legal-page h3 {
  font-size: 18px;
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-page p {
  margin-bottom: 14px;
  line-height: 1.75;
  color: var(--text-light);
}

.legal-page ul {
  margin-bottom: 14px;
  padding-left: 24px;
}

.legal-page ul li {
  list-style: disc;
  margin-bottom: 6px;
  color: var(--text-light);
  line-height: 1.7;
}

.legal-page a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.legal-page a:hover {
  border-bottom-color: var(--accent);
}

/* ===== PARALLAX SECTION ===== */
.parallax-section {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: -50px;
  background-size: cover;
  background-position: center;
  will-change: transform;
  transition: transform 0.1s linear;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .header-nav {
    display: none;
  }

  .header-right {
    display: none;
  }

  .header-logo img {
    width: 160px;
  }

  .hamburger {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
  }

  .hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
  }

  .mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    padding: 32px 24px;
  }

  .mobile-nav.open {
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: slideDown 0.3s ease-out;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .mobile-nav a {
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    transition: color var(--transition);
  }

  .mobile-nav a:hover {
    color: var(--accent);
  }

  .hero {
    min-height: 90vh;
  }

  .hero .container {
    flex-direction: column;
    text-align: left;
  }

  .hero-logo {
    display: none;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: clamp(28px, 6vw, 40px);
  }

  .hero-phone a {
    font-size: 18px;
  }

  .scroll-indicator {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .contact-section .container {
    flex-direction: column;
    gap: 40px;
  }

  .contact-info {
    flex: none;
    max-width: 100%;
  }

  .contact-form-wrapper {
    padding: 28px;
  }

  .footer .container {
    grid-template-columns: 1fr 1fr;
    text-align: left;
    gap: 32px;
  }

  .footer-logo {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
  }

  .footer-company {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-copyright {
    text-align: center;
  }

  .kontakt-body {
    flex-direction: column-reverse;
    gap: 32px;
  }

  .kontakt-sidebar {
    flex: none;
  }

  .kontakt-form-area {
    padding: 28px;
  }

  .about-content h1 {
    font-size: clamp(28px, 5vw, 40px);
  }
}

@media (max-width: 576px) {
  .btn-primary,
  .btn-primary-dark {
    padding: 14px 32px;
    font-size: 14px;
  }

  .hero {
    min-height: 85vh;
  }

  .hero .container {
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-section {
    padding: 60px 0 80px;
  }

  .contact-section {
    padding: 60px 0;
  }

  .contact-form-wrapper {
    padding: 20px;
  }

  .footer .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 20px;
  }

  .kontakt-page {
    padding: 100px 0 60px;
  }

  .kontakt-form-area {
    padding: 20px;
  }

  .legal-page {
    padding: 100px 0 60px;
  }
}
