/* =============================================================
   GLOBAL.CSS — Arguumedia
   Zawiera: variables, base, header, mobile-menu, nav-modal,
            page-transition, responsive, rocket-animation
   ============================================================= */

/* ── variables.css ────────────────────────────────────────── */
:root {
  /* Colors */
  --color-primary: #B30A18;
  --color-secondary: #3F4143;
  --color-text: #7A7A7A;
  --color-bg-light: #FAFAFA;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-dark: #222222;
  --color-darker: #1F1F1F;
  --color-red-light: #FFE6E8;
  --color-card-bg: rgba(8, 7, 21, 0.2);
  --color-card-hover: rgba(4, 12, 33, 0.8);
  --wechselwort-accent: #E53935;

  /* Fonts */
  --font-primary: "Poppins", sans-serif;
  --font-secondary: "Roboto", sans-serif;
  --font-accent: "Montserrat", sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.4s ease;
  --transition-slow: 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ── base.css ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Roboto:wght@400;500;700&family=Montserrat:wght@700;800;900&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-darker);
  overflow-x: hidden;
}

@media (pointer: fine) {
  body, * {
    cursor: url('/assets/images/cursor.svg') 3 2, auto !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-white);
}

h1 { font-size: clamp(2.5rem, 5vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }

p {
  color: var(--color-text);
  line-height: 1.8;
}

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

a:hover { color: var(--wechselwort-accent); }

button {
  font-family: var(--font-primary);
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
}

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container { padding: 0 1rem; }
}

section {
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.text-center  { text-align: center; }
.text-white   { color: var(--color-white); }
.text-primary { color: var(--color-primary); }

.highlight { color: var(--wechselwort-accent); }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: #0d0d0d;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 2rem 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.footer-col {
  flex: 1 1 180px;
  min-width: 0;
}

.footer-brand { flex: 1 1 220px; }

.footer-logo {
  height: 40px;
  margin-bottom: 0.85rem;
  display: block;
}

.footer-desc {
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  font-size: 0.85rem;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  flex-shrink: 0;
}

.footer-social a:hover {
  border-color: var(--color-primary);
  color: #fff;
  background: var(--color-primary);
}

.footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-word;
}

.footer-links a:hover { color: var(--color-primary); }

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  min-width: 0;
}

.footer-contact i {
  color: var(--color-primary);
  font-size: 0.9rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.footer-contact span,
.footer-contact a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  word-break: break-word;
  overflow-wrap: break-word;
  min-width: 0;
  line-height: 1.5;
}

.footer-contact a:hover { color: var(--color-primary); }

.footer-hours-label {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  margin-bottom: 0.65rem;
}

.footer-hours {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255,255,255,0.7);
  flex-wrap: wrap;
}

.footer-hours li span:first-child {
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-cta-btn {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s;
}

.footer-cta-btn:hover { color: #fff; }

@media (max-width: 640px) {
  .footer-inner { gap: 2rem; }
  .footer-col { flex: 1 1 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── header.css ───────────────────────────────────────────── */
.header-bottom-glass {
  position: fixed;
  left: 50%;
  bottom: calc(40px + env(safe-area-inset-bottom));
  transform: translateX(-50%) translateY(20px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  height: 50px;
  width: 900px;
  max-width: calc(100vw - 32px);
  padding: 6px 10px 6px 20px;
  border-radius: 1000px;
  background: rgba(20, 20, 30, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), inset 0 1px rgba(255, 255, 255, 0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.header-bottom-glass.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.header-logo {
  height: 60px;
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.header-logo img {
  height: 100%;
  width: auto;
}

.header-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex: 0 1 auto;
  white-space: nowrap;
}

.nav-item { position: relative; }

.nav-link {
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
  display: inline-block;
  padding: 8px 0;
}

@media (hover: hover) {
  .nav-link:hover {
    color: #ff0000;
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.6), 0 0 20px rgba(0, 0, 0, 0.3);
  }
}

.nav-submenu {
  position: absolute;
  bottom: 100%;
  left: 0;
  background: rgba(20, 20, 30, 0.95);
  border: 1px solid rgba(255, 0, 0, 0.2);
  border-radius: 8px;
  padding: 12px 0;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 10001;
  margin-bottom: 8px;
}

@media (hover: hover) {
  .nav-item::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    height: 8px;
  }
}

.nav-item:hover .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-submenu a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  padding: 10px 16px;
  transition: all var(--transition-fast);
  border-left: 3px solid transparent;
}

@media (hover: hover) {
  .nav-submenu a:hover {
    color: #ff0000;
    background: rgba(255, 0, 0, 0.1);
    border-left-color: #ff0000;
    padding-left: 20px;
  }
}

.header-cta {
  margin-left: auto;
  background: var(--color-white);
  color: var(--color-black);
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

@media (hover: hover) {
  .header-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }
}

.header-scroll-top {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  padding: 0;
  margin-right: 6px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-scroll-top img {
  width: 18px;
  height: 18px;
  display: block;
  pointer-events: none;
  transform: translateX(-2px);
}

@media (hover: hover) {
  .header-scroll-top:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: scale(1.08);
  }
}

.header-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10000;
  order: -1;
  margin-right: auto;
  padding: 8px 12px;
  transition: all var(--transition-fast);
  position: relative;
}

@media (hover: hover) {
  .header-mobile-toggle:hover { transform: scale(1.1); }
}

.header-mobile-toggle i {
  opacity: 1;
  transition: opacity 0.3s ease;
  display: inline-block;
}

.header-mobile-toggle::before {
  content: "✕";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-white);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.header-mobile-toggle.active i    { opacity: 0; }
.header-mobile-toggle.active::before { opacity: 1; }

@media (max-width: 768px) {
  .header-bottom-glass {
    width: auto;
    min-width: fit-content;
    bottom: calc(20px + env(safe-area-inset-bottom));
    padding: 8px 12px;
    gap: 8px;
  }

  .header-logo { height: 50px; margin-right: 10px; }

  .header-nav {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100vh;
    max-width: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 12px;
    background: rgb(15, 15, 25);
    padding: 80px 16px 120px;
    margin-top: 0;
    border-radius: 0;
    z-index: 9998;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out, visibility 0s linear 0.5s;
  }

  .header-nav .nav-item { width: 100%; }

  .header-nav.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out, visibility 0s linear 0s;
  }

  .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 0;
    border-bottom: 2px solid rgba(255, 0, 0, 0.2);
    font-size: 0.95rem;
  }

  .nav-item:has(.nav-submenu) .nav-link::after {
    content: "▼";
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    margin-left: 8px;
  }

  .nav-item.active .nav-link::after { transform: rotate(-180deg); }

  .nav-submenu {
    position: static;
    background: transparent;
    border: none;
    padding: 8px 0 12px 20px;
    min-width: auto;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    transition: max-height 0.3s ease;
    margin-top: 0;
  }

  .nav-item.active .nav-submenu {
    max-height: 500px;
    pointer-events: auto;
  }

  .nav-submenu a {
    display: block;
    padding: 8px 0;
    border: none;
    border-left: none;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-item.active .nav-submenu a { opacity: 1; transform: translateX(0); }

  .nav-item.active .nav-submenu a:nth-child(1) { transition-delay: 0.1s; }
  .nav-item.active .nav-submenu a:nth-child(2) { transition-delay: 0.15s; }
  .nav-item.active .nav-submenu a:nth-child(3) { transition-delay: 0.2s; }
  .nav-item.active .nav-submenu a:nth-child(4) { transition-delay: 0.25s; }
  .nav-item.active .nav-submenu a:nth-child(5) { transition-delay: 0.3s; }
  .nav-item.active .nav-submenu a:nth-child(6) { transition-delay: 0.35s; }

  .nav-submenu a:hover {
    color: #ff0000;
    background: transparent;
    border-left: none;
    padding-left: 0;
  }

  .header-cta {
    padding: 8px 16px;
    font-size: 0.85rem;
    flex: 1;
    text-align: center;
  }

  .header-mobile-toggle {
    display: block;
    margin-right: 0;
    padding: 6px 8px;
  }
}

/* ── mobile-menu.css (legacy overlay – kept for compatibility) */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(10, 10, 20, 0.95);
  backdrop-filter: blur(10px);
  z-index: 9998;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.active { opacity: 1; pointer-events: auto; }

.mobile-menu-content {
  width: 100%; height: 100%;
  padding: 80px 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  animation: slideDownMenu 0.4s ease-out;
}

@keyframes slideDownMenu {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mobile-nav { display: flex; flex-direction: column; gap: 1.5rem; }

.mobile-nav a {
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 10px 0;
  border-bottom: 2px solid rgba(255, 0, 0, 0.2);
}

.mobile-nav a:hover { color: #ff0000; border-bottom-color: rgba(255, 0, 0, 0.8); }

.mobile-nav-item { position: relative; }

.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.mobile-nav-toggle::after {
  content: '▼';
  font-size: 0.7rem;
  transition: transform 0.3s ease;
  margin-left: 10px;
}

.mobile-nav-toggle.active::after { transform: rotate(-180deg); }

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-submenu.active { max-height: 500px; }

.mobile-submenu a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 0 8px 20px;
  border-bottom: none;
  transition: color 0.3s ease;
}

.mobile-submenu a:hover { color: #ff0000; border-bottom: none; }

@media (min-width: 768px) {
  .mobile-menu { display: none !important; }
}

/* ── nav-modal.css ────────────────────────────────────────── */
.nav-link {
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link.active {
  color: #ff0000;
  text-shadow: 0 0 20px rgba(255, 0, 0, 0.8), 0 0 40px rgba(255, 0, 0, 0.5);
  font-weight: 700;
}

.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.visible { opacity: 1; pointer-events: auto; }

.modal-container {
  background: linear-gradient(135deg, rgba(20, 20, 30, 0.95), rgba(50, 50, 80, 0.8));
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 20px;
  padding: 3rem;
  max-width: 700px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  color: white;
}

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 10001;
}

.modal-close:hover { color: #ff1a1a; text-shadow: 0 0 10px rgba(255, 26, 26, 0.6); }

.modal-content h2 { color: white; margin-bottom: 1rem; font-size: 2rem; }
.modal-content p  { color: rgba(255, 255, 255, 0.9); line-height: 1.8; font-size: 1rem; }

@media (max-width: 768px) {
  .modal-container { padding: 2rem; margin: 1rem; }
  .modal-content h2 { font-size: 1.5rem; }
}

/* ── page-transition.css ──────────────────────────────────── */
#page-flip-overlay {
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: #0d0d0d;
  pointer-events: none;
  opacity: 0;
}

@keyframes overlayFlipIn {
  0%   { opacity: 0; transform: perspective(1200px) rotateY(-90deg); }
  100% { opacity: 1; transform: perspective(1200px) rotateY(0deg); }
}

@keyframes overlayFlipOut {
  0%   { opacity: 1; transform: perspective(1200px) rotateY(0deg); }
  100% { opacity: 0; transform: perspective(1200px) rotateY(90deg); }
}

#page-flip-overlay.flip-entering {
  animation: overlayFlipIn 0.55s cubic-bezier(0.55, 0, 0.7, 0.3) forwards;
}

#page-flip-overlay.flip-leaving {
  opacity: 1;
  animation: overlayFlipOut 0.65s cubic-bezier(0.3, 0, 0.2, 1) 0.5s forwards;
}

@keyframes headerSlideDown {
  from { transform: translateX(-50%) translateY(0); }
  to   { transform: translateX(-50%) translateY(200px); }
}

@keyframes headerSlideUp {
  from { transform: translateX(-50%) translateY(200px); }
  to   { transform: translateX(-50%) translateY(0); }
}

#header.header-leaving { animation: headerSlideDown 0.3s ease-in forwards; }
#header.header-arriving { animation: headerSlideUp 0.3s ease-out 0.5s forwards; }

/* ── responsive.css ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 1.5rem; }
  .bricks-grid, .cards-grid, .projects-grid, .testimonials-grid { gap: 1.5rem; }
  .emr-brick__title { font-size: clamp(28px, 6vw, 48px); }
  h2 { font-size: clamp(1.75rem, 3.5vw, 3rem); }
}

@media (max-width: 768px) {
  body { font-size: 0.95rem; }
  section { padding: clamp(2.5rem, 5vw, 4rem) 0; }
  .container { padding: 0 1rem; }
  h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
  h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
  h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
  .hero-text   { font-size: clamp(1.5rem, 4vw, 2.25rem); }
  .hero-subtitle { font-size: 0.95rem; }
  .bricks-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .cards-grid  { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(5, auto); gap: 0.75rem; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .form-row    { grid-template-columns: 1fr; gap: 1rem; }
  .header-bottom-glass { width: calc(100vw - 40px); bottom: calc(20px + env(safe-area-inset-bottom)); padding: 8px 14px; height: 70px; gap: 8px; }
  .header-logo { height: 45px; margin-right: 5px; }
  .header-nav  { gap: 12px; }
  .header-nav a { font-size: 0.9rem; }
  .header-cta  { padding: 8px 18px; font-size: 0.85rem; }
  .card        { min-height: 250px; }
  .card-content { padding: 1rem; }
  .card-title  { font-size: 1.1rem; }
  .card-description { font-size: 0.85rem; }
  .emr-brick__front { min-height: 200px; }
  .emr-brick__title { font-size: clamp(24px, 5vw, 36px); }
  .emr-brick__icon  { width: clamp(60px, 10vw, 90px); height: clamp(60px, 10vw, 90px); }
  .filters     { gap: 0.75rem; margin-bottom: 2rem; }
  .filter-btn  { padding: 8px 16px; font-size: 0.8rem; }
  .form-input, .form-textarea { padding: 10px 12px; font-size: 0.95rem; }
  .form-submit { padding: 12px 24px; font-size: 0.95rem; }
  .cta-socials { gap: 1rem; }
  .cta-social-link, .contact-social-link { width: 45px; height: 45px; font-size: 1.1rem; }
  .contact-info-value { font-size: 1rem; }
  .contact-socials { gap: 1rem; }
  .video-play-btn { width: 50px; height: 50px; }
  .video-play-btn::after { font-size: 1rem; }
  .intro-section { text-align: center; }
  .intro-section h2, .intro-section p { padding: 0 1rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 0.75rem; }
  .header-bottom-glass { width: calc(100vw - 20px); padding: 8px 12px; }
  .hero-text { font-size: clamp(1.25rem, 3vw, 1.75rem); }
  .cta-subtitle, .testimonials-description { font-size: 0.9rem; }
  .filters   { gap: 0.5rem; }
  .filter-btn { padding: 6px 12px; font-size: 0.75rem; }
  .projects-grid { gap: 1rem; }
  .project-image { height: 200px; }
}

/* ── rocket-animation.css ─────────────────────────────────── */
.rocket-scene {
  position: fixed;
  inset: 0;
  background: rgba(82, 82, 82, 0.5);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99997;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.rocket-scene.is-visible { opacity: 1; }

.rocket-wrap {
  position: relative;
  z-index: 10;
  animation: rocketHover 0.2s ease infinite;
}

.rocket-wrap img {
  width: 72px;
  height: auto;
  display: block;
  transform: rotate(-45deg);
}

.rocket-wrap::before,
.rocket-wrap::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 200px;
  background: linear-gradient(to bottom, #00d0ff, transparent);
}

.rocket-wrap::after { filter: blur(20px); }

.rocket-scene .star {
  position: absolute;
  top: -250px;
  background: rgba(255, 255, 255, 0.5);
  animation: starFall linear infinite;
}

@keyframes rocketHover {
  0%, 100% { transform: translateY(-2px); }
  50%       { transform: translateY(2px); }
}

@keyframes starFall {
  0%   { transform: translateY(0); }
  100% { transform: translateY(200vh); }
}

@keyframes rocketLaunch {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(-90vh); opacity: 1; }
  100% { transform: translateY(-120vh); opacity: 0; }
}

.rocket-wrap.launching { animation: rocketLaunch 0.9s ease-in forwards; }
