/* ============================================================
   Future Industries – Custom CSS
   Font: Montserrat | Primary: #d90a2c | Dark: #111111
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #111111;
  background: #0a0a0a;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

::selection {
  background: #fcb3bf;
}

/* ── Utility ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.content-narrow {
  max-width: 860px;
}

.text-center {
  text-align: center;
}

.red-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #d90a2c;
  margin-bottom: 1rem;
}

.section-heading {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin-bottom: 2.5rem;
}

.body-text {
  font-size: 1rem;
  line-height: 1.75;
  color: #aaaaaa;
  margin-bottom: 2.5rem;
}

/* ── Gradient text utility ── */
.gradient-text {
  background: linear-gradient(135deg, #d90a2c, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Glow effects ── */
.glow-red {
  box-shadow: 0 0 60px rgba(217, 10, 44, 0.15);
}

/* ── Glass card ── */
.glass-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 16px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links li.sep {
  color: #cccccc;
  padding: 0 0.75rem;
  font-size: 0.85rem;
  user-select: none;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #999999;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #d90a2c;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #d90a2c;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  z-index: 999;
  padding: 1.5rem 2rem 2rem;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: #cccccc;
  transition: color 0.2s;
}

.mobile-link:hover {
  color: #d90a2c;
}

/* ============================================================
   SIDE ELEMENTS
   ============================================================ */
.side-scroll,
.side-follow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.side-scroll {
  left: 1.25rem;
}

.side-scroll a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.side-follow {
  right: 1.25rem;
}

.side-text {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #555555;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.side-line {
  width: 1px;
  height: 60px;
  background: #cccccc;
}

.side-icons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.side-icons a {
  width: 18px;
  height: 18px;
  color: #555555;
  transition: color 0.2s;
}

.side-icons a:hover {
  color: #d90a2c;
}

.side-icons svg {
  width: 100%;
  height: 100%;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  margin-top: 72px;
  overflow: hidden;
  background: #0a0a0a;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Fallback gradient if no image */
.hero-photo-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  z-index: 0;
}

.hero-blob-wrap {
  position: absolute;
  right: -4vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42vw;
  height: 42vw;
  min-width: 360px;
  min-height: 360px;
}

.hero-blob {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d90a2c 0%, #a00820 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 80px rgba(217, 10, 44, 0.3);
}

.hero-blob-text {
  padding: 12% 18% 12% 12%;
  width: 100%;
  text-align: left;
}

.hero-blob-text h1 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.hero-services {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero-tagline {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

/* ============================================================
   FOUNDER (inside hero)
   ============================================================ */
.hero-founder {
  position: absolute;
  left: 12vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

/* Photo with animated ring */
.founder-photo-wrap {
  position: relative;
  flex-shrink: 0;
  width: 140px;
  height: 140px;
}

.founder-photo-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #d90a2c;
  border-right-color: rgba(217, 10, 44, 0.3);
  animation: ring-spin 4s linear infinite;
}

@keyframes ring-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.founder-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 25%;
  border: 3px solid rgba(255,255,255,0.08);
}

/* Quote + Info */
.founder-content {
  flex: 1;
}

.founder-quote {
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  font-weight: 500;
  font-style: italic;
  color: #cccccc;
  line-height: 1.7;
  border-left: 3px solid #d90a2c;
  padding-left: 1.25rem;
}

.founder-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.founder-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
}

.founder-role {
  font-size: 0.8rem;
  font-weight: 600;
  color: #d90a2c;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.founder-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  color: #999;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.founder-tags span:hover {
  border-color: rgba(217, 10, 44, 0.4);
  color: #d90a2c;
}

@media (max-width: 1024px) {
  .hero-founder {
    left: 4vw;
    max-width: 320px;
  }
}

@media (max-width: 768px) {
  .hero-founder {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    max-width: 100%;
    padding: 2rem;
    align-items: center;
    text-align: center;
  }

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

  .hero-blob-wrap {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    align-self: flex-end;
    margin-right: -60px;
    margin-top: -40px;
  }

  .founder-quote {
    border-left: none;
    padding-left: 0;
    border-top: 3px solid #d90a2c;
    padding-top: 1rem;
  }

  .founder-info {
    align-items: center;
  }

  .founder-tags {
    justify-content: center;
  }
}

/* ============================================================
   MISSION BAND
   ============================================================ */
.mission-band {
  background: linear-gradient(180deg, #141418 0%, #1a1a22 100%);
  padding: 4rem 0;
  border-top: 1px solid rgba(217, 10, 44, 0.15);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* ============================================================
   ABOUT / PERSONAL BRANDING
   ============================================================ */
.about-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #12121a 0%, #18182a 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-left .red-heading {
  margin-bottom: 1.5rem;
}

.about-left .body-text {
  margin-bottom: 2rem;
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.expertise-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.25rem;
  transition: border-color 0.3s;
}

.expertise-item:hover {
  border-color: rgba(217, 10, 44, 0.3);
}

.expertise-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: #d90a2c;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.expertise-item p {
  font-size: 0.78rem;
  color: #999;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

.mission-band p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* ============================================================
   CONTENT SECTION (Story + AI)
   ============================================================ */
.content-section {
  padding: 5rem 0;
  background: #0e0e12;
}

.content-section .container {
  display: flex;
  flex-direction: column;
}

.story-heading {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, #d90a2c, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

/* ============================================================
   DARK BANDS
   ============================================================ */
.dark-band {
  background: linear-gradient(180deg, #161620 0%, #1c1c28 100%);
  padding: 4rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.band-sub {
  font-size: 1rem;
  color: #cccccc;
  margin-top: 0.5rem;
}

.band-body {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.75;
  margin-top: 1.5rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.venture-band {
  padding: 5rem 0;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  padding: 5rem 0;
  background: #0e0e12;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #111118;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.3s ease;
}

.service-card:hover {
  border-color: rgba(217, 10, 44, 0.3);
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover img {
  transform: scale(1.04);
}

.card-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.card-fallback-1 { background: linear-gradient(160deg, #1a1020, #3a1535); }
.card-fallback-2 { background: linear-gradient(160deg, #0a1a2a, #15355b); }
.card-fallback-3 { background: linear-gradient(160deg, #1a0a2a, #351568); }

.card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.card-overlay h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.card-overlay p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.services-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 0.9rem 2.25rem;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}

.btn-dark {
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.15);
}

.btn-dark:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-red {
  background: #d90a2c;
  color: #ffffff;
}

.btn-red:hover {
  background: #b5001f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217,10,44,0.35);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 5rem 0;
  background: #12121a;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.cta-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050508;
  color: #cccccc;
  padding: 4rem 0 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1.5fr auto;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: #d90a2c;
}

.footer-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.footer-col address {
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: #cccccc;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #d90a2c;
}

.footer-contact-link {
  font-size: 0.875rem;
  color: #cccccc;
  transition: color 0.2s;
}

.footer-contact-link:hover {
  color: #d90a2c;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid #444444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cccccc;
  transition: all 0.2s;
}

.footer-social-icon svg {
  width: 16px;
  height: 16px;
}

.footer-social-icon:hover {
  border-color: #d90a2c;
  color: #d90a2c;
}

.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding: 1.25rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #666666;
  width: 100%;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-blob-wrap {
    width: 65%;
  }

  .side-scroll,
  .side-follow {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    min-height: 85vw;
  }

  .hero-blob-wrap {
    right: -80px;
    width: 380px;
    height: 380px;
    min-width: unset;
    min-height: unset;
  }

  .hero-blob-text h1 {
    font-size: 2rem;
  }

  .hero-blob-text {
    padding: 12% 38% 12% 10%;
  }

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

  .service-card {
    aspect-ratio: 16 / 9;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-blob-text h1 {
    font-size: 2.5rem;
  }

  .story-heading {
    font-size: 2.25rem;
  }
}

/* ============================================================
   SUBPAGE STYLES
   ============================================================ */

/* Subpage Hero */
.subpage-hero {
  margin-top: 72px;
  background: linear-gradient(180deg, #0a0a0a 0%, #0d0d18 100%);
  padding: 6rem 2rem 5rem;
  text-align: center;
  border-bottom: 1px solid rgba(217, 10, 44, 0.15);
}

.subpage-hero-inner h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.subpage-hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #d90a2c;
  font-weight: 600;
}

/* Subpage Sections */
.subpage-section {
  padding: 5rem 0;
  background: #0e0e12;
}

.subpage-section.bg-light {
  background: #141420;
}

/* ── Creative Studio: Service Detail Cards ── */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-detail-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-detail-card:hover {
  box-shadow: 0 12px 40px rgba(217, 10, 44, 0.08);
  border-color: rgba(217, 10, 44, 0.2);
  transform: translateY(-4px);
}

.sdc-icon {
  width: 40px;
  height: 40px;
  color: #d90a2c;
  margin-bottom: 1.25rem;
}

.sdc-icon svg {
  width: 100%;
  height: 100%;
}

.service-detail-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.service-detail-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #999;
  margin-bottom: 1rem;
}

.sdc-list {
  list-style: none;
  padding: 0;
}

.sdc-list li {
  font-size: 0.85rem;
  color: #bbb;
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.sdc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d90a2c;
}

/* ── Unsere Werte: Value Cards ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.value-card {
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.value-card:hover {
  box-shadow: 0 12px 40px rgba(217,10,44,0.08);
  border-color: rgba(217,10,44,0.2);
  transform: translateY(-4px);
}

.value-number {
  font-size: 3rem;
  font-weight: 900;
  color: #d90a2c;
  opacity: 1;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.value-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.value-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #999;
}

/* ── Mentoring: Facts Grid ── */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.fact-item {
  text-align: center;
  padding: 1.25rem;
  border: 1px solid #333;
  border-radius: 8px;
}

.fact-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  display: block;
  margin-bottom: 0.5rem;
}

.fact-value {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
}

/* ── Mentoring: Module Cards ── */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.module-card {
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  border-top: 4px solid #d90a2c;
  border-left: 1px solid rgba(255,255,255,0.06);
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.module-num {
  font-size: 2rem;
  font-weight: 900;
  color: #d90a2c;
  opacity: 0.25;
  margin-bottom: 0.5rem;
}

.module-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #ffffff;
}

.module-sub {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  margin: 1rem 0 0.5rem;
}

.module-card ul {
  list-style: none;
  padding: 0;
}

.module-card li {
  font-size: 0.85rem;
  color: #bbb;
  padding: 0.3rem 0 0.3rem 1.25rem;
  position: relative;
}

.module-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d90a2c;
}

/* ── Mentoring: Trip Cards ── */
.trips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trip-card {
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.3s ease;
}

.trip-card:hover {
  box-shadow: 0 8px 30px rgba(217,10,44,0.08);
  border-color: rgba(217,10,44,0.2);
}

.trip-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  color: #ffffff;
}

.trip-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #d90a2c;
  margin-bottom: 1rem;
}

.trip-card ul {
  list-style: none;
  padding: 0;
}

.trip-card li {
  font-size: 0.8rem;
  color: #bbb;
  padding: 0.25rem 0 0.25rem 1rem;
  position: relative;
}

.trip-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d90a2c;
}

/* ── Kontakt: Form ── */
.contact-form {
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #555;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: #ffffff;
  background: rgba(255,255,255,0.04);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d90a2c;
  box-shadow: 0 0 0 3px rgba(217,10,44,0.15);
}

.form-success {
  text-align: center;
  padding: 2rem;
  background: rgba(217, 10, 44, 0.08);
  border: 1px solid rgba(217, 10, 44, 0.2);
  border-radius: 12px;
  margin-top: 2rem;
}

.form-success p {
  color: #ff6b6b;
  font-weight: 600;
}

/* ── Kontakt: Info Grid ── */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.ci-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 0.5rem;
}

.ci-item p {
  color: #cccccc;
  font-size: 0.9rem;
}

.ci-item a {
  color: #cccccc;
  transition: color 0.2s;
}

.ci-item a:hover {
  color: #d90a2c;
}

/* ── Subpage Responsive ── */
@media (max-width: 768px) {
  .services-detail-grid,
  .values-grid,
  .modules-grid {
    grid-template-columns: 1fr;
  }

  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trips-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .facts-grid {
    grid-template-columns: 1fr;
  }

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