/* =========================================
   CWS Media - Design System & Global Styles
   ========================================= */

/* 0. Local Fonts - loaded via <link> in HTML to avoid render-blocking @import chain */

/* 1. Variables & Tokens */
:root {
  /* Colors */
  --color-primary: #0f172a;
  /* Deep Navy / Dark Slate */
  --color-secondary: #3b82f6;
  /* Electric Blue */
  --color-accent: #10b981;
  /* Success Green / Teal */
  --color-background: #ffffff;
  --color-surface: #f8fafc;
  --color-surface-hover: #f1f5f9;
  --color-text-main: #1e293b;
  --color-text-muted: #64748b;
  --color-border: #e2e8f0;

  /* Typography */
  --font-main: 'Outfit', sans-serif;
  /* Modern, geometric but friendly */
  --font-body: 'Inter', sans-serif;
  /* Highly readable */

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

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.15);

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* === GLASSMORPHISM SYSTEM === */
  /* Glass Colors */
  --glass-white: rgba(255, 255, 255, 0.08);
  --glass-white-strong: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-border-strong: rgba(255, 255, 255, 0.3);

  /* Glow Colors */
  --glow-blue: rgba(59, 130, 246, 0.4);
  --glow-violet: rgba(139, 92, 246, 0.35);
  --glow-cyan: rgba(34, 211, 238, 0.3);
  --glow-green: rgba(16, 185, 129, 0.3);

  /* Glass Shadows */
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-glass-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  --shadow-glass-glow: 0 0 40px rgba(59, 130, 246, 0.15), 0 0 80px rgba(139, 92, 246, 0.1);
  --shadow-glass-intense: 0 20px 60px rgba(59, 130, 246, 0.25), 0 0 100px rgba(139, 92, 246, 0.15);
}

/* 2. Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-background);
  color: var(--color-text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.02em;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }
}

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

ul {
  list-style: none;
}

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

/* 3. Utility Classes */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.section {
  padding: var(--spacing-lg) 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font-main);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  gap: 0.5rem;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

/* Liquid Glass Primary Button */
.btn-primary {
  background: linear-gradient(135deg,
      rgba(59, 130, 246, 0.9) 0%,
      rgba(37, 99, 235, 0.95) 50%,
      rgba(29, 78, 216, 1) 100%);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 8px 32px rgba(59, 130, 246, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Shimmer effect overlay */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.3) 50%,
      transparent 100%);
  transition: left 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

/* Animated gradient background */
.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.btn-primary:hover::after {
  opacity: 1;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

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

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

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 12px 48px rgba(59, 130, 246, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow:
    0 4px 16px rgba(59, 130, 246, 0.3),
    inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Liquid Glass Secondary Button */
.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-primary);
  border: 1px solid rgba(15, 23, 42, 0.15);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
}

/* Glass reflection effect */
.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.2) 0%,
      transparent 100%);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  pointer-events: none;
}

/* Shimmer effect for secondary */
.btn-secondary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(59, 130, 246, 0.1) 50%,
      transparent 100%);
  transition: left 0.6s ease;
}

.btn-secondary:hover::after {
  left: 100%;
}

.btn-secondary:hover {
  transform: translateY(-3px) scale(1.02);
  background: rgba(59, 130, 246, 0.05);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow:
    0 8px 32px rgba(59, 130, 246, 0.15),
    0 0 0 1px rgba(59, 130, 246, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05);
  color: var(--color-secondary);
}

.btn-secondary:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.1),
    inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

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

.mb-xs {
  margin-bottom: var(--spacing-xs);
}

.mb-sm {
  margin-bottom: var(--spacing-sm);
}

.mb-md {
  margin-bottom: var(--spacing-md);
}

.mb-lg {
  margin-bottom: var(--spacing-lg);
}

.text-muted {
  color: var(--color-text-muted);
}

/* 4. Layout Components */

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  padding: 0.75rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Logo Fix: Strict constraints */
.logo {
  flex-shrink: 0;
  display: block;
}

.logo img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

/* Navigation */
.nav {
  margin-left: auto;
  margin-right: 2rem;
}

.nav-list {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-weight: 500;
  color: var(--color-text-main);
  position: relative;
  font-size: 1rem;
}

.nav-link:hover {
  color: var(--color-secondary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--color-secondary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Header CTA Button */
.btn-header {
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
}

/* Hero Section */
.hero {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
  overflow: hidden;
  background: radial-gradient(circle at 80% 0%, rgba(59, 130, 246, 0.05) 0%, transparent 40%);
}

.cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Cards & Grid */
.grid {
  display: grid;
  gap: 2rem;
}

.card-icon {
  width: 3rem;
  height: 3rem;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
}

/* Trust Bar */
.trust-bar {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background-color: #ffffff;
}

.trust-logos {
  display: flex;
  gap: 4rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: var(--transition-normal);
}

.trust-logos:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Feature Grid (USP) */
.usp-section {
  background-color: var(--color-surface);
}

/* Footer */
.footer a:hover {
  color: white;
  text-decoration: underline;
}

/* =========================================
   Mobile Menu & Hamburger
   ========================================= */

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
  padding: 0;
}

.hamburger-btn span {
  width: 100%;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger Animation */
.hamburger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay - Glassmorphism */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(248, 250, 252, 0.98) 100%
  );
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

/* Mobile menu background decoration */
.mobile-menu::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--glow-blue) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  opacity: 0.3;
  filter: blur(60px);
}

.mobile-menu::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--glow-violet) 0%, transparent 70%);
  bottom: -50px;
  left: -50px;
  opacity: 0.3;
  filter: blur(60px);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-nav {
  position: relative;
  z-index: 1;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.mobile-nav-link {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: all 0.3s ease;
  position: relative;
}

.mobile-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-secondary), var(--glow-violet));
  border-radius: 2px;
  transition: width 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--color-secondary);
}

.mobile-nav-link:hover::after {
  width: 60%;
}

.mobile-cta {
  display: inline-block;
  color: white !important;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #6366f1 100%);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-lg);
  margin-top: 1.5rem;
  font-size: 1.25rem;
  box-shadow: 0 8px 30px var(--glow-blue);
  transition: all 0.3s ease;
}

.mobile-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px var(--glow-blue);
}

body.no-scroll {
  overflow: hidden;
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .desktop-cta {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }
}

/* =========================================
   5. Visual Integration (3D Glassmorphism)
   ========================================= */

/* Hero Split Layout */
.hero-split {
  display: flex;
  align-items: center;
  gap: 4rem;
  text-align: left;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-visual img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .hero-split {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
    margin: 0 auto;
  }
}

/* Section Divider */
.section-divider {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  line-height: 0;
  overflow: hidden;
}

.section-divider img {
  width: 100%;
  object-fit: cover;
  max-height: 300px;
}

/* Services Wrapper - Container for layered effect */
.services-wrapper {
  position: relative;
}


/* Services Grid - Positioned in front of banner */
.services-grid {
  position: relative;
  z-index: 1;
}

/* Card peek-through effect on hover */
.card {
  background: var(--color-background);
  padding: 2.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-secondary);
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* USP Visuals */
.usp-visual {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  /* Glass effect handled by image, no extra CSS needed */
}

/* CTA Split Layout */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cta-text {
  order: 1;
}

.cta-visual {
  order: 2;
}

.cta-visual img {
  width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .cta-split {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-text {
    order: 2;
  }

  .cta-visual {
    order: 1;
    margin-bottom: 2rem;
  }
}

/* === FOOTER GLASSMORPHISM === */
#footer-container {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    #1e293b 50%,
    #0f172a 100%
  );
  position: relative;
  overflow: hidden;
}

.footer {
  position: relative;
  padding: 5rem 0 2rem;
  color: white;
}

/* Footer background orbs */
.footer-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.footer-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
}

.footer-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--glow-blue);
  top: -200px;
  right: -100px;
}

.footer-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--glow-violet);
  bottom: -150px;
  left: -100px;
}

.footer-content {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

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

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

/* Footer brand column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo img {
  transition: all 0.3s ease;
}

.footer-logo:hover img {
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  max-width: 250px;
}

/* Social links */
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.social-link:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.4);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

/* Footer columns */
.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-secondary), var(--glow-violet));
  border-radius: 2px;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-links a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-secondary);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: white;
  transform: translateX(4px);
}

.footer-links a:hover::before {
  width: 100%;
}

/* Footer contact */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-contact strong {
  color: white;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

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

/* Footer bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: white;
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* =========================================
   7. PAGE-SPECIFIC COMPONENTS
   ========================================= */

/* === AGENTUR PAGE === */

/* Philosophy Grid */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.philosophy-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.philosophy-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.philosophy-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-secondary), #6366f1);
  border-radius: var(--radius-md);
  color: white;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 16px var(--glow-blue);
}

.philosophy-item h4 {
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.philosophy-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 500px;
}

.philosophy-visual::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg, var(--glow-blue), var(--glow-violet));
  filter: blur(40px);
  opacity: 0.2;
  z-index: -1;
}

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

/* Team Grid */
.team-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.team-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: center;
  min-width: 250px;
  max-width: 300px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glass-glow);
}

.team-avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--color-secondary), #6366f1);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px var(--glow-blue);
}

.team-avatar span {
  color: white;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.75rem;
}

.team-card h4 {
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

/* === KONTAKT PAGE === */

.contact-hero {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(248,250,252,1) 0%, rgba(255,255,255,1) 100%);
}

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

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

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

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

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

.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(139,92,246,0.05));
  border-radius: var(--radius-md);
  color: var(--color-secondary);
}

.contact-link {
  color: var(--color-secondary);
  font-weight: 500;
  transition: all 0.3s ease;
}

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

/* Contact Form */
.contact-form-wrapper {
  background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-glass-lg);
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(139,92,246,0.1), rgba(34,211,238,0.1));
  border-radius: calc(var(--radius-xl) + 2px);
  z-index: -1;
  filter: blur(1px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-main);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  background: rgba(255,255,255,0.8);
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
  background: white;
}

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

/* Form Status Messages */
.form-status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  animation: slideDown 0.3s ease;
}

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

.form-status svg {
  flex-shrink: 0;
}

.form-status-success {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #059669;
}

.form-status-error {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.05));
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #dc2626;
}

/* Loading Spinner */
.btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-loading .spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}


/* === BRANCHEN PAGE === */

.branch-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(248,250,252,0.9));
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

.branch-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(135deg, rgba(59,130,246,0.3), rgba(139,92,246,0.2), rgba(34,211,238,0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.branch-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-glass-intense);
}

.branch-card:hover::before {
  opacity: 1;
}

.branch-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(139,92,246,0.05));
  border-radius: var(--radius-lg);
  margin: 0 auto 1.5rem;
  color: var(--color-secondary);
  transition: all 0.4s ease;
}

.branch-card:hover .branch-icon {
  background: linear-gradient(135deg, var(--color-secondary), #6366f1);
  color: white;
  box-shadow: 0 8px 30px var(--glow-blue);
  transform: scale(1.1);
}

/* === DARK SECTION (Service Detail Pages) === */

.dark-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1e293b 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.dark-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, var(--glow-blue) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, var(--glow-violet) 0%, transparent 50%);
  opacity: 0.15;
  pointer-events: none;
}

.dark-section h2 {
  color: white;
}

.dark-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
  transition: all 0.4s ease;
}

.dark-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.dark-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.dark-card-number {
  font-family: var(--font-main);
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-secondary), var(--glow-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  line-height: 1;
}

.dark-card h3 {
  color: white;
  margin-bottom: 0.75rem;
}

.dark-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* =========================================
   6. GLASSMORPHISM SYSTEM - World Class Effects
   ========================================= */

/* === ANIMATED BACKGROUND ORBS === */
.hero-bg-effects {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, var(--glow-blue), var(--glow-violet));
  top: -20%;
  right: -10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--glow-cyan), var(--glow-blue));
  bottom: -10%;
  left: -5%;
  animation-delay: -7s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--glow-violet), var(--glow-cyan));
  top: 40%;
  left: 30%;
  animation-delay: -14s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -30px) scale(1.05);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }
  75% {
    transform: translate(-30px, -20px) scale(1.02);
  }
}

/* === GLASS CARD BASE === */
.glass-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-glass);
  position: relative;
  overflow: hidden;
}

/* Glass shine effect */
.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
}

/* Glass inner glow */
.glass-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 60%
  );
  pointer-events: none;
}

/* === ENHANCED SERVICE CARDS === */
.card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(248, 250, 252, 0.9) 100%
  );
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.06),
    0 1px 2px rgba(0, 0, 0, 0.04);
}

/* Prismatic border effect */
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.3) 0%,
    rgba(139, 92, 246, 0.2) 25%,
    rgba(34, 211, 238, 0.2) 50%,
    rgba(16, 185, 129, 0.2) 75%,
    rgba(59, 130, 246, 0.3) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Glow backdrop */
.card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(59, 130, 246, 0.08) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow:
    var(--shadow-glass-intense),
    0 0 0 1px rgba(255, 255, 255, 0.3);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.85) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: transparent;
}

.card:hover::before {
  opacity: 1;
  animation: prismatic-rotate 3s linear infinite;
}

.card:hover::after {
  opacity: 1;
}

@keyframes prismatic-rotate {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

/* Enhanced card icon with glow ring */
.card-icon {
  width: 3.5rem;
  height: 3.5rem;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0.75rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.1) 0%,
    rgba(139, 92, 246, 0.05) 100%
  );
  transition: all 0.4s ease;
}

.card:hover .card-icon {
  box-shadow:
    0 0 20px var(--glow-blue),
    0 0 40px rgba(139, 92, 246, 0.2);
  transform: scale(1.1);
}

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

/* Card link styling */
.card-link {
  color: var(--color-secondary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.card-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-secondary), var(--glow-violet));
  transition: width 0.3s ease;
}

.card:hover .card-link {
  gap: 0.75rem;
}

.card:hover .card-link::after {
  width: 100%;
}

/* === HERO SECTION ENHANCED === */
.hero {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(248, 250, 252, 1) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgba(248, 250, 252, 0.5) 100%
  );
}

.hero-split {
  position: relative;
  z-index: 2;
}

/* Page Hero (Subpages) */
.page-hero {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background: linear-gradient(
    180deg,
    rgba(248, 250, 252, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.page-hero .orb-1 {
  width: 400px;
  height: 400px;
  top: -150px;
  right: -50px;
}

.page-hero .orb-2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -50px;
}

/* Hero badge */
.hero-badge {
  display: inline-block;
  color: var(--color-secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.1) 0%,
    rgba(139, 92, 246, 0.05) 100%
  );
  border-radius: var(--radius-full);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Hero subtitle */
.hero-subtitle {
  color: var(--color-text-muted);
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Card list styling */
.card-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card-list li {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  padding-left: 1.5rem;
  position: relative;
}

.card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, var(--color-secondary), var(--glow-violet));
  border-radius: 50%;
}

/* Hero text glow effect */
.hero-text h1 {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    #1e40af 50%,
    var(--color-primary) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 8s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Hero visual glass frame */
.hero-visual {
  position: relative;
}

.hero-visual img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-glass-lg);
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: linear-gradient(
    135deg,
    var(--glow-blue) 0%,
    var(--glow-violet) 50%,
    var(--glow-cyan) 100%
  );
  border-radius: calc(var(--radius-xl) + 20px);
  filter: blur(40px);
  opacity: 0.3;
  z-index: -1;
  animation: pulse-glow 4s ease-in-out infinite;
}

/* === FLOATING GLASS SHAPES === */
.floating-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.shape {
  position: absolute;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: float-shape 15s ease-in-out infinite;
}

.shape-1 {
  width: 80px;
  height: 80px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: 20%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 120px;
  height: 120px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  top: 60%;
  right: 10%;
  animation-delay: -5s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  bottom: 30%;
  left: 15%;
  animation-delay: -10s;
}

@keyframes float-shape {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(20px, -20px) rotate(90deg);
  }
  50% {
    transform: translate(-10px, 10px) rotate(180deg);
  }
  75% {
    transform: translate(-20px, -10px) rotate(270deg);
  }
}

/* === TRUST BAR GLASS === */
.trust-bar {
  border: none;
  background: linear-gradient(
    180deg,
    rgba(248, 250, 252, 0.8) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
}

.trust-bar::before,
.trust-bar::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(59, 130, 246, 0.2) 20%,
    rgba(139, 92, 246, 0.2) 50%,
    rgba(59, 130, 246, 0.2) 80%,
    transparent 100%
  );
}

.trust-bar::before {
  top: 0;
}

.trust-bar::after {
  bottom: 0;
}

.trust-logos {
  opacity: 0.6;
  filter: grayscale(100%);
}

.trust-logos span {
  transition: all 0.4s ease;
  position: relative;
}

.trust-logos span:hover {
  opacity: 1;
  filter: grayscale(0%);
  color: var(--color-secondary);
  text-shadow: 0 0 30px var(--glow-blue);
}

/* === USP SECTION GLASS === */
.usp-section {
  background: linear-gradient(
    180deg,
    var(--color-surface) 0%,
    rgba(248, 250, 252, 0.5) 100%
  );
  position: relative;
  overflow: hidden;
}

.usp-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, var(--glow-blue) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, var(--glow-violet) 0%, transparent 50%);
  opacity: 0.1;
  pointer-events: none;
}

/* USP Glass Cards */
.usp-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.7) 100%
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.usp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-secondary) 0%,
    var(--glow-violet) 50%,
    var(--glow-cyan) 100%
  );
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.usp-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glass-glow);
}

.usp-card:hover::before {
  opacity: 1;
}

/* USP Number badge */
.usp-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    var(--color-secondary) 0%,
    #6366f1 100%
  );
  border-radius: var(--radius-md);
  color: white;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  box-shadow:
    0 4px 16px var(--glow-blue),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* === CTA SECTION ENHANCED === */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-glass-wrapper {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.8) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  padding: 4rem;
  box-shadow: var(--shadow-glass-lg);
  position: relative;
}

.cta-glass-wrapper::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.3) 0%,
    rgba(139, 92, 246, 0.2) 50%,
    rgba(34, 211, 238, 0.2) 100%
  );
  border-radius: calc(var(--radius-xl) + 2px);
  z-index: -1;
  filter: blur(1px);
}

/* CTA Background decoration */
.cta-bg-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-bg-decoration::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    var(--glow-blue) 0%,
    transparent 70%
  );
  top: -250px;
  right: -100px;
  opacity: 0.4;
  filter: blur(60px);
}

.cta-bg-decoration::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    var(--glow-violet) 0%,
    transparent 70%
  );
  bottom: -200px;
  left: -100px;
  opacity: 0.3;
  filter: blur(60px);
}

/* Pulsing button glow wrapper */
.btn-glow-wrapper {
  position: relative;
  display: inline-block;
}

.btn-glow-wrapper::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(
    135deg,
    var(--glow-blue) 0%,
    var(--glow-violet) 100%
  );
  border-radius: calc(var(--radius-md) + 4px);
  filter: blur(12px);
  opacity: 0.6;
  animation: btn-pulse 2s ease-in-out infinite;
  z-index: -1;
}

@keyframes btn-pulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

/* === NOISE TEXTURE OVERLAY === */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* === SCROLL ANIMATIONS === */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }
.animate-delay-6 { transition-delay: 0.6s; }
.animate-delay-7 { transition-delay: 0.7s; }

/* === ENHANCED HEADER === */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.8) 100%
  );
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  padding: 0.75rem 0;
  transition: all 0.3s ease;
}

.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(59, 130, 246, 0.3) 50%,
    transparent 100%
  );
}

/* Active nav link glow */
.nav-link.active,
.nav-link:hover {
  color: var(--color-secondary);
}

.nav-link.active::after,
.nav-link:hover::after {
  width: 100%;
  box-shadow: 0 0 10px var(--glow-blue);
}

/* === RESPONSIVE ADJUSTMENTS === */
@media (max-width: 900px) {
  .orb-1 {
    width: 300px;
    height: 300px;
  }

  .orb-2 {
    width: 200px;
    height: 200px;
  }

  .orb-3 {
    width: 150px;
    height: 150px;
  }

  .floating-shapes {
    display: none;
  }

  .cta-glass-wrapper {
    padding: 2rem;
  }

  .usp-card {
    padding: 1.5rem;
  }
}

/* === ACCESSIBILITY === */

/* Skip link — visually hidden, visible on focus */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--color-secondary);
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 1rem;
}

/* Focus-visible styles for keyboard navigation */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Reduced motion — respect user preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}