/********** Template CSS **********/
:root {
  --primary: #f97316;
  --light: #fb923c;
  --dark: #1f2937;
  --bg-color: #0f172a;
  --accent-color: #ea580c;
  --text-color: #e5e7eb;
  --white: #ffffff;
  --bg-primary: #111827;
  --text-primary: #d1d5db;
  --heading-color: #fdba74;
  --font-family: 'Quando', serif;
  --font-family-sans: 'Quando', serif;
  --font-family-mono: 'Quando', serif;

--border-radius: 6px;
--shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

/* Futuristic animated background */
body {
  font-family: var(--font-family);
  line-height: 1.6;
  background: #0f172a;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(249, 115, 22, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(107, 114, 128, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 50% 20%, rgba(251, 146, 60, 0.15) 0%, transparent 50%);
  animation: backgroundShift 20s ease-in-out infinite;
  z-index: -2;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(249, 115, 22, 0.08) 50%, transparent 70%),
    linear-gradient(-45deg, transparent 30%, rgba(107, 114, 128, 0.08) 50%, transparent 70%);
  background-size: 200% 200%;
  animation: gradientMove 15s ease infinite;
  z-index: -1;
}

@keyframes backgroundShift {
  0%, 100% {
    background: 
      radial-gradient(circle at 20% 50%, rgba(249, 115, 22, 0.2) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(107, 114, 128, 0.2) 0%, transparent 50%),
      radial-gradient(circle at 50% 20%, rgba(251, 146, 60, 0.15) 0%, transparent 50%);
  }
  33% {
    background: 
      radial-gradient(circle at 80% 30%, rgba(249, 115, 22, 0.2) 0%, transparent 50%),
      radial-gradient(circle at 20% 70%, rgba(107, 114, 128, 0.2) 0%, transparent 50%),
      radial-gradient(circle at 50% 80%, rgba(251, 146, 60, 0.15) 0%, transparent 50%);
  }
  66% {
    background: 
      radial-gradient(circle at 50% 70%, rgba(249, 115, 22, 0.2) 0%, transparent 50%),
      radial-gradient(circle at 50% 20%, rgba(107, 114, 128, 0.2) 0%, transparent 50%),
      radial-gradient(circle at 20% 50%, rgba(251, 146, 60, 0.15) 0%, transparent 50%);
  }
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Floating particles animation */
.p-0 {
  position: relative;
}

.p-0::before {
  content: '';
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(249, 115, 22, 0.4), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(107, 114, 128, 0.4), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(253, 186, 116, 0.3), transparent),
    radial-gradient(1px 1px at 80% 10%, rgba(249, 115, 22, 0.3), transparent),
    radial-gradient(2px 2px at 90% 40%, rgba(107, 114, 128, 0.3), transparent),
    radial-gradient(1px 1px at 33% 60%, rgba(249, 115, 22, 0.2), transparent),
    radial-gradient(1px 1px at 66% 20%, rgba(107, 114, 128, 0.2), transparent);
  background-repeat: repeat;
  background-size: 200% 200%;
  animation: particleFloat 25s linear infinite;
  opacity: 0.6;
}

@keyframes particleFloat {
  0% {
    transform: translate(0, 0);
    background-position: 0% 0%;
  }
  25% {
    transform: translate(-5%, -5%);
    background-position: 25% 25%;
  }
  50% {
    transform: translate(5%, -10%);
    background-position: 50% 50%;
  }
  75% {
    transform: translate(-3%, 5%);
    background-position: 75% 75%;
  }
  100% {
    transform: translate(0, 0);
    background-position: 100% 100%;
  }
}

/* Headings use JetBrains Mono for tech look */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-mono);
  font-weight: 600;
}

/* Text content uses Inter */
p, .text-content, .program-feature-text, 
.plan-feature-text, .testimonial-text {
  font-family: var(--font-family);
  line-height: 1.6;
}

/* Buttons and UI elements use Inter for better readability */
.btn, .navbar, .form-control, .nav-link, .form-floating label {
  font-family: var(--font-family-sans);
}
.bg-dark {
  background-color: var(--dark) !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semi-bold {
  font-weight: 600 !important;
}

.error-message {
  color: var(--primary);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
  min-height: 1.2rem;
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.error-message:not(:empty) {
  opacity: 1;
}

/* Додатковий стиль для полів з помилками */
.form-control.error {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 0.2rem var(--dark) !important;
}


.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
  border-radius: 10px;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 2px;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #ffffff;
  font-size: 15px;
  text-transform: uppercase;
  outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }
}

  /* Footer Styles */
.site-footer {
  position: relative;
  padding: 100px 0 40px;
  margin-top: 6rem;
  background: #0f172a;
  overflow: hidden;
}

.footer-background-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.footer-orange-accent {
  position: absolute;
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: glowPulse 9s ease-in-out infinite;
}

.footer-gray-accent {
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -150px;
  left: -150px;
  background: radial-gradient(circle, rgba(107, 114, 128, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  animation: glowPulse 11s ease-in-out infinite reverse;
}

.footer-main-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.footer-content-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand-column {
  position: relative;
  z-index: 1;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.footer-logo-link:hover {
  transform: translateY(-2px);
}

.footer-logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(107, 114, 128, 0.2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(249, 115, 22, 0.3);
  transition: all 0.3s ease;
}

.footer-logo-link:hover .footer-logo-icon {
  transform: rotate(5deg) scale(1.05);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.3), rgba(107, 114, 128, 0.3));
}

.footer-logo-icon .material-icons-outlined {
  font-size: 1.8rem;
  color: #f97316;
}

.footer-logo-text {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Quando', serif;
  transition: color 0.3s ease;
}

.footer-logo-link:hover .footer-logo-text {
  color: #f97316;
}

.footer-about-text {
  color: #d1d5db;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.footer-technology-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tech-tag-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.tech-tag-item:hover {
  background: rgba(249, 115, 22, 0.15);
  border-color: rgba(249, 115, 22, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.2);
}

.tag-icon {
  display: flex;
  align-items: center;
  color: #f97316;
  font-size: 1rem;
}

.tag-label {
  color: #e5e7eb;
  font-size: 0.85rem;
  font-weight: 500;
}

.footer-links-column {
  position: relative;
  z-index: 1;
}

.footer-info-column {
  position: relative;
  z-index: 1;
}

.footer-column-title {
  color: #f97316;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-family: 'Quando', serif;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-column-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: linear-gradient(90deg, #f97316, #6b7280);
  border-radius: 2px;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.6rem 0;
  transition: all 0.3s ease;
  position: relative;
}

.footer-nav-link::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, #f97316, #6b7280);
  border-radius: 2px;
  transition: height 0.3s ease;
}

.footer-nav-link:hover {
  color: #ffffff;
  padding-left: 1rem;
}

.footer-nav-link:hover::before {
  height: 50%;
}

.nav-link-icon {
  display: flex;
  align-items: center;
  color: #f97316;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.footer-nav-link:hover .nav-link-icon {
  color: #ea580c;
  transform: scale(1.1) rotate(5deg);
}

.nav-link-text {
  flex: 1;
}

.nav-link-arrow {
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.footer-nav-link:hover .nav-link-arrow {
  opacity: 1;
  transform: translateX(0);
}

.nav-link-arrow .material-icons-outlined {
  font-size: 1rem;
  color: #f97316;
}

.footer-contact-block {
  margin-top: 2rem;
}

.footer-email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 0.75rem;
}

.footer-email-link:hover {
  background: rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.4);
  transform: translateX(5px);
}

.email-icon {
  display: flex;
  align-items: center;
  color: #f97316;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.footer-email-link:hover .email-icon {
  color: #ea580c;
  transform: scale(1.1);
}

.email-address {
  color: #e5e7eb;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-email-link:hover .email-address {
  color: #ffffff;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(249, 115, 22, 0.2);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  flex: 1;
}

.copyright-text {
  color: #9ca3af;
  font-size: 0.9rem;
}

.footer-domain-name {
  flex-shrink: 0;
}

.domain-text {
  color: #f97316;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: default;
}

.footer-domain-name:hover .domain-text {
  color: #ea580c;
  text-shadow: 0 0 10px rgba(249, 115, 22, 0.4);
}

/* Legacy Footer Styles */
.footer-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
}

.btn-link {
    color: #ffffff !important;
    text-decoration: none;
    padding: 0.5rem 0;
    border: none;
    text-align: left;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-link:hover {
    color: var(--primary) !important;
    transform: translateX(5px);
}

.footer-email {
    color: #ffffff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-email-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-brand {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .footer-links {
        margin-bottom: 1.5rem;
    }

    .footer-tech-badges {
      flex-direction: column;
    }

    .tech-badge {
      width: fit-content;
    }
}

/* Google Fonts - Quando */
@import url("https://fonts.googleapis.com/css2?family=Quando&display=swap");

/* ===== SIDEBAR DESIGN SYSTEM ===== */

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #111827 0%, #1f2937 50%, #374151 100%);
  backdrop-filter: blur(20px);
  border-right: 1px solid rgba(249, 115, 22, 0.2);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
}

.sidebar.collapsed {
  width: 80px;
}

.sidebar.collapsed .logo-text,
.sidebar.collapsed .logo-icon,
.sidebar.collapsed .nav-text,
.sidebar.collapsed .nav-section-label,
.sidebar.collapsed .sidebar-footer,
.sidebar.collapsed .nav-indicator,
.sidebar.collapsed .sidebar-toggle {
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
  overflow: hidden;
}

.sidebar.collapsed .logo-container {
  justify-content: center;
}

.sidebar.collapsed .nav-link {
  justify-content: center;
  padding: 1rem;
}

.sidebar.collapsed .nav-icon {
  margin: 0;
}

.sidebar.collapsed .nav-section {
  padding: 0;
}

.sidebar.collapsed .sidebar-header {
  justify-content: center;
  padding: 2rem 1rem;
}

/* Sidebar Header */
.sidebar-header {
  padding: 2rem 1.5rem;
  border-bottom: 1px solid rgba(249, 115, 22, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

@media (max-width: 768px) {
  .sidebar-header {
    padding-top: 0;
  }
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f97316, #6b7280);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
  transition: all 0.3s ease;
}

.logo-icon .material-icons-outlined {
  font-size: 1.8rem;
  color: #ffffff;
}

.logo-text {
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.logo-main {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Quando', serif;
  line-height: 1;
}

.logo-sub {
  font-size: 0.9rem;
  color: #f97316;
  font-weight: 500;
  font-family: 'Quando', serif;
  line-height: 1;
}

.sidebar-toggle {
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 8px;
  padding: 0.5rem;
  color: #f97316;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sidebar-toggle:hover {
  background: rgba(249, 115, 22, 0.2);
  transform: scale(1.05);
}

/* Sidebar Navigation */
.sidebar-nav {
  padding: 2rem 0;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-item {
  margin-bottom: 0.5rem;
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin: 0.25rem 0;
}

.nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #f97316, #6b7280);
  transform: scaleY(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 4px 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-link:hover::before,
.nav-item.active .nav-link::before {
  transform: scaleY(1);
}

.nav-link:hover::after {
  opacity: 1;
}

.nav-link:hover,
.nav-item.active .nav-link {
  background: rgba(249, 115, 22, 0.15);
  color: #ffffff;
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.2);
}

.nav-icon {
  font-size: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 24px;
  color: #f97316;
}

.nav-link:hover .nav-icon,
.nav-item.active .nav-icon {
  color: #fdba74;
  transform: scale(1.15) rotate(5deg);
}

.nav-text {
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
}

.nav-link:hover .nav-text {
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(249, 115, 22, 0.3);
}

.nav-indicator {
  position: absolute;
  right: 1rem;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #f97316, #6b7280);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.6);
}

.nav-item.active .nav-indicator {
  opacity: 1;
  transform: scale(1);
  animation: pulseIndicator 2s ease-in-out infinite;
}

@keyframes pulseIndicator {
  0%, 100% {
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.6);
  }
  50% {
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.9);
  }
}

/* Sidebar Navigation Sections */
.nav-section {
  margin-bottom: 2rem;
  padding: 0 1.5rem;
}

.nav-section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f97316;
  margin-bottom: 1rem;
  padding-left: 0.5rem;
  opacity: 0.7;
}

.nav-link-cta {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(107, 114, 128, 0.2)) !important;
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 8px;
  margin: 0.5rem 0;
}

.nav-link-cta:hover {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.3), rgba(107, 114, 128, 0.3)) !important;
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.2);
}

.logo-icon-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.4) 0%, transparent 70%);
  opacity: 0;
  animation: pulseGlow 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

.logo-icon {
  position: relative;
}

.logo-icon:hover .logo-icon-glow {
  opacity: 0.6;
  animation: pulseGlow 1s ease-in-out infinite;
}

/* Sidebar Footer */
.sidebar-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  border-top: 1px solid rgba(249, 115, 22, 0.1);
  background: rgba(17, 24, 39, 0.5);
}

.sidebar-contact-info {
  margin-bottom: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(249, 115, 22, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(249, 115, 22, 0.1);
  transform: translateX(4px);
}

.contact-item .material-icons-outlined {
  color: #f97316;
  font-size: 1.2rem;
}

.contact-item a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  flex: 1;
  word-break: break-all;
}

.contact-item a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.sidebar-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(107, 114, 128, 0.2));
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.sidebar-badge:hover {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.3), rgba(107, 114, 128, 0.3));
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.sidebar-badge .material-icons-outlined {
  color: #fdba74;
  font-size: 1.1rem;
}

/* Mobile Header */
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(249, 115, 22, 0.2);
  z-index: 1001;
  padding: 0 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.2rem;
  font-family: 'Quando', serif;
}

.mobile-logo .material-icons-outlined {
  color: #f97316;
  font-size: 1.5rem;
}

.mobile-menu-btn {
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 8px;
  padding: 0.5rem;
  color: #f97316;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  background: rgba(249, 115, 22, 0.2);
}

/* Sidebar Toggle Button for Desktop */
.sidebar-toggle-btn {
  position: fixed;
  top: 30px;
  left: 20px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #ea580c, #9ca3af);
  border: none;
  border-radius: 30%;
  color: #ffffff;
  cursor: pointer;
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
  transition: all 0.3s ease;
}

.sidebar-toggle-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(249, 115, 22, 0.4);
}

.sidebar-toggle-btn .material-icons-outlined {
  font-size: 1.5rem;
}

/* Show toggle button only when sidebar is collapsed */
.sidebar-toggle-btn {
  display: none;
}

body.sidebar-collapsed .sidebar-toggle-btn {
  display: flex;
}

/* Main Content Offset */
body {
  margin-left: 280px;
  transition: margin-left 0.3s ease;
  overflow-x: hidden;
}

body.sidebar-collapsed {
  margin-left: 80px;
}

/* Prevent horizontal scroll */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  body {
    margin-left: 0;
  }
  
  .sidebar {
    transform: translateX(-100%);
    width: 280px;
  }
  
  .sidebar.open {
    transform: translateX(0);
  }
  
  .mobile-header {
    display: flex;
  }
  
  .sidebar-toggle-btn {
    display: none !important;
  }
  
  .sidebar.collapsed {
    width: 280px;
  }
}

@media (min-width: 769px) {
  .mobile-header {
    display: none;
  }
}

.futuristic-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
  animation: scan-line 3s linear infinite;
}

@keyframes scan-line {
  0% { left: -100%; }
  100% { left: 100%; }
}

.futuristic-navbar {
  padding: 1.5rem 0;
  position: relative;
  z-index: 10;
}

.futuristic-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.futuristic-logo-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f97316, #6b7280);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(249, 115, 22, 0.5);
}

.futuristic-logo-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.futuristic-logo-text {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Quando', serif;
  background: linear-gradient(135deg, #f97316, #ffffff, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(249, 115, 22, 0.5);
}

.futuristic-nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.futuristic-nav-link {
  position: relative;
  padding: 1rem 2rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  border: 2px solid transparent;
  border-radius: 25px;
  transition: all 0.3s ease;
  background: rgba(249, 115, 22, 0.1);
  backdrop-filter: blur(10px);
}

.futuristic-nav-link:hover {
  border-color: #f97316;
  background: rgba(249, 115, 22, 0.2);
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
  transform: translateY(-3px);
}

.futuristic-nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 25px;
  background: linear-gradient(135deg, #f97316, #6b7280);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.futuristic-nav-link:hover::before {
  opacity: 0.1;
}


@media (max-width: 700px) {
  .cookie-wrapper {
    width: 100%;
  }
}

/* Cookie Banner - Compact Bottom Right */
.cookie-wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 420px;
  width: auto;
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(249, 115, 22, 0.2);
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.cookie-wrapper.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cookie-wrapper.hidden {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
}

.cookie-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 115, 22, 0.15);
  border-radius: 8px;
  color: #f97316;
}

.cookie-icon .material-icons-outlined {
  font-size: 20px;
}

.cookie-text-wrapper {
  flex: 1;
  min-width: 0;
}

.cookie-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #e2e8f0;
  font-weight: 400;
}

.cookie-policy-link {
  color: #f97316;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.cookie-policy-link:hover {
  color: #fdba74;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-button {
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  white-space: nowrap;
  font-family: inherit;
}

.cookie-button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  min-width: 32px;
  padding: 8px;
}

.cookie-button-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.cookie-button-secondary .material-icons-outlined {
  font-size: 18px;
}

.cookie-button-primary {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}

.cookie-button-primary:hover {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
  transform: translateY(-1px) scale(1.05);
}

.cookie-button-primary:active {
  transform: translateY(0) scale(0.98);
}

.cookie-icon {
  position: relative;
  transition: all 0.3s ease;
}

.cookie-icon:hover {
  transform: rotate(15deg) scale(1.1);
}

.cookie-policy-link {
  position: relative;
  transition: all 0.3s ease;
}

.cookie-policy-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #f97316, #ea580c);
  transition: width 0.3s ease;
}

.cookie-policy-link:hover::after {
  width: 100%;
}

.cookie-wrapper:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(249, 115, 22, 0.3);
  transform: translateY(-2px) scale(1.01);
}

/* Responsive Design */
@media (max-width: 768px) {
  .cookie-wrapper {
    bottom: 16px;
    right: 16px;
    left: 16px;
    max-width: none;
  }

  .cookie-content {
    flex-wrap: wrap;
    gap: 10px;
  }

  .cookie-text-wrapper {
    flex: 1 1 100%;
    order: 1;
  }

  .cookie-icon {
    order: 0;
  }

  .cookie-actions {
    order: 2;
    flex: 1 1 100%;
    justify-content: flex-end;
  }

  .cookie-button-primary {
    flex: 1;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .cookie-wrapper {
    bottom: 12px;
    right: 12px;
    left: 12px;
  }

  .cookie-content {
    padding: 12px 14px;
  }

  .cookie-text {
    font-size: 12px;
  }

  .cookie-button {
    font-size: 12px;
    padding: 7px 14px;
  }
}

.hidden {
  display: none;
}

header i {
  color: var(--dark);
  font-size: 32px;
  text-align: center;
}

header h2 {
  color: var(--dark);
  font-weight: 500;
  text-align: center;
}

.data {
  text-align: center;
}

.data p a {
  color: var(--dark);
  text-decoration: none;
  text-align: center !important;
}

.data p a:hover {
  text-decoration: underline;
}

.buttons {
  padding: 20px 0px;
  text-align: center;
}

.buttons .cookie-button {
  border: 2px solid var(--dark);
  color: #fff;
  padding: 8px 0;
  background: var(--dark);
  cursor: pointer;
  width: calc(100% / 2 - 10px);
  transition: all 0.5s ease;
  max-width: 150px;
  border-radius: 0;
}

.buttons #acceptBtn:hover {
  background-color: transparent;
  color: var(--dark);
}

#declineBtn {
  background-color: #fff;
  color: var(--dark);
}

#declineBtn:hover {
  background-color: var(--dark);
  color: #fff;
}

/* Neue Styles für DeinErfolgscode */
/* Globale Variablen */

/* Hero-Sektion Styling */
.hero-section {
  padding: 150px 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
}

.hero-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  color: var(--accent-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 3rem;
  max-width: 600px;
}

.stats-card {
  background: var(--bg-primary);
  border: 2px solid #f0f0f0;
  border-radius: var(--border-radius);
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.stats-card:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.stats-label {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 1rem;
}

.btn-primary-custom {
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: white;
  padding: 12px 32px;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 10px;
}

.btn-primary-custom:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-section {
    padding: 60px 0;
  }
  
  .stats-card {
    margin-bottom: 1.5rem;
  }
}

.programs-timeline-section {
  padding: 150px 0;
  position: relative;
  overflow: hidden;
  background: #111827;
}

.solutions-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.solutions-orange-accent {
  position: absolute;
  width: 500px;
  height: 500px;
  top: 10%;
  left: -150px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: glowPulse 9s ease-in-out infinite;
}

.solutions-gray-accent {
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: 10%;
  right: -200px;
  background: radial-gradient(circle, rgba(107, 114, 128, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  animation: glowPulse 11s ease-in-out infinite reverse;
}



.solutions-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.solutions-header-section {
  text-align: center;
  margin-bottom: 5rem;
  animation: slideUp 0.8s ease-out;
}

.header-badge-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.4rem;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 25px;
  margin-bottom: 2rem;
  backdrop-filter: blur(12px);
}

.header-badge-dot {
  width: 8px;
  height: 8px;
  background: #f97316;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.6);
  animation: dotPulse 2s ease-in-out infinite;
}

.header-badge-label {
  color: #f97316;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.solutions-main-heading {
  font-size: 3.8rem;
  font-weight: 700;
  font-family: 'Quando', serif;
  margin-bottom: 1.5rem;
  color: #ffffff;
  line-height: 1.2;
}

.solutions-subheading {
  font-size: 1.15rem;
  color: #d1d5db;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.8;
}

.solutions-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.solution-item-card {
  position: relative;
  background: rgba(31, 41, 55, 0.75);
  backdrop-filter: blur(20px);
  border-radius: 26px;
  border: 1px solid rgba(249, 115, 22, 0.2);
  padding: 2.75rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  animation: slideUp 0.8s ease-out both;
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.35);
}

.solution-item-card:nth-child(1) { animation-delay: 0.1s; }
.solution-item-card:nth-child(2) { animation-delay: 0.2s; }
.solution-item-card:nth-child(3) { animation-delay: 0.3s; }

.solution-item-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f97316, #6b7280, #f97316);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.solution-item-card:hover {
  transform: translateY(-10px);
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: 0 25px 70px rgba(249, 115, 22, 0.25);
}

.item-number-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 4.5rem;
  font-weight: 700;
  font-family: 'Quando', serif;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(107, 114, 128, 0.15));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.25;
  line-height: 1;
}

.item-icon-container {
  position: relative;
  margin-bottom: 2rem;
  display: inline-block;
}

.item-icon-bg {
  position: absolute;
  width: 85px;
  height: 85px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(107, 114, 128, 0.2));
  border-radius: 20px;
  border: 1px solid rgba(249, 115, 22, 0.3);
  transition: all 0.3s ease;
}

.solution-item-card:hover .item-icon-bg {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.3), rgba(107, 114, 128, 0.3));
}

.item-icon-container .material-icons-outlined {
  position: relative;
  z-index: 1;
  font-size: 2.6rem;
  color: #f97316;
  display: block;
  padding: 1.5rem;
}

.item-content-area {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}

.item-tag {
  display: inline-block;
  padding: 0.45rem 1.1rem;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 18px;
  color: #f97316;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 1.5rem;
}

.item-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Quando', serif;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.item-description {
  color: #d1d5db;
  line-height: 1.75;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.item-features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #e5e7eb;
  font-size: 0.95rem;
}

.feature-check {
  display: flex;
  align-items: center;
  color: #f97316;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.feature-label {
  flex: 1;
}

.item-action-area {
  margin-top: auto;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(249, 115, 22, 0.2);
}

.item-action-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #f97316;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.item-action-link:hover {
  color: #ea580c;
  gap: 0.85rem;
}

.action-link-icon {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.item-action-link:hover .action-link-icon {
  transform: translateX(5px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@media (max-width: 1024px) {
  .hero-main-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .heading-line-1,
  .heading-line-2,
  .heading-line-3 {
    font-size: 3.5rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .solutions-cards-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 120px 0 80px;
  }
  
  .heading-line-1,
  .heading-line-2,
  .heading-line-3 {
    font-size: 2.5rem;
  }
  
  .hero-main-text {
    font-size: 1rem;
  }
  
  .hero-action-group {
    flex-direction: column;
  }
  
  .action-button {
    width: 100%;
    justify-content: center;
  }
  
  .solutions-main-heading {
    font-size: 2.5rem;
  }
  
  .solutions-subheading {
    font-size: 1rem;
  }
  
  .solution-item-card {
    padding: 2rem;
  }
  
  .item-title {
    font-size: 1.5rem;
  }
}

.programs-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.program-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(249, 115, 22, 0.1);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.08);
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.program-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 12px 40px rgba(249, 115, 22, 0.15);
  transform: translateY(-8px);
}

.program-card:hover::before {
  transform: scaleX(1);
}

.btn-small {
  padding: 4px 10px;
  text-transform: initial;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 0px;
}
.program-number {
  background: linear-gradient(135deg, var(--accent-color) 0%, #9ca3af 100%);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(107, 114, 128, 0.3);
  position: relative;
  transition: all 0.3s ease;
}

.program-number::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), #9ca3af);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.program-card:hover .program-number::before {
  opacity: 1;
}

.program-title {
  color: var(--heading-color);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  position: relative;
}

.program-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.2rem;
  padding: 0.8rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(249, 115, 22, 0.02);
}

.program-feature:hover {
  background: rgba(249, 115, 22, 0.05);
  transform: translateX(4px);
}

.program-feature-icon {
  color: var(--accent-color);
  margin-right: 1rem;
  margin-top: 0.2rem;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.program-feature:hover .program-feature-icon {
  color: var(--primary);
  transform: scale(1.1);
}

.program-feature-text {
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
}

/* Responsive Design für neue Sektionen */
@media (max-width: 768px) {
  .program-card {
    padding: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .program-number {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  .program-title {
    font-size: 1.4rem;
  }
  
  .program-feature {
    padding: 0.6rem;
    margin-bottom: 1rem;
  }
  
  .program-feature-text {
    font-size: 0.95rem;
  }
}

.advantages-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.advantages-orange-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  top: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: glowPulse 9s ease-in-out infinite;
}

.advantages-gray-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -150px;
  right: -150px;
  background: radial-gradient(circle, rgba(107, 114, 128, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  animation: glowPulse 11s ease-in-out infinite reverse;
}

.advantages-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.advantages-header-section {
  text-align: center;
  margin-bottom: 5rem;
  animation: slideUp 0.8s ease-out;
}

.advantages-badge-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.4rem;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 25px;
  margin-bottom: 2rem;
  backdrop-filter: blur(12px);
}

.advantages-badge-dot {
  width: 8px;
  height: 8px;
  background: #f97316;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.6);
  animation: dotPulse 2s ease-in-out infinite;
}

.advantages-badge-label {
  color: #f97316;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.advantages-main-heading {
  font-size: 3.8rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Quando', serif;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.advantages-subheading {
  font-size: 1.15rem;
  color: #d1d5db;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.advantages-grid-layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(6, 100px);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.advantage-feature-card {
  position: relative;
  background: rgba(31, 41, 55, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 22px;
  border: 1px solid rgba(249, 115, 22, 0.2);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideUp 0.8s ease-out both;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.advantage-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f97316, #6b7280, #f97316);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.advantage-feature-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: 0 25px 70px rgba(249, 115, 22, 0.25);
}

.advantage-large {
  grid-column: 1 / 7;
  grid-row: 1 / 5;
}

.advantage-medium {
  grid-column: 7 / 13;
  grid-row: span 2;
}

.advantage-medium:nth-child(3) {
  grid-row: 3 / 5;
}

.advantage-small {
  grid-column: span 3;
  grid-row: span 2;
}

.advantage-small:nth-child(4) { grid-column: 1 / 4; grid-row: 5 / 7; }
.advantage-small:nth-child(5) { grid-column: 4 / 7; grid-row: 5 / 7; }
.advantage-small:nth-child(6) { grid-column: 7 / 10; grid-row: 5 / 7; }
.advantage-small:nth-child(7) { grid-column: 10 / 13; grid-row: 5 / 7; }

.feature-card-inner {
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.feature-icon-container {
  position: relative;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.feature-icon-background {
  position: absolute;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(107, 114, 128, 0.2));
  border-radius: 16px;
  border: 1px solid rgba(249, 115, 22, 0.3);
  transition: all 0.3s ease;
}

.advantage-feature-card:hover .feature-icon-background {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.3), rgba(107, 114, 128, 0.3));
}

.feature-icon-container .material-icons-outlined {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  color: #f97316;
  display: block;
  padding: 1rem;
}

.feature-content-block {
  position: relative;
  z-index: 1;
}

.feature-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Quando', serif;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.advantage-small .feature-title {
  font-size: 1.3rem;
}

.feature-description {
  color: #d1d5db;
  line-height: 1.7;
  font-size: 1rem;
}

.advantage-small .feature-description {
  font-size: 0.9rem;
}

.feature-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.95), rgba(107, 114, 128, 0.85));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 3;
}

.advantage-feature-card:hover .feature-card-overlay {
  opacity: 1;
}

.overlay-inner-content {
  text-align: center;
  color: #ffffff;
  padding: 2rem;
}

.overlay-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Quando', serif;
}

.overlay-text {
  margin-bottom: 2rem;
  opacity: 0.95;
  font-size: 1rem;
}

.overlay-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.overlay-action-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.overlay-action-btn .material-icons-outlined {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.overlay-action-btn:hover .material-icons-outlined {
  transform: translateX(4px);
}

@media (max-width: 1200px) {
  .advantages-grid-layout {
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(8, 90px);
    gap: 1.25rem;
  }
  
  .advantage-large {
    grid-column: 1 / 5;
    grid-row: 1 / 5;
  }
  
  .advantage-medium {
    grid-column: 5 / 9;
    grid-row: span 2;
  }
  
  .advantage-medium:nth-child(3) {
    grid-row: 3 / 5;
  }
  
  .advantage-small {
    grid-column: span 2;
    grid-row: span 2;
  }
  
  .advantage-small:nth-child(4) { grid-column: 1 / 3; grid-row: 5 / 7; }
  .advantage-small:nth-child(5) { grid-column: 3 / 5; grid-row: 5 / 7; }
  .advantage-small:nth-child(6) { grid-column: 5 / 7; grid-row: 5 / 7; }
  .advantage-small:nth-child(7) { grid-column: 7 / 9; grid-row: 5 / 7; }
}

@media (max-width: 1024px) {
  .technologies-main-heading,
  .advantages-main-heading {
    font-size: 3rem;
  }
  
  .technologies-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .technologies-main-heading,
  .advantages-main-heading {
    font-size: 2.5rem;
  }
  
  .technologies-subheading,
  .advantages-subheading {
    font-size: 1rem;
  }
  
  .technologies-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .technology-card {
    padding: 2rem;
  }
  
  .technologies-cta-block {
    padding: 2.5rem;
  }
  
  .cta-heading {
    font-size: 1.8rem;
  }
  
  .advantages-grid-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1.5rem;
  }
  
  .advantage-large,
  .advantage-medium,
  .advantage-small {
    grid-column: 1;
    grid-row: auto;
  }
  
  .feature-card-inner {
    padding: 2rem;
  }
  
  .feature-title {
    font-size: 1.4rem;
  }
  
  .advantage-small .feature-title {
    font-size: 1.2rem;
  }
  
  .testimonials-main-heading {
    font-size: 2.5rem;
  }
  
  .testimonials-subheading {
    font-size: 1rem;
  }
  
  .testimonial-item-card {
    padding: 2rem;
  }
  
  .footer-content-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-brand-column {
    order: 1;
  }
  
  .footer-links-column {
    order: 2;
  }
  
  .footer-info-column {
    order: 3;
  }
  
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .footer-content-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  
  .footer-brand-column {
    grid-column: 1 / -1;
  }
}

.mosaic-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mosaic-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.mosaic-item:hover .mosaic-image img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.8), rgba(107, 114, 128, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.mosaic-item:hover .image-overlay {
  opacity: 1;
}

.image-content {
  text-align: center;
  color: #ffffff;
}

.image-content h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: 'Quando', serif;
}

.image-content p {
  font-size: 1rem;
  opacity: 0.9;
}


.success-section {
  padding: 150px 0;
  position: relative;
  overflow: hidden;
  background: #1f2937;
}

.testimonials-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.testimonials-orange-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  top: -150px;
  right: -150px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  animation: glowPulse 8s ease-in-out infinite;
}

.testimonials-gray-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(107, 114, 128, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: glowPulse 10s ease-in-out infinite reverse;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.testimonials-header-block {
  text-align: center;
  margin-bottom: 5rem;
  animation: slideUp 0.8s ease-out;
}

.testimonials-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.4rem;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 25px;
  margin-bottom: 2rem;
  backdrop-filter: blur(12px);
}

.testimonials-badge-dot {
  width: 8px;
  height: 8px;
  background: #f97316;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.6);
  animation: dotPulse 2s ease-in-out infinite;
}

.testimonials-badge-label {
  color: #f97316;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.testimonials-main-heading {
  font-size: 3.8rem;
  font-weight: 700;
  font-family: 'Quando', serif;
  margin-bottom: 1.5rem;
  color: #ffffff;
  line-height: 1.2;
}

.testimonials-subheading {
  font-size: 1.15rem;
  color: #d1d5db;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.testimonials-slider {
  padding: 2rem 0 4rem;
  position: relative;
}

.testimonial-item-card {
  background: rgba(31, 41, 55, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 26px;
  border: 1px solid rgba(249, 115, 22, 0.2);
  padding: 3rem;
  margin: 1rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-item-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f97316, #6b7280, #f97316);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.testimonial-item-card:hover {
  transform: translateY(-8px);
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 25px 70px rgba(249, 115, 22, 0.25);
}

.testimonial-quote-icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(107, 114, 128, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.testimonial-quote-icon .material-icons-outlined {
  font-size: 2rem;
  color: #f97316;
}

.testimonial-content-area {
  flex: 1;
  margin-bottom: 2rem;
  padding-top: 1rem;
}

.testimonial-content-text {
  color: #d1d5db;
  font-size: 1.1rem;
  line-height: 1.8;
  font-style: italic;
  position: relative;
}

.testimonial-author-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(249, 115, 22, 0.2);
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(107, 114, 128, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(249, 115, 22, 0.3);
  flex-shrink: 0;
}

.author-avatar .material-icons-outlined {
  font-size: 1.5rem;
  color: #f97316;
}

.author-info {
  flex: 1;
}

.author-name {
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  font-family: 'Quando', serif;
}

.author-position {
  color: #9ca3af;
  font-size: 0.9rem;
}

.testimonials-slider .swiper-pagination {
  position: relative;
  margin-top: 3rem;
}

.testimonials-slider .swiper-pagination-bullet {
  background: rgba(249, 115, 22, 0.4);
  opacity: 0.5;
  width: 12px;
  height: 12px;
  transition: all 0.3s ease;
}

.testimonials-slider .swiper-pagination-bullet-active {
  background: #f97316;
  opacity: 1;
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
}


.technologies-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.technologies-orange-accent {
  position: absolute;
  width: 500px;
  height: 500px;
  top: -150px;
  right: -150px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  animation: glowPulse 8s ease-in-out infinite;
}

.technologies-gray-accent {
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(107, 114, 128, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: glowPulse 10s ease-in-out infinite reverse;
}

.technologies-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.technologies-header-block {
  text-align: center;
  margin-bottom: 5rem;
  animation: slideUp 0.8s ease-out;
}

.technologies-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.4rem;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 25px;
  margin-bottom: 2rem;
  backdrop-filter: blur(12px);
}

.technologies-badge-dot {
  width: 8px;
  height: 8px;
  background: #f97316;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.6);
  animation: dotPulse 2s ease-in-out infinite;
}

.technologies-badge-label {
  color: #f97316;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.technologies-main-heading {
  font-size: 3.8rem;
  font-weight: 700;
  font-family: 'Quando', serif;
  margin-bottom: 1.5rem;
  color: #ffffff;
  line-height: 1.2;
}

.technologies-subheading {
  font-size: 1.15rem;
  color: #d1d5db;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.technologies-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.technology-card {
  position: relative;
  background: rgba(31, 41, 55, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(249, 115, 22, 0.2);
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  animation: slideUp 0.8s ease-out both;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.technology-card:nth-child(1) { animation-delay: 0.1s; }
.technology-card:nth-child(2) { animation-delay: 0.2s; }
.technology-card:nth-child(3) { animation-delay: 0.3s; }
.technology-card:nth-child(4) { animation-delay: 0.4s; }

.technology-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f97316, #6b7280, #f97316);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.technology-card:hover {
  transform: translateY(-8px);
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 20px 60px rgba(249, 115, 22, 0.2);
}

.tech-card-icon-wrapper {
  position: relative;
  margin-bottom: 2rem;
  display: inline-block;
}

.tech-card-icon-bg {
  position: absolute;
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(107, 114, 128, 0.2));
  border-radius: 18px;
  border: 1px solid rgba(249, 115, 22, 0.3);
  transition: all 0.3s ease;
}

.technology-card:hover .tech-card-icon-bg {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.3), rgba(107, 114, 128, 0.3));
}

.tech-card-icon-wrapper .material-icons-outlined {
  position: relative;
  z-index: 1;
  font-size: 2.4rem;
  color: #f97316;
  display: block;
  padding: 1.25rem;
}

.tech-card-content {
  position: relative;
  z-index: 1;
}

.tech-card-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Quando', serif;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.tech-card-description {
  color: #d1d5db;
  line-height: 1.7;
  font-size: 1rem;
}

.tech-card-accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.technology-card:hover .tech-card-accent-line {
  opacity: 1;
}

.technologies-cta-block {
  text-align: center;
  margin-top: 4rem;
  padding: 3.5rem;
  background: rgba(31, 41, 55, 0.6);
  backdrop-filter: blur(20px);
  border-radius: 26px;
  border: 1px solid rgba(249, 115, 22, 0.2);
  animation: slideUp 0.8s ease-out 0.5s both;
}

.cta-content-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.cta-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Quando', serif;
  margin-bottom: 1rem;
}

.cta-text {
  color: #d1d5db;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-action-button {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.15rem 2.4rem;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 28px;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Quando', serif;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.cta-action-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(249, 115, 22, 0.5);
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
}

.cta-button-text {
  position: relative;
  z-index: 1;
}

.cta-button-icon {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.cta-action-button:hover .cta-button-icon {
  transform: translateX(5px);
}

/* Preise Sektion Styling */
.pricing-section {
  padding: 80px 0;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(10px);
}

.pricing-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.pricing-card {
  background: rgba(241, 245, 249, 0.8);
  backdrop-filter: blur(15px);
  border: 2px solid #f0f0f0;
  border-radius: var(--border-radius);
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  text-align: center;
}

.pricing-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(78, 21, 4, 0.15);
  transform: translateY(-5px);
}

.pricing-card.featured {
  border-color: var(--accent-color);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: 'POPULAIRE';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: white;
  padding: 5px 20px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.plan-name {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.plan-price {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.plan-period {
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  text-align: left;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.plan-feature-icon {
  color: var(--accent-color);
  margin-right: 0.75rem;
  margin-top: 0.1rem;
  font-size: 1.2rem;
}

.plan-feature-text {
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.5;
  flex: 1;
}

.pricing-note {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-top: 3rem;
  text-align: center;
  color: var(--text-primary);
  font-size: 1rem;
  font-style: italic;
}

/* Responsive Design für neue Sektionen */
@media (max-width: 768px) {
  .pricing-title {
    font-size: 2rem;
  }
  
  .pricing-card {
    padding: 2rem;
    margin-bottom: 2rem;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .plan-price {
    font-size: 2rem;
  }
}
/* Contact Section */

.swiper-container {
  max-width: 1200px;
  margin: 0 auto;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.swiper-pagination {
  margin-top: 20px;
  text-align: center;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background-color: var(--heading-color);
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  opacity: 1;
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 160px 0 120px;
  overflow: hidden;
  background: #0f172a;
}

.hero-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-orange-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: glowPulse 8s ease-in-out infinite;
}

.hero-gray-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -150px;
  left: -150px;
  background: radial-gradient(circle, rgba(107, 114, 128, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: glowPulse 10s ease-in-out infinite reverse;
}

.hero-mesh-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(249, 115, 22, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 115, 22, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
}

.hero-main-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-left-column {
  position: relative;
  z-index: 2;
}

.hero-right-column {
  position: relative;
  z-index: 2;
}

.hero-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.4rem;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 25px;
  margin-bottom: 3rem;
  backdrop-filter: blur(12px);
  animation: slideDown 0.6s ease-out;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #f97316;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.6);
  animation: dotPulse 2s ease-in-out infinite;
}

.badge-label {
  color: #f97316;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.hero-heading-block {
  margin-bottom: 2.5rem;
  animation: slideUp 0.8s ease-out 0.2s both;
}

.hero-main-heading {
  font-family: 'Quando', serif;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.heading-line-1 {
  display: block;
  font-size: 5rem;
  color: #ffffff;
  margin-bottom: 0.3rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.heading-line-2 {
  display: block;
  font-size: 5rem;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.3rem;
}

.heading-line-3 {
  display: block;
  font-size: 5rem;
  color: #6b7280;
}

.heading-underline {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #f97316, #6b7280);
  border-radius: 2px;
  margin-top: 1rem;
  animation: underlineExpand 0.8s ease-out 0.6s both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes underlineExpand {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 120px;
    opacity: 1;
  }
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text-block {
  margin-bottom: 3rem;
  animation: slideUp 0.8s ease-out 0.4s both;
}

.hero-main-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #d1d5db;
  max-width: 600px;
}

.hero-capabilities-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
  animation: slideUp 0.8s ease-out 0.6s both;
}

.capability-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.3rem;
  background: rgba(31, 41, 55, 0.6);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 22px;
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.capability-pill:hover {
  background: rgba(249, 115, 22, 0.1);
  border-color: rgba(249, 115, 22, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}

.pill-icon {
  display: flex;
  align-items: center;
  color: #f97316;
  font-size: 1.1rem;
}

.pill-text {
  color: #e5e7eb;
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-action-group {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  animation: slideUp 0.8s ease-out 0.8s both;
}

.action-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.15rem 2.4rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 28px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Quando', serif;
  overflow: hidden;
}

.action-primary {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
}

.action-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.5);
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
}

.action-outline {
  background: rgba(31, 41, 55, 0.5);
  color: #e5e7eb;
  border: 2px solid rgba(249, 115, 22, 0.3);
  backdrop-filter: blur(10px);
}

.action-outline:hover {
  background: rgba(249, 115, 22, 0.1);
  border-color: rgba(249, 115, 22, 0.6);
  color: #ffffff;
  transform: translateY(-2px);
}

.button-text {
  position: relative;
  z-index: 1;
}

.button-icon {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.action-button:hover .button-icon {
  transform: translateX(4px);
}

.button-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.action-primary:hover .button-ripple {
  width: 300px;
  height: 300px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.8s forwards;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #f97316 0%, #6b7280 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Quando', serif;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #d8b4fe;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(249, 115, 22, 0.5), transparent);
}

.hero-stats-panel {
  background: rgba(31, 41, 55, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  border: 1px solid rgba(249, 115, 22, 0.2);
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  animation: slideUp 0.8s ease-out 0.5s both;
}

.hero-stats-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f97316, #6b7280, #f97316);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.panel-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 12px;
}

.panel-icon-circle .material-icons-outlined {
  font-size: 24px;
  color: #f97316;
}

.panel-title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Quando', serif;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.15);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.3);
  transform: translateY(-2px);
}

.stat-icon-wrapper {
  display: flex;
  align-items: center;
  color: #f97316;
  font-size: 1.5rem;
}

.stat-info {
  flex: 1;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, #f97316, #6b7280);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Quando', serif;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.stat-name {
  font-size: 0.8rem;
  color: #9ca3af;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.3), rgba(107, 114, 128, 0.3));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(249, 115, 22, 0.5);
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
}

.circle-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 10%;
  animation: float1 6s ease-in-out infinite;
}

.circle-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 15%;
  animation: float2 8s ease-in-out infinite;
}

.circle-3 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 20%;
  animation: float3 7s ease-in-out infinite;
}

.circle-4 {
  width: 100px;
  height: 100px;
  top: 30%;
  right: 30%;
  animation: float4 9s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(30px, -30px) rotate(180deg);
  }
}

@keyframes float2 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-25px, 25px) rotate(-180deg);
  }
}

@keyframes float3 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(20px, 20px) rotate(90deg);
  }
}

@keyframes float4 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-20px, -20px) rotate(-90deg);
  }
}

.hero-icon-container {
  position: relative;
  z-index: 2;
}

.hero-icon {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.4), rgba(107, 114, 128, 0.4));
  border-radius: 50%;
  backdrop-filter: blur(20px);
  border: 2px solid rgba(249, 115, 22, 0.5);
  animation: iconPulse 3s ease-in-out infinite;
  box-shadow: 0 0 40px rgba(249, 115, 22, 0.4);
}

.hero-icon .material-icons-outlined {
  font-size: 100px;
  color: #ffffff;
  z-index: 3;
  animation: iconRotate 20s linear infinite;
  filter: drop-shadow(0 0 10px rgba(249, 115, 22, 0.5));
}

.icon-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.6), transparent);
  animation: glowPulse 2s ease-in-out infinite;
}

.icon-ring {
  position: absolute;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  border: 2px solid rgba(249, 115, 22, 0.5);
  animation: ringRotate 10s linear infinite;
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
}

.icon-ring::before {
  content: '';
  position: absolute;
  width: 140%;
  height: 140%;
  border-radius: 50%;
  border: 1px solid rgba(107, 114, 128, 0.4);
  animation: ringRotate 15s linear infinite reverse;
  box-shadow: 0 0 15px rgba(107, 114, 128, 0.2);
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.5), 0 0 60px rgba(107, 114, 128, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(249, 115, 22, 0.7), 0 0 80px rgba(107, 114, 128, 0.5);
  }
}

@keyframes iconRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

@keyframes ringRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
  animation: slideUp 0.8s ease-out 1s both;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: #f97316;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.6);
  animation: scrollDotMove 2s ease-in-out infinite;
}

@keyframes scrollDotMove {
  0%, 100% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0.5;
    transform: translateY(8px);
  }
}

.scroll-text {
  color: rgba(249, 115, 22, 0.7);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

/* Responsive Hero */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-content {
    padding: 2.5rem;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-visual {
    height: 400px;
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 60px;
    min-height: auto;
  }
  
  .hero-content {
    padding: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .hero-visual {
    height: 300px;
    padding: 1rem;
  }
  
  .hero-icon {
    width: 150px;
    height: 150px;
  }
  
  .hero-icon .material-icons-outlined {
    font-size: 75px;
  }
}

/* Adjust for small screens */
@media (max-width: 767px) {
  .testimonial-card {
    padding: 20px;
  }
}

/* ===== ABOUT PAGE STYLES ===== */
.about-hero-section {
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
  background: #1f2937;
}

.about-hero-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.about-hero-orange-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  top: -150px;
  right: -150px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  animation: glowPulse 8s ease-in-out infinite;
}

.about-hero-gray-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(107, 114, 128, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: glowPulse 10s ease-in-out infinite reverse;
}

.about-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-hero-content-wrapper {
  animation: slideUp 0.8s ease-out;
}

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.4rem;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 25px;
  margin-bottom: 2rem;
  backdrop-filter: blur(12px);
}

.about-hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #f97316;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.6);
  animation: dotPulse 2s ease-in-out infinite;
}

.about-hero-badge-label {
  color: #f97316;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.about-hero-main-heading {
  font-size: 3.8rem;
  font-weight: 700;
  font-family: 'Quando', serif;
  margin-bottom: 1.5rem;
  color: #ffffff;
  line-height: 1.2;
}

.about-hero-description {
  font-size: 1.15rem;
  color: #d1d5db;
  line-height: 1.8;
}

.about-hero-image-wrapper {
  position: relative;
  animation: slideUp 0.8s ease-out 0.2s both;
}

.about-hero-image-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.about-hero-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.about-hero-image-container:hover .about-hero-image {
  transform: scale(1.05);
}

.about-hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(107, 114, 128, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-hero-image-container:hover .about-hero-image-overlay {
  opacity: 1;
}

.about-approach-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: #0f172a;
}

.approach-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.approach-orange-accent {
  position: absolute;
  width: 600px;
  height: 600px;
  top: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: glowPulse 9s ease-in-out infinite;
}

.approach-gray-accent {
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -150px;
  right: -150px;
  background: radial-gradient(circle, rgba(107, 114, 128, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  animation: glowPulse 11s ease-in-out infinite reverse;
}

.approach-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.approach-header-block {
  text-align: center;
  margin-bottom: 4rem;
  animation: slideUp 0.8s ease-out;
}

.approach-main-heading {
  font-size: 3.2rem;
  font-weight: 700;
  font-family: 'Quando', serif;
  margin-bottom: 1rem;
  color: #ffffff;
}

.approach-subheading {
  font-size: 1.1rem;
  color: #d1d5db;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.approach-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.approach-feature-card {
  background: rgba(31, 41, 55, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(249, 115, 22, 0.2);
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: slideUp 0.8s ease-out both;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.approach-feature-card:nth-child(1) { animation-delay: 0.1s; }
.approach-feature-card:nth-child(2) { animation-delay: 0.2s; }
.approach-feature-card:nth-child(3) { animation-delay: 0.3s; }

.approach-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f97316, #6b7280, #f97316);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.approach-feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 20px 60px rgba(249, 115, 22, 0.2);
}

.approach-feature-icon-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.approach-feature-icon-bg {
  position: absolute;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(107, 114, 128, 0.2));
  border-radius: 16px;
  border: 1px solid rgba(249, 115, 22, 0.3);
  transition: all 0.3s ease;
}

.approach-feature-card:hover .approach-feature-icon-bg {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.3), rgba(107, 114, 128, 0.3));
}

.approach-feature-icon-wrapper .material-icons-outlined {
  position: relative;
  z-index: 1;
  font-size: 2.2rem;
  color: #f97316;
  display: block;
  padding: 1rem;
}

.approach-feature-content {
  position: relative;
  z-index: 1;
}

.approach-feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Quando', serif;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.approach-feature-description {
  color: #d1d5db;
  line-height: 1.7;
  font-size: 1rem;
}

.about-values-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: #1f2937;
}

.values-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.values-orange-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  top: -150px;
  right: -150px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  animation: glowPulse 8s ease-in-out infinite;
}

.values-gray-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(107, 114, 128, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: glowPulse 10s ease-in-out infinite reverse;
}

.values-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.values-header-block {
  text-align: center;
  margin-bottom: 4rem;
  animation: slideUp 0.8s ease-out;
}

.values-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.4rem;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 25px;
  margin-bottom: 2rem;
  backdrop-filter: blur(12px);
}

.values-badge-dot {
  width: 8px;
  height: 8px;
  background: #f97316;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.6);
  animation: dotPulse 2s ease-in-out infinite;
}

.values-badge-label {
  color: #f97316;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.values-main-heading {
  font-size: 3.2rem;
  font-weight: 700;
  font-family: 'Quando', serif;
  margin-bottom: 1rem;
  color: #ffffff;
}

.values-subheading {
  font-size: 1.1rem;
  color: #d1d5db;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.values-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-card-item {
  background: rgba(31, 41, 55, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(249, 115, 22, 0.2);
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: slideUp 0.8s ease-out both;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.value-card-item:nth-child(1) { animation-delay: 0.1s; }
.value-card-item:nth-child(2) { animation-delay: 0.2s; }
.value-card-item:nth-child(3) { animation-delay: 0.3s; }
.value-card-item:nth-child(4) { animation-delay: 0.4s; }

.value-card-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f97316, #6b7280, #f97316);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.value-card-item:hover {
  transform: translateY(-8px);
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 20px 60px rgba(249, 115, 22, 0.2);
}

.value-card-icon-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.value-card-icon-bg {
  position: absolute;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(107, 114, 128, 0.2));
  border-radius: 16px;
  border: 1px solid rgba(249, 115, 22, 0.3);
  transition: all 0.3s ease;
}

.value-card-item:hover .value-card-icon-bg {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.3), rgba(107, 114, 128, 0.3));
}

.value-card-icon-wrapper .material-icons-outlined {
  position: relative;
  z-index: 1;
  font-size: 2.2rem;
  color: #f97316;
  display: block;
  padding: 1rem;
}

.value-card-content {
  position: relative;
  z-index: 1;
}

.value-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Quando', serif;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.value-card-description {
  color: #d1d5db;
  line-height: 1.7;
  font-size: 1rem;
}

.value-card-accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.value-card-item:hover .value-card-accent-line {
  opacity: 1;
}

.about-team-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: #0f172a;
}

.team-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.team-orange-accent {
  position: absolute;
  width: 600px;
  height: 600px;
  top: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: glowPulse 9s ease-in-out infinite;
}

.team-gray-accent {
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -150px;
  right: -150px;
  background: radial-gradient(circle, rgba(107, 114, 128, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  animation: glowPulse 11s ease-in-out infinite reverse;
}

.team-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.team-header-block {
  text-align: center;
  margin-bottom: 4rem;
  animation: slideUp 0.8s ease-out;
}

.team-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.4rem;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 25px;
  margin-bottom: 2rem;
  backdrop-filter: blur(12px);
}

.team-badge-dot {
  width: 8px;
  height: 8px;
  background: #f97316;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.6);
  animation: dotPulse 2s ease-in-out infinite;
}

.team-badge-label {
  color: #f97316;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.team-main-heading {
  font-size: 3.2rem;
  font-weight: 700;
  font-family: 'Quando', serif;
  margin-bottom: 1rem;
  color: #ffffff;
}

.team-subheading {
  font-size: 1.1rem;
  color: #d1d5db;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.team-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.team-member-card {
  background: rgba(31, 41, 55, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(249, 115, 22, 0.2);
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  animation: slideUp 0.8s ease-out both;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.team-member-card:nth-child(1) { animation-delay: 0.1s; }
.team-member-card:nth-child(2) { animation-delay: 0.2s; }
.team-member-card:nth-child(3) { animation-delay: 0.3s; }

.team-member-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f97316, #6b7280, #f97316);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.team-member-card:hover {
  transform: translateY(-8px);
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 20px 60px rgba(249, 115, 22, 0.2);
}

.team-member-icon-wrapper {
  position: relative;
  margin: 0 auto 1.5rem;
  display: inline-block;
}

.team-member-icon-bg {
  position: absolute;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(107, 114, 128, 0.2));
  border-radius: 50%;
  border: 1px solid rgba(249, 115, 22, 0.3);
  transition: all 0.3s ease;
}

.team-member-card:hover .team-member-icon-bg {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.3), rgba(107, 114, 128, 0.3));
}

.team-member-icon-wrapper .material-icons-outlined {
  position: relative;
  z-index: 1;
  font-size: 3rem;
  color: #f97316;
  display: block;
  padding: 1.5rem;
}

.team-member-content {
  position: relative;
  z-index: 1;
}

.team-member-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Quando', serif;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.team-member-description {
  color: #d1d5db;
  line-height: 1.7;
  font-size: 1rem;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-hero-section {
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
  background: #1f2937;
}

.contact-hero-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.contact-hero-orange-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  top: -150px;
  right: -150px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  animation: glowPulse 8s ease-in-out infinite;
}

.contact-hero-gray-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(107, 114, 128, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: glowPulse 10s ease-in-out infinite reverse;
}

.contact-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.contact-hero-header-block {
  text-align: center;
  margin-bottom: 4rem;
  animation: slideUp 0.8s ease-out;
}

.contact-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.4rem;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 25px;
  margin-bottom: 2rem;
  backdrop-filter: blur(12px);
}

.contact-hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #f97316;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.6);
  animation: dotPulse 2s ease-in-out infinite;
}

.contact-hero-badge-label {
  color: #f97316;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.contact-hero-main-heading {
  font-size: 3.8rem;
  font-weight: 700;
  font-family: 'Quando', serif;
  margin-bottom: 1.5rem;
  color: #ffffff;
  line-height: 1.2;
}

.contact-hero-description {
  font-size: 1.15rem;
  color: #d1d5db;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.contact-form-section {
  animation: slideUp 0.8s ease-out 0.2s both;
}

.contact-form-card {
  background: rgba(31, 41, 55, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 26px;
  border: 1px solid rgba(249, 115, 22, 0.2);
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.contact-form {
  margin-bottom: 2.5rem;
}

.form-field-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-field-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-field-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #d1d5db;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.label-icon {
  display: flex;
  align-items: center;
  color: #f97316;
  font-size: 1.2rem;
}

.form-field-input {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-field-input:focus {
  outline: none;
  border-color: rgba(249, 115, 22, 0.5);
  background: rgba(15, 23, 42, 0.8);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-field-input::placeholder {
  color: #9ca3af;
}

.error-message {
  color: #ef4444;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: none;
}

.error-message:not(:empty) {
  display: block;
}

.contact-form-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.15rem 2.4rem;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #ffffff;
  text-decoration: none;
  border: none;
  border-radius: 28px;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Quando', serif;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
  cursor: pointer;
}

.contact-form-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(249, 115, 22, 0.5);
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
}

.submit-btn-text {
  position: relative;
  z-index: 1;
}

.submit-btn-icon {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.contact-form-submit-btn:hover .submit-btn-icon {
  transform: translateX(5px);
}

.contact-form-cta {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(249, 115, 22, 0.2);
}

.contact-form-cta .cta-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Quando', serif;
  margin-bottom: 0.75rem;
}

.contact-form-cta .cta-text {
  color: #d1d5db;
  font-size: 1rem;
  line-height: 1.7;
}

.contact-methods-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: #0f172a;
}

.contact-methods-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.contact-methods-orange-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  top: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: glowPulse 9s ease-in-out infinite;
}

.contact-methods-gray-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -150px;
  right: -150px;
  background: radial-gradient(circle, rgba(107, 114, 128, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  animation: glowPulse 11s ease-in-out infinite reverse;
}

.contact-methods-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.contact-methods-header-block {
  text-align: center;
  margin-bottom: 4rem;
  animation: slideUp 0.8s ease-out;
}

.contact-methods-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.4rem;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 25px;
  margin-bottom: 2rem;
  backdrop-filter: blur(12px);
}

.contact-methods-badge-dot {
  width: 8px;
  height: 8px;
  background: #f97316;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.6);
  animation: dotPulse 2s ease-in-out infinite;
}

.contact-methods-badge-label {
  color: #f97316;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.contact-methods-main-heading {
  font-size: 3.2rem;
  font-weight: 700;
  font-family: 'Quando', serif;
  margin-bottom: 1rem;
  color: #ffffff;
}

.contact-methods-subheading {
  font-size: 1.1rem;
  color: #d1d5db;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.contact-method-card {
  background: rgba(31, 41, 55, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(249, 115, 22, 0.2);
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: slideUp 0.8s ease-out both;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.contact-method-card:nth-child(1) { animation-delay: 0.1s; }
.contact-method-card:nth-child(2) { animation-delay: 0.2s; }
.contact-method-card:nth-child(3) { animation-delay: 0.3s; }
.contact-method-card:nth-child(4) { animation-delay: 0.4s; }

.contact-method-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f97316, #6b7280, #f97316);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.contact-method-card:hover {
  transform: translateY(-8px);
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 20px 60px rgba(249, 115, 22, 0.2);
}

.method-card-icon-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.method-card-icon-bg {
  position: absolute;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(107, 114, 128, 0.2));
  border-radius: 16px;
  border: 1px solid rgba(249, 115, 22, 0.3);
  transition: all 0.3s ease;
}

.contact-method-card:hover .method-card-icon-bg {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.3), rgba(107, 114, 128, 0.3));
}

.method-card-icon-wrapper .material-icons-outlined {
  position: relative;
  z-index: 1;
  font-size: 2.2rem;
  color: #f97316;
  display: block;
  padding: 1rem;
}

.method-card-content {
  position: relative;
  z-index: 1;
}

.method-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Quando', serif;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.method-card-description {
  color: #d1d5db;
  line-height: 1.7;
  font-size: 1rem;
}

.method-card-accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-method-card:hover .method-card-accent-line {
  opacity: 1;
}

.contact-faq-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: #1f2937;
}

.contact-faq-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.contact-faq-orange-accent {
  position: absolute;
  width: 500px;
  height: 500px;
  top: -150px;
  right: -150px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  animation: glowPulse 8s ease-in-out infinite;
}

.contact-faq-gray-accent {
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(107, 114, 128, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: glowPulse 10s ease-in-out infinite reverse;
}

.contact-faq-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.contact-faq-header-block {
  text-align: center;
  margin-bottom: 4rem;
  animation: slideUp 0.8s ease-out;
}

.contact-faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.4rem;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 25px;
  margin-bottom: 2rem;
  backdrop-filter: blur(12px);
}

.contact-faq-badge-dot {
  width: 8px;
  height: 8px;
  background: #f97316;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.6);
  animation: dotPulse 2s ease-in-out infinite;
}

.contact-faq-badge-label {
  color: #f97316;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.contact-faq-main-heading {
  font-size: 3.2rem;
  font-weight: 700;
  font-family: 'Quando', serif;
  margin-bottom: 1rem;
  color: #ffffff;
}

.contact-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.contact-faq-card {
  background: rgba(31, 41, 55, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(249, 115, 22, 0.2);
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: slideUp 0.8s ease-out both;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.contact-faq-card:nth-child(1) { animation-delay: 0.1s; }
.contact-faq-card:nth-child(2) { animation-delay: 0.2s; }
.contact-faq-card:nth-child(3) { animation-delay: 0.3s; }
.contact-faq-card:nth-child(4) { animation-delay: 0.4s; }

.contact-faq-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f97316, #6b7280, #f97316);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.contact-faq-card:hover {
  transform: translateY(-8px);
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 20px 60px rgba(249, 115, 22, 0.2);
}

.faq-card-icon-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.faq-card-icon-bg {
  position: absolute;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(107, 114, 128, 0.2));
  border-radius: 16px;
  border: 1px solid rgba(249, 115, 22, 0.3);
  transition: all 0.3s ease;
}

.contact-faq-card:hover .faq-card-icon-bg {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.3), rgba(107, 114, 128, 0.3));
}

.faq-card-icon-wrapper .material-icons-outlined {
  position: relative;
  z-index: 1;
  font-size: 2.2rem;
  color: #f97316;
  display: block;
  padding: 1rem;
}

.faq-card-content {
  position: relative;
  z-index: 1;
}

.faq-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Quando', serif;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.faq-card-description {
  color: #d1d5db;
  line-height: 1.7;
  font-size: 1rem;
}

/* ===== FAQ PAGE STYLES ===== */
.faq-main-section {
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
  background: #1f2937;
}

.faq-main-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.faq-main-orange-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  top: -150px;
  right: -150px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  animation: glowPulse 8s ease-in-out infinite;
}

.faq-main-gray-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(107, 114, 128, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: glowPulse 10s ease-in-out infinite reverse;
}

.faq-main-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.faq-main-header-block {
  text-align: center;
  margin-bottom: 4rem;
  animation: slideUp 0.8s ease-out;
}

.faq-main-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.4rem;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 25px;
  margin-bottom: 2rem;
  backdrop-filter: blur(12px);
}

.faq-main-badge-dot {
  width: 8px;
  height: 8px;
  background: #f97316;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.6);
  animation: dotPulse 2s ease-in-out infinite;
}

.faq-main-badge-label {
  color: #f97316;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.faq-main-heading {
  font-size: 3.8rem;
  font-weight: 700;
  font-family: 'Quando', serif;
  margin-bottom: 1.5rem;
  color: #ffffff;
  line-height: 1.2;
}

.faq-main-subheading {
  font-size: 1.15rem;
  color: #d1d5db;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.faq-main-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.faq-main-card {
  background: rgba(31, 41, 55, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(249, 115, 22, 0.2);
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: slideUp 0.8s ease-out both;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.faq-main-card:nth-child(1) { animation-delay: 0.1s; }
.faq-main-card:nth-child(2) { animation-delay: 0.2s; }
.faq-main-card:nth-child(3) { animation-delay: 0.3s; }
.faq-main-card:nth-child(4) { animation-delay: 0.4s; }
.faq-main-card:nth-child(5) { animation-delay: 0.5s; }
.faq-main-card:nth-child(6) { animation-delay: 0.6s; }

.faq-main-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f97316, #6b7280, #f97316);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.faq-main-card:hover {
  transform: translateY(-8px);
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 20px 60px rgba(249, 115, 22, 0.2);
}

.faq-main-card-icon-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.faq-main-card-icon-bg {
  position: absolute;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(107, 114, 128, 0.2));
  border-radius: 16px;
  border: 1px solid rgba(249, 115, 22, 0.3);
  transition: all 0.3s ease;
}

.faq-main-card:hover .faq-main-card-icon-bg {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.3), rgba(107, 114, 128, 0.3));
}

.faq-main-card-icon-wrapper .material-icons-outlined {
  position: relative;
  z-index: 1;
  font-size: 2.2rem;
  color: #f97316;
  display: block;
  padding: 1rem;
}

.faq-main-card-content {
  position: relative;
  z-index: 1;
}

.faq-main-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Quando', serif;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.faq-main-card-description {
  color: #d1d5db;
  line-height: 1.7;
  font-size: 1rem;
}

.faq-main-card-accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-main-card:hover .faq-main-card-accent-line {
  opacity: 1;
}

.faq-additional-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: #0f172a;
}

.faq-additional-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.faq-additional-orange-accent {
  position: absolute;
  width: 600px;
  height: 600px;
  top: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: glowPulse 9s ease-in-out infinite;
}

.faq-additional-gray-accent {
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -150px;
  right: -150px;
  background: radial-gradient(circle, rgba(107, 114, 128, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  animation: glowPulse 11s ease-in-out infinite reverse;
}

.faq-additional-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.faq-additional-header-block {
  text-align: center;
  margin-bottom: 4rem;
  animation: slideUp 0.8s ease-out;
}

.faq-additional-main-heading {
  font-size: 3.2rem;
  font-weight: 700;
  font-family: 'Quando', serif;
  margin-bottom: 1rem;
  color: #ffffff;
}

.faq-additional-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.faq-additional-card {
  background: rgba(31, 41, 55, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(249, 115, 22, 0.2);
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: slideUp 0.8s ease-out both;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.faq-additional-card:nth-child(1) { animation-delay: 0.1s; }
.faq-additional-card:nth-child(2) { animation-delay: 0.2s; }
.faq-additional-card:nth-child(3) { animation-delay: 0.3s; }
.faq-additional-card:nth-child(4) { animation-delay: 0.4s; }

.faq-additional-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f97316, #6b7280, #f97316);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.faq-additional-card:hover {
  transform: translateY(-8px);
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 20px 60px rgba(249, 115, 22, 0.2);
}

.faq-additional-card-icon-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.faq-additional-card-icon-bg {
  position: absolute;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(107, 114, 128, 0.2));
  border-radius: 16px;
  border: 1px solid rgba(249, 115, 22, 0.3);
  transition: all 0.3s ease;
}

.faq-additional-card:hover .faq-additional-card-icon-bg {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.3), rgba(107, 114, 128, 0.3));
}

.faq-additional-card-icon-wrapper .material-icons-outlined {
  position: relative;
  z-index: 1;
  font-size: 2.2rem;
  color: #f97316;
  display: block;
  padding: 1rem;
}

.faq-additional-card-content {
  position: relative;
  z-index: 1;
}

.faq-additional-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Quando', serif;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.faq-additional-card-description {
  color: #d1d5db;
  line-height: 1.7;
  font-size: 1rem;
}

.faq-cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: #1f2937;
}

.faq-cta-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.faq-cta-orange-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  top: -150px;
  right: -150px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  animation: glowPulse 8s ease-in-out infinite;
}

.faq-cta-gray-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(107, 114, 128, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: glowPulse 10s ease-in-out infinite reverse;
}

.faq-cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.faq-cta-content-block {
  text-align: center;
  padding: 3.5rem;
  background: rgba(31, 41, 55, 0.6);
  backdrop-filter: blur(20px);
  border-radius: 26px;
  border: 1px solid rgba(249, 115, 22, 0.2);
  animation: slideUp 0.8s ease-out;
}

.faq-cta-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Quando', serif;
  margin-bottom: 1rem;
}

.faq-cta-text {
  color: #d1d5db;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.faq-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.15rem 2.4rem;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 28px;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Quando', serif;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.faq-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(249, 115, 22, 0.5);
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
}

.faq-cta-button .cta-button-text {
  position: relative;
  z-index: 1;
}

.faq-cta-button .cta-button-icon {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.faq-cta-button:hover .cta-button-icon {
  transform: translateX(5px);
}

/* ===== RESPONSIVE STYLES FOR ALL PAGES ===== */
@media (max-width: 1024px) {
  .about-hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-hero-image-wrapper {
    order: -1;
  }
  
  .form-field-group {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-hero-main-heading,
  .contact-hero-main-heading,
  .faq-main-heading {
    font-size: 2.5rem;
  }
  
  .about-hero-description,
  .contact-hero-description,
  .faq-main-subheading {
    font-size: 1rem;
  }
  
  .approach-main-heading,
  .values-main-heading,
  .team-main-heading,
  .contact-methods-main-heading,
  .contact-faq-main-heading,
  .faq-additional-main-heading {
    font-size: 2.2rem;
  }
  
  .approach-features-grid,
  .values-cards-grid,
  .team-cards-grid,
  .contact-methods-grid,
  .contact-faq-grid,
  .faq-main-grid,
  .faq-additional-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-form-card {
    padding: 2rem;
  }
  
  .faq-cta-content-block {
    padding: 2.5rem;
  }
  
  .faq-cta-heading {
    font-size: 1.8rem;
  }
}

/* ===== COOKIE POLICY PAGE STYLES ===== */
.cookie-policy-hero-section {
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
  background: #1f2937;
}

.cookie-policy-hero-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.cookie-policy-hero-orange-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  top: -150px;
  right: -150px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  animation: glowPulse 8s ease-in-out infinite;
}

.cookie-policy-hero-gray-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(107, 114, 128, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: glowPulse 10s ease-in-out infinite reverse;
}

.cookie-policy-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.cookie-policy-hero-header-block {
  text-align: center;
  animation: slideUp 0.8s ease-out;
}

.cookie-policy-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.4rem;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 25px;
  margin-bottom: 2rem;
  backdrop-filter: blur(12px);
}

.cookie-policy-hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #f97316;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.6);
  animation: dotPulse 2s ease-in-out infinite;
}

.cookie-policy-hero-badge-label {
  color: #f97316;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.cookie-policy-hero-main-heading {
  font-size: 3.8rem;
  font-weight: 700;
  font-family: 'Quando', serif;
  margin-bottom: 1.5rem;
  color: #ffffff;
  line-height: 1.2;
}

.cookie-policy-hero-description {
  font-size: 1.15rem;
  color: #d1d5db;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.cookie-policy-content-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: #0f172a;
}

.cookie-policy-content-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.cookie-policy-content-orange-accent {
  position: absolute;
  width: 600px;
  height: 600px;
  top: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: glowPulse 9s ease-in-out infinite;
}

.cookie-policy-content-gray-accent {
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -150px;
  right: -150px;
  background: radial-gradient(circle, rgba(107, 114, 128, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  animation: glowPulse 11s ease-in-out infinite reverse;
}

.cookie-policy-content-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.cookie-policy-intro-card {
  background: rgba(31, 41, 55, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(249, 115, 22, 0.2);
  padding: 3rem;
  margin-bottom: 3rem;
  text-align: center;
  animation: slideUp 0.8s ease-out;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.policy-intro-icon-wrapper {
  position: relative;
  margin: 0 auto 1.5rem;
  display: inline-block;
}

.policy-intro-icon-bg {
  position: absolute;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(107, 114, 128, 0.2));
  border-radius: 50%;
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.policy-intro-icon-wrapper .material-icons-outlined {
  position: relative;
  z-index: 1;
  font-size: 2.5rem;
  color: #f97316;
  display: block;
  padding: 1.5rem;
}

.policy-intro-text {
  color: #d1d5db;
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0;
}

.cookie-policy-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.cookie-policy-item-card {
  background: rgba(31, 41, 55, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(249, 115, 22, 0.2);
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: slideUp 0.8s ease-out both;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cookie-policy-item-card:nth-child(1) { animation-delay: 0.1s; }
.cookie-policy-item-card:nth-child(2) { animation-delay: 0.2s; }
.cookie-policy-item-card:nth-child(3) { animation-delay: 0.3s; }
.cookie-policy-item-card:nth-child(4) { animation-delay: 0.4s; }
.cookie-policy-item-card:nth-child(5) { animation-delay: 0.5s; }
.cookie-policy-item-card:nth-child(6) { animation-delay: 0.6s; }
.cookie-policy-item-card:nth-child(7) { animation-delay: 0.7s; }
.cookie-policy-item-card:nth-child(8) { animation-delay: 0.8s; }
.cookie-policy-item-card:nth-child(9) { animation-delay: 0.9s; }

.cookie-policy-item-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f97316, #6b7280, #f97316);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.cookie-policy-item-card:hover {
  transform: translateY(-8px);
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 20px 60px rgba(249, 115, 22, 0.2);
}

.policy-item-icon-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.policy-item-icon-bg {
  position: absolute;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(107, 114, 128, 0.2));
  border-radius: 16px;
  border: 1px solid rgba(249, 115, 22, 0.3);
  transition: all 0.3s ease;
}

.cookie-policy-item-card:hover .policy-item-icon-bg {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.3), rgba(107, 114, 128, 0.3));
}

.policy-item-icon-wrapper .material-icons-outlined {
  position: relative;
  z-index: 1;
  font-size: 2.2rem;
  color: #f97316;
  display: block;
  padding: 1rem;
}

.policy-item-content {
  position: relative;
  z-index: 1;
}

.policy-item-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Quando', serif;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.policy-item-description {
  color: #d1d5db;
  line-height: 1.7;
  font-size: 1rem;
}

.policy-item-link {
  color: #f97316;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.policy-item-link:hover {
  color: #ea580c;
  text-decoration: underline;
}

.policy-item-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.policy-item-list-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(249, 115, 22, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(249, 115, 22, 0.15);
  transition: all 0.3s ease;
}

.policy-item-list-row:hover {
  background: rgba(249, 115, 22, 0.08);
  transform: translateX(5px);
}

.list-row-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(107, 114, 128, 0.2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.list-row-icon .material-icons-outlined {
  color: #f97316;
  font-size: 1.5rem;
}

.list-row-content {
  flex: 1;
}

.list-row-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-family: 'Quando', serif;
}

.list-row-text {
  color: #d1d5db;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

.policy-item-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.policy-feature-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(249, 115, 22, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(249, 115, 22, 0.15);
  transition: all 0.3s ease;
}

.policy-feature-row:hover {
  background: rgba(249, 115, 22, 0.08);
  transform: translateX(5px);
}

.feature-icon {
  display: flex;
  align-items: center;
  color: #f97316;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-text {
  color: #d1d5db;
  font-size: 1rem;
  line-height: 1.6;
}

.policy-item-accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cookie-policy-item-card:hover .policy-item-accent-line {
  opacity: 1;
}

/* ===== PRIVACY POLICY PAGE STYLES ===== */
.privacy-policy-hero-section {
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
  background: #1f2937;
}

.privacy-policy-hero-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.privacy-policy-hero-orange-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  top: -150px;
  right: -150px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  animation: glowPulse 8s ease-in-out infinite;
}

.privacy-policy-hero-gray-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(107, 114, 128, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: glowPulse 10s ease-in-out infinite reverse;
}

.privacy-policy-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.privacy-policy-hero-header-block {
  text-align: center;
  animation: slideUp 0.8s ease-out;
}

.privacy-policy-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.4rem;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 25px;
  margin-bottom: 2rem;
  backdrop-filter: blur(12px);
}

.privacy-policy-hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #f97316;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.6);
  animation: dotPulse 2s ease-in-out infinite;
}

.privacy-policy-hero-badge-label {
  color: #f97316;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.privacy-policy-hero-main-heading {
  font-size: 3.8rem;
  font-weight: 700;
  font-family: 'Quando', serif;
  margin-bottom: 1.5rem;
  color: #ffffff;
  line-height: 1.2;
}

.privacy-policy-hero-description {
  font-size: 1.15rem;
  color: #d1d5db;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.privacy-policy-content-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: #0f172a;
}

.privacy-policy-content-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.privacy-policy-content-orange-accent {
  position: absolute;
  width: 600px;
  height: 600px;
  top: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: glowPulse 9s ease-in-out infinite;
}

.privacy-policy-content-gray-accent {
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -150px;
  right: -150px;
  background: radial-gradient(circle, rgba(107, 114, 128, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  animation: glowPulse 11s ease-in-out infinite reverse;
}

.privacy-policy-content-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.privacy-policy-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.privacy-policy-item-card {
  background: rgba(31, 41, 55, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(249, 115, 22, 0.2);
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: slideUp 0.8s ease-out both;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.privacy-policy-item-card:nth-child(1) { animation-delay: 0.1s; }
.privacy-policy-item-card:nth-child(2) { animation-delay: 0.2s; }
.privacy-policy-item-card:nth-child(3) { animation-delay: 0.3s; }
.privacy-policy-item-card:nth-child(4) { animation-delay: 0.4s; }
.privacy-policy-item-card:nth-child(5) { animation-delay: 0.5s; }
.privacy-policy-item-card:nth-child(6) { animation-delay: 0.6s; }
.privacy-policy-item-card:nth-child(7) { animation-delay: 0.7s; }
.privacy-policy-item-card:nth-child(8) { animation-delay: 0.8s; }
.privacy-policy-item-card:nth-child(9) { animation-delay: 0.9s; }

.privacy-policy-item-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f97316, #6b7280, #f97316);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.privacy-policy-item-card:hover {
  transform: translateY(-8px);
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 20px 60px rgba(249, 115, 22, 0.2);
}

.policy-item-rights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.policy-right-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  background: rgba(249, 115, 22, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(249, 115, 22, 0.15);
  transition: all 0.3s ease;
}

.policy-right-row:hover {
  background: rgba(249, 115, 22, 0.08);
  transform: translateX(5px);
}

.right-icon {
  display: flex;
  align-items: center;
  color: #f97316;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.right-text {
  color: #d1d5db;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== TERMS OF USE PAGE STYLES ===== */
.terms-hero-section {
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
  background: #1f2937;
}

.terms-hero-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.terms-hero-orange-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  top: -150px;
  right: -150px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  animation: glowPulse 8s ease-in-out infinite;
}

.terms-hero-gray-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(107, 114, 128, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: glowPulse 10s ease-in-out infinite reverse;
}

.terms-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.terms-hero-header-block {
  text-align: center;
  animation: slideUp 0.8s ease-out;
}

.terms-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.4rem;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 25px;
  margin-bottom: 2rem;
  backdrop-filter: blur(12px);
}

.terms-hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #f97316;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.6);
  animation: dotPulse 2s ease-in-out infinite;
}

.terms-hero-badge-label {
  color: #f97316;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.terms-hero-main-heading {
  font-size: 3.8rem;
  font-weight: 700;
  font-family: 'Quando', serif;
  margin-bottom: 1.5rem;
  color: #ffffff;
  line-height: 1.2;
}

.terms-hero-description {
  font-size: 1.15rem;
  color: #d1d5db;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.terms-content-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: #0f172a;
}

.terms-content-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.terms-content-orange-accent {
  position: absolute;
  width: 600px;
  height: 600px;
  top: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: glowPulse 9s ease-in-out infinite;
}

.terms-content-gray-accent {
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -150px;
  right: -150px;
  background: radial-gradient(circle, rgba(107, 114, 128, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  animation: glowPulse 11s ease-in-out infinite reverse;
}

.terms-content-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.terms-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.terms-item-card {
  background: rgba(31, 41, 55, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(249, 115, 22, 0.2);
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: slideUp 0.8s ease-out both;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.terms-item-card:nth-child(1) { animation-delay: 0.1s; }
.terms-item-card:nth-child(2) { animation-delay: 0.2s; }
.terms-item-card:nth-child(3) { animation-delay: 0.3s; }
.terms-item-card:nth-child(4) { animation-delay: 0.4s; }
.terms-item-card:nth-child(5) { animation-delay: 0.5s; }
.terms-item-card:nth-child(6) { animation-delay: 0.6s; }
.terms-item-card:nth-child(7) { animation-delay: 0.7s; }
.terms-item-card:nth-child(8) { animation-delay: 0.8s; }
.terms-item-card:nth-child(9) { animation-delay: 0.9s; }
.terms-item-card:nth-child(10) { animation-delay: 1s; }
.terms-item-card:nth-child(11) { animation-delay: 1.1s; }

.terms-item-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f97316, #6b7280, #f97316);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.terms-item-card:hover {
  transform: translateY(-8px);
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 20px 60px rgba(249, 115, 22, 0.2);
}

/* ===== THANKS PAGE STYLES ===== */
.thanks-hero-section {
  padding: 200px 0;
  position: relative;
  overflow: hidden;
  background: #1f2937;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-hero-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.thanks-hero-orange-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  top: -150px;
  right: -150px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  animation: glowPulse 8s ease-in-out infinite;
}

.thanks-hero-gray-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(107, 114, 128, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: glowPulse 10s ease-in-out infinite reverse;
}

.thanks-hero-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.thanks-content-card {
  background: rgba(31, 41, 55, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 26px;
  border: 1px solid rgba(249, 115, 22, 0.2);
  padding: 4rem;
  text-align: center;
  animation: slideUp 0.8s ease-out;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.thanks-content-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f97316, #6b7280, #f97316);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.thanks-icon-wrapper {
  position: relative;
  margin: 0 auto 2rem;
  display: inline-block;
}

.thanks-icon-bg {
  position: absolute;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(107, 114, 128, 0.2));
  border-radius: 50%;
  border: 1px solid rgba(249, 115, 22, 0.3);
  animation: glowPulse 3s ease-in-out infinite;
}

.thanks-icon-wrapper .material-icons-outlined {
  position: relative;
  z-index: 1;
  font-size: 4rem;
  color: #f97316;
  display: block;
  padding: 2rem;
}

.thanks-main-heading {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Quando', serif;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.thanks-description {
  font-size: 1.2rem;
  color: #d1d5db;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.thanks-sub-description {
  font-size: 1rem;
  color: #9ca3af;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.thanks-home-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.15rem 2.4rem;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 28px;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Quando', serif;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.thanks-home-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(249, 115, 22, 0.5);
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
}

.button-text {
  position: relative;
  z-index: 1;
}

.button-icon {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.thanks-home-button:hover .button-icon {
  transform: translateX(5px);
}

/* ===== RESPONSIVE STYLES FOR POLICY PAGES ===== */
@media (max-width: 1024px) {
  .cookie-policy-items-grid,
  .privacy-policy-items-grid,
  .terms-items-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .cookie-policy-hero-main-heading,
  .privacy-policy-hero-main-heading,
  .terms-hero-main-heading {
    font-size: 2.5rem;
  }
  
  .cookie-policy-hero-description,
  .privacy-policy-hero-description,
  .terms-hero-description {
    font-size: 1rem;
  }
  
  .cookie-policy-items-grid,
  .privacy-policy-items-grid,
  .terms-items-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .cookie-policy-intro-card,
  .thanks-content-card {
    padding: 2rem;
  }
  
  .thanks-main-heading {
    font-size: 2.5rem;
  }
  
  .thanks-description {
    font-size: 1.1rem;
  }
  
  .policy-item-rights {
    grid-template-columns: 1fr;
  }
}