/* ============================================================
   AlpineTech AI — Modern Redesign
   Color palette: Light/grey base, #C0392B red accent, dark text
   ============================================================ */

:root {
  --red: #C0392B;
  --accent: #C0392B;
  --red-dark: #a93226;
  --red-light: #e74c3c;
  --dark: #1a1a2e;
  --dark-2: #16213e;
  --grey-900: #111827;
  --grey-800: #1f2937;
  --grey-700: #374151;
  --grey-600: #4b5563;
  --grey-500: #6b7280;
  --grey-400: #9ca3af;
  --grey-300: #d1d5db;
  --grey-200: #e5e7eb;
  --grey-100: #f3f4f6;
  --grey-50: #f9fafb;
  --white: #ffffff;
  --font-main: 'Inter', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.14);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET & BASE ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-main);
  color: var(--grey-800);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  /* Full-page scroll snap — desktop only */
  scroll-snap-type: y mandatory;
  scroll-padding-top: 0px;
  height: 100vh;
  overflow-y: scroll;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.step-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---- CONTAINER ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- SECTION BASE ---- */
.section {
  padding: 100px 0;
  position: relative;
  /* Full-viewport height — each section fills the screen */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-snap-align: start;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(192, 57, 43, 0.08);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-label.light {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.15);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--grey-900);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-title.light {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--grey-600);
  max-width: 640px;
  margin-bottom: 60px;
}

.section-subtitle.light {
  color: rgba(255, 255, 255, 0.8);
}

.accent {
  color: var(--red);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(192, 57, 43, 0.35);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(192, 57, 43, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--grey-800);
  border: 2px solid var(--grey-300);
}

.btn-outline-dark:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: column;
  align-items: flex-start;
}

.logo-icon {
  font-size: 1.4rem;
  color: var(--red);
  line-height: 1;
  display: none;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
  line-height: 1.1;
}

#navbar.scrolled .logo-text {
  color: var(--grey-900);
}

.logo-accent {
  color: var(--white);
  transition: var(--transition);
}

#navbar.scrolled .logo-accent {
  color: var(--grey-900);
}

.logo-tagline {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  font-weight: 400;
  transition: var(--transition);
}

#navbar.scrolled .logo-tagline {
  color: var(--grey-500);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

#navbar.scrolled .nav-link {
  color: var(--grey-700);
}

#navbar.scrolled .nav-link:hover,
#navbar.scrolled .nav-link.active {
  color: var(--red);
  background: rgba(192, 57, 43, 0.08);
}

.nav-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

#navbar.scrolled .nav-lang {
  color: var(--grey-400);
}

.lang-btn {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  padding: 4px 8px;
  border-radius: 4px;
  transition: var(--transition);
}

.lang-btn.active,
.lang-btn:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

#navbar.scrolled .lang-btn {
  color: var(--grey-600);
}

#navbar.scrolled .lang-btn.active,
#navbar.scrolled .lang-btn:hover {
  color: var(--red);
  background: rgba(192, 57, 43, 0.08);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

#navbar.scrolled .hamburger span {
  background: var(--grey-800);
}

/* Close button (X) must be dark — it sits over the white slide-out panel */
.hamburger.active span {
  background: var(--grey-800);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  scroll-snap-align: start;
}

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.55) saturate(0.8);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(10, 10, 20, 0.3) 0%,
      rgba(10, 10, 20, 0.2) 40%,
      rgba(10, 10, 20, 0.6) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 0.5;
  }

  100% {
    transform: translateY(-10vh) translateX(20px);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
  animation: hero-fade-in 1.2s ease forwards;
}

/* Suppresses hero-fade-in while splash is active */
.atai-splash-active .hero-content {
  animation: none !important;
  opacity: 0 !important;
  transform: translateY(30px) !important;
}

@keyframes hero-fade-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--red-light);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-accent {
  color: var(--red-light);
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 20px 40px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce-hint 2.5s infinite;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.4);
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  transform: rotate(45deg);
}

@keyframes bounce-hint {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.5;
  }

  50% {
    transform: translateX(-50%) translateY(6px);
    opacity: 0.9;
  }
}

/* ============================================================
   WHY AI
   ============================================================ */
.why-ai {
  background: var(--grey-50);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(192, 57, 43, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--red);
}

.why-icon svg {
  width: 24px;
  height: 24px;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--grey-900);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--grey-600);
  line-height: 1.65;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--white);
}

.services-bg-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 60%, rgba(192, 57, 43, 0.03) 100%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

@media (max-width: 1120px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
  }
}

@media (max-width: 860px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--red);
}

.service-card.featured {
  border-color: var(--red);
  background: linear-gradient(135deg, #fff 0%, rgba(192, 57, 43, 0.03) 100%);
  box-shadow: 0 8px 30px rgba(192, 57, 43, 0.12);
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.service-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--grey-400);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(192, 57, 43, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--red);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--red);
  color: var(--white);
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 8px;
  line-height: 1.3;
}

.service-tagline {
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 500;
  margin-bottom: 20px;
}

.service-features {
  flex: 1;
  margin-bottom: 24px;
}

.service-features li {
  font-size: 0.875rem;
  color: var(--grey-700);
  padding: 6px 0;
  border-bottom: 1px solid var(--grey-100);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.service-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

.service-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--red);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-cta:hover {
  gap: 8px;
}

.services-cta-row {
  text-align: center;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--grey-50);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  color: var(--grey-700);
  margin-bottom: 16px;
  line-height: 1.75;
}

.about-pillars {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--grey-200);
  transition: var(--transition);
}

.pillar:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
}

.pillar-icon {
  width: 40px;
  height: 40px;
  background: rgba(192, 57, 43, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}

.pillar-icon svg {
  width: 20px;
  height: 20px;
}

.pillar h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--grey-900);
  margin-bottom: 4px;
}

.pillar p {
  font-size: 0.85rem;
  color: var(--grey-600);
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-wrap:hover img {
  transform: scale(1.04);
}

.about-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--grey-800);
  box-shadow: var(--shadow-md);
}

.badge-icon {
  font-size: 1.2rem;
}

/* ============================================================
   HOW WE WORK
   ============================================================ */
.how-we-work {
  background: var(--white);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}

.step-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.step-icon {
  width: 72px;
  height: 72px;
  background: var(--grey-50);
  border: 2px solid var(--grey-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 24px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.process-step:hover .step-icon {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: scale(1.1);
}

.step-icon svg {
  width: 28px;
  height: 28px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--grey-900);
  margin-bottom: 12px;
}

.step-content p {
  font-size: 0.875rem;
  color: var(--grey-600);
  line-height: 1.7;
}

.process-connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--grey-300), var(--red), var(--grey-300));
  margin-top: 108px;
  position: relative;
}

/* ============================================================
   WHO ARE WE
   ============================================================ */
.who-we-are {
  position: relative;
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
}

.who-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.who-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.18) saturate(0.4);
}

.who-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 30, 0.85) 0%, rgba(10, 10, 30, 0.7) 100%);
}

.who-we-are .container {
  position: relative;
  z-index: 1;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 64px;
}

.team-card {
  flex: 1 1 min(520px, 100%);
  min-width: 320px;
  max-width: 560px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.team-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(192, 57, 43, 0.5);
  transform: translateY(-4px);
}

.team-card {
  text-align: center !important;
}

.team-card .team-info {
  text-align: left;
}

.team-header {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  width: 100%;
  margin-bottom: 16px;
}

.team-header .team-avatar,
.team-card .team-avatar.team-avatar-photo {
  margin-left: auto !important;
  margin-right: auto !important;
}

.team-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 4px;
}

.team-header .team-role {
  margin-bottom: 14px;
}

.team-card>.team-linkedin {
  display: flex;
  margin: 0 auto 20px;
}

.team-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
}

.team-linkedin:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.team-avatar {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
}

.avatar-initials {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.avatar-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(192, 57, 43, 0.4);
  animation: ring-pulse 3s infinite;
}

@keyframes ring-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.4;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.8;
  }
}

.team-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.team-role {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 20px;
}

.team-bio {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 12px;
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.team-tags span {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 12px;
  border-radius: 100px;
}

.vision-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  position: relative;
}

.vision-quote {
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--red);
  line-height: 0.5;
  margin-bottom: 20px;
  opacity: 0.6;
}

.vision-block blockquote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 20px;
}

.vision-block cite {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: normal;
}

/* ============================================================
   TARGET AUDIENCE
   ============================================================ */
.audience {
  background: var(--grey-50);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.audience-card {
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--grey-300);
}

.audience-card.featured-audience {
  border-color: var(--red);
  background: linear-gradient(135deg, #fff 0%, rgba(192, 57, 43, 0.03) 100%);
  box-shadow: 0 8px 30px rgba(192, 57, 43, 0.1);
}

.audience-icon {
  width: 56px;
  height: 56px;
  background: rgba(192, 57, 43, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}

.audience-icon svg {
  width: 26px;
  height: 26px;
}

.audience-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--grey-900);
}

.audience-card>p {
  font-size: 0.9rem;
  color: var(--grey-600);
  line-height: 1.7;
}

.audience-list {
  flex: 1;
}

.audience-list li {
  font-size: 0.875rem;
  color: var(--grey-700);
  padding: 6px 0;
  border-bottom: 1px solid var(--grey-100);
  display: flex;
  align-items: center;
  gap: 10px;
}

.audience-list li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  font-size: 0.8rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  position: relative;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.2) saturate(0.5);
}

.contact-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 30, 0.9) 0%, rgba(26, 10, 10, 0.85) 100%);
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(192, 57, 43, 0.2);
  border: 1px solid rgba(192, 57, 43, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-light);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.contact-item a,
.contact-item span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--red-light);
}

.contact-btn {
  margin-top: 8px;
}

.contact-form-wrap {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(10px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red-light);
  background: rgba(255, 255, 255, 0.12);
}

.form-group select option {
  background: var(--dark);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--grey-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 32px;
}

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

.footer-brand .nav-logo {
  margin-bottom: 12px;
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

.footer-tagline {
  margin-top: 8px;
}

.footer-links h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-lang {
  display: flex;
  gap: 8px;
}

.lang-btn-sm {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  padding: 4px 10px;
  border-radius: 4px;
  transition: var(--transition);
}

.lang-btn-sm.active,
.lang-btn-sm:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* ============================================================
   ANIMATIONS (AOS-like)
   ============================================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-delay="100"] {
  transition-delay: 0.1s;
}

[data-delay="150"] {
  transition-delay: 0.15s;
}

[data-delay="200"] {
  transition-delay: 0.2s;
}

[data-delay="300"] {
  transition-delay: 0.3s;
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-right"].aos-visible {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="fade-left"].aos-visible {
  transform: translateX(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual {
    order: -1;
  }

  .about-img-wrap img {
    height: 360px;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  /* Disable full-page snap on mobile — natural scroll */
  body {
    scroll-snap-type: none;
    height: auto;
    overflow-y: auto;
  }
  .section {
    min-height: unset;
    display: block;
    padding: 72px 0;
    scroll-snap-align: none;
  }
  .hero { scroll-snap-align: none; }

  /* Push hero content below the fixed navbar on mobile.
     Navbar is ~82px tall; 120px gives comfortable breathing room. */
  .hero {
    align-items: flex-start;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  #navbar {
    padding: 10px 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 40px;
    gap: 4px;
    box-shadow: var(--shadow-xl);
    transition: right 0.3s ease;
    z-index: 999;
    white-space: normal;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-link {
    color: var(--grey-700);
    width: 100%;
    padding: 12px 16px;

    &.active {
      color: var(--red);
      background: rgba(192, 57, 43, 0.08);
    }
  }

  .nav-link:hover {
    background: var(--grey-100);
    color: var(--red);
  }

  .lang-btn {
    color: var(--grey-700);
    &.active {
      color: var(--red);
      background: var(--grey-100);
    }
  }

  .nav-lang {
    color: var(--grey-400);
  }


  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .team-grid {
    flex-direction: column;
  }

  .process-steps {
    flex-direction: column;
    align-items: stretch;
  }

  .process-connector {
    width: 2px;
    height: 40px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--grey-300), var(--red));
  }

  .process-step {
    padding: 0;
  }

  .hero-stats {
    gap: 20px;
    padding: 16px 24px;
  }

  .stat-divider {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .vision-block {
    padding: 32px 24px;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

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

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

/* ---- LOGIN BUTTON IN NAV ---- */
.nav-login-btn {
  display: inline-flex;
  align-items: center;
  padding: 6px 18px;
  border: 2px solid var(--red);
  border-radius: 100px;
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-login-btn:hover {
  background: var(--red);
  color: var(--white);
}

/* ---- TEAM PHOTO AVATAR ---- */
.team-avatar.team-avatar-photo {
  width: 140px !important;
  height: 140px !important;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  margin-bottom: 24px;
  flex-shrink: 0;
  background: transparent;
}

.team-avatar.team-avatar-photo .avatar-initials {
  display: none;
}

.avatar-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 50%;
  display: block;
  position: relative;
  z-index: 1;
}

/* ---- AI USE CASES SECTION ---- */
.ai-use-cases {
  background: var(--grey-50);
}

.use-cases-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--red);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.value-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(192, 57, 43, 0.12);
  line-height: 1;
  margin-bottom: 12px;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--grey-600);
  line-height: 1.6;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.use-case-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--red);
  transition: var(--transition);
}

.use-case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.use-case-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(192, 57, 43, 0.08);
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.use-case-icon {
  width: 44px;
  height: 44px;
  background: rgba(192, 57, 43, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--red);
}

.use-case-icon svg {
  width: 22px;
  height: 22px;
}

.use-case-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 10px;
}

.use-case-tagline {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--grey-700);
  margin-bottom: 16px;
  line-height: 1.5;
}

.use-case-body {
  font-size: 0.9rem;
  color: var(--grey-600);
  line-height: 1.65;
}

.use-case-steps {
  list-style: none;
  counter-reset: step-counter;
  margin-bottom: 16px;
}

.use-case-steps li {
  counter-increment: step-counter;
  font-size: 0.88rem;
  color: var(--grey-700);
  padding: 6px 0 6px 32px;
  position: relative;
  border-bottom: 1px solid var(--grey-100);
}

.use-case-steps li::before {
  content: "0" counter(step-counter);
  position: absolute;
  left: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  font-family: var(--font-display);
}

.use-case-bullets {
  list-style: none;
  margin-top: 8px;
}

.use-case-bullets li {
  font-size: 0.88rem;
  color: var(--grey-700);
  padding: 5px 0 5px 20px;
  position: relative;
}

.use-case-bullets li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.use-case-note {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--grey-500);
  background: var(--grey-50);
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 14px;
  border-left: 3px solid var(--grey-300);
}

.use-cases-quote {
  text-align: center;
  padding: 60px 40px;
  background: var(--dark);
  border-radius: var(--radius-lg);
  margin-top: 20px;
}

.use-cases-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 16px;
}

.use-cases-quote cite {
  font-size: 0.9rem;
  color: var(--grey-400);
  font-style: normal;
}

/* ---- RESPONSIVE: USE CASES ---- */
@media (max-width: 900px) {
  .use-cases-value-grid {
    grid-template-columns: 1fr;
  }

  .use-cases-grid {
    grid-template-columns: 1fr;
  }
}

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

/* ========== EXTENDED TEAM ========== */
.team-extended {
  grid-column: 1 / -1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  margin-top: 1rem;
}

.extended-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 1.5rem;
}

.extended-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.extended-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.extended-icon {
  width: 40px;
  height: 40px;
  background: rgba(220, 38, 38, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.extended-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--red-light);
}

.extended-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}

.extended-card p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

/* ========== FEATURED USE CASE CARDS ========== */
.use-case-card--featured {
  background: linear-gradient(135deg, #fff 0%, #fdf5f5 100%);
  border-left-width: 5px;
}

.use-case-result-block {
  background: rgba(192, 57, 43, 0.06);
  border-left: 3px solid var(--red);
  border-radius: 0 8px 8px 0;
  padding: 0.8rem 1rem;
  margin: 1rem 0;
}

.result-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.4rem;
}

.use-case-result-block p {
  font-size: 0.88rem;
  color: var(--grey-700);
  line-height: 1.5;
  margin: 0;
}

.use-case-steps-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin: 1rem 0 0.5rem;
}

.use-case-note--value {
  background: var(--grey-100);
  border-left-color: var(--grey-400);
}

.use-case-cta {
  margin-top: 1.2rem;
  display: inline-flex;
  font-size: 0.85rem;
  padding: 0.6rem 1.4rem;
}

/* ---- USE CASES BOTTOM CTAs ---- */
.use-cases-bottom-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========== EXTENDED TEAM MINIMAL ========== */
.team-extended-minimal {
  margin-top: 2.5rem;
  padding: 1.25rem 1.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  width: 100%;
}

.extended-minimal-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 0.75rem;
}

.extended-minimal-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.extended-minimal-item {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.5;
}

.extended-minimal-item span:first-child {
  font-weight: 600;
  color: #222;
}

.extended-minimal-divider {
  width: 1px;
  height: 1.5rem;
  background: rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

/* ========== VALUE CARD EMOJI ========== */
.value-emoji {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.value-number {
  display: none;
}

/* ========== USE CASES CTA CENTER ========== */
.use-cases-cta-center {
  text-align: center;
  margin-top: 2.5rem;
}

/* ========== FORCE VALUE CARDS VISIBLE (AOS OVERRIDE) ========== */
.use-cases-value-grid .value-card,
.use-cases-cta-center {
  opacity: 1 !important;
  transform: none !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

/* ============================================================
   AI USE CASES — NEW CARD LAYOUT (matching attachment 1)
   ============================================================ */
.uc-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 0;
}

.uc-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  opacity: 1 !important;
  transform: none !important;
}

.uc-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.uc-card-emoji {
  font-size: 2.4rem;
  margin-bottom: 20px;
  line-height: 1;
}

.uc-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 14px;
  line-height: 1.3;
}

.uc-card-desc {
  font-size: 0.92rem;
  color: var(--grey-600);
  line-height: 1.65;
  margin-bottom: 18px;
}

.uc-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.uc-card-list li {
  font-size: 0.88rem;
  color: var(--grey-700);
  padding: 4px 0 4px 18px;
  position: relative;
  line-height: 1.5;
}

.uc-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
}

@media (max-width: 900px) {
  .uc-card-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   EXTENDED TEAM — CARD LAYOUT (matching Nordin/Dimitri style)
   ============================================================ */
.extended-team-section {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.extended-team-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 24px;
  text-align: center;
}

.extended-team-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
  align-items: stretch;
}

.extended-team-card {
  flex: 1 1 min(260px, 320px);
  min-width: 260px;
  max-width: 360px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 26px 24px;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.extended-team-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
}

.extended-team-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.extended-team-card-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.extended-team-card-content p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

@media (max-width: 950px) {
  .extended-team-cards {
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .extended-team-cards {
    justify-content: stretch;
  }
  .extended-team-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ============================================================
   NAV — SINGLE LINE FIX (reduce font/padding for German)
   ============================================================ */
.nav-links {
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav-link {
  font-size: 0.82rem;
  padding: 7px 10px;
  white-space: nowrap;
}

.nav-login-btn {
  white-space: nowrap;
  font-size: 0.78rem;
  padding: 5px 14px;
}

/* LOGIN button color fix when navbar is scrolled */
#navbar.scrolled .nav-login-btn {
  color: var(--red);
  border-color: var(--red);
}

#navbar.scrolled .nav-login-btn:hover {
  background: var(--red);
  color: var(--white);
}