/* async.ac Website Styles - Brand Guidelines */

:root {
  /* Brand Colors */
  --primary-color: #cea676;
  --secondary-color: #dfcaa1;
  --dark-bg: #091e21;
  --light-bg: #ffffff;
  --gray-bg: #f5f5f5;
  --text-primary: #091e21;
  --text-secondary: #666666;
  --border-color: #e0e0e0;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
  --gradient-start: #cea676;
  --gradient-end: #dfcaa1;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  overflow-x: hidden;
}

/* Header Styles */
.async-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1010;
  box-shadow: none;
  /*background: rgba(255,255,255,0.1);*/
  /*border-radius: 25px;*/
  /*backdrop-filter: blur(4px);*/
  /*border: 2px solid rgba(255,255,255,0.2);*/
}

.async-header .k-appbar {
  border-radius: 25px;
  backdrop-filter: blur(20px) saturate(180%) brightness(0.7);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: linear-gradient(
    135deg,
    rgba(9, 30, 33, 0.85) 0%,
    rgba(9, 30, 33, 0.75) 50%,
    rgba(9, 30, 33, 0.65) 100%
  );
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}


.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

.header-logo {
  height: 50px;
  width: auto;
  margin-left: 10px;
  object-fit: contain;
}

.async-nav {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-link {
  color: #e0e0e0;
  text-decoration: none;
  padding: 10px 20px;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: transparent;
  display: flex;
  align-items: center;
}

/*.nav-link span {*/
/*  font-family: "Orbitron", sans-serif;*/
/*  color: white;*/
/*  font-size: 2.5rem;*/
/*  font-weight: 600;*/
/*  text-transform: uppercase;*/
/*  letter-spacing: 0.1em;*/
/*}*/

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


.nav-link.active {
  cursor: pointer;
  outline: none;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.12) 100%
  );
  backdrop-filter: blur(15px) saturate(150%);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2),
              0 2px 4px rgba(0, 0, 0, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.3),
              0 0 20px rgba(255, 255, 255, 0.08);
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

main {
  margin-top: 0;
  padding-top: 0;
}

.async-page {
  width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Image Placeholders */
.image-placeholder {
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-bg);
  font-weight: 600;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  min-height: 200px;
}

.image-placeholder.small {
  min-height: 80px;
  font-size: 14px;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-bg);
  color: var(--text-primary);
  padding: 0;
  position: relative;
  margin: 0;
  margin-top: -70px;
  padding-top: 70px;
}

/* Particles.js Canvas */
#particles-js {
  position: absolute;
  width: 100%;
  height: calc(100% + 70px);
  top: -70px;
  left: 0;
  z-index: 1001;
  pointer-events: auto;
}

#particles-js canvas {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: auto;
}

.hero-content-center {
  text-align: center;
  position: relative;
  z-index: 1002;
}

.hero-main-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin: 0;
  color: #e0e0e0;
  letter-spacing: -0.02em;
}

.hero-subtitle-text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  margin: 20px auto 0 auto;
  color: #e0e0e0;
  white-space: nowrap;
  text-align: center;
  width: 100%;
  letter-spacing: -0.01em;
}

.hero-btn-outline,
.hero-btn-outline.k-button {
  margin-top: 30px;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 400;
  background: transparent !important;
  border: 2px solid var(--primary-color) !important;
  color: var(--primary-color) !important;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  box-shadow: none !important;
}

.hero-btn-outline:hover,
.hero-btn-outline.k-button:hover {
  background: var(--primary-color) !important;
  color: white !important;
  border-color: var(--primary-color) !important;
}

.hero-section .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: #cccccc;
}

.hero-cta {
  display: flex;
  gap: 20px;
}

.hero-image .image-placeholder {
  min-height: 400px;
  animation: fadeIn 1.5s ease-out;
}

/* Buttons */
.btn {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px) saturate(180%);
}

.btn-primary {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.12) 100%
  );
  color: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 255, 255, 0.18) 100%
  );
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-secondary {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
  color: #e0e0e0;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3),
              0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.06) 50%,
    rgba(255, 255, 255, 0.03) 100%
  );
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Buttons for Light/White Backgrounds */

/* Option 1: Teal Glass - Dark greenish glass with brand color */
.btn-teal {
  background: linear-gradient(
    135deg,
    rgba(9, 30, 33, 0.85) 0%,
    rgba(9, 30, 33, 0.75) 50%,
    rgba(9, 30, 33, 0.7) 100%
  );
  color: white;
  border: 1px solid rgba(9, 30, 33, 0.9);
  box-shadow: 0 4px 16px rgba(9, 30, 33, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px) saturate(150%);
}

.btn-teal:hover {
  background: linear-gradient(
    135deg,
    rgba(9, 30, 33, 0.95) 0%,
    rgba(9, 30, 33, 0.85) 50%,
    rgba(9, 30, 33, 0.8) 100%
  );
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(9, 30, 33, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(9, 30, 33, 1);
}

/* Option 2: Golden Glass - Elegant glass with primary brand color */
.btn-gold {
  background: linear-gradient(
    135deg,
    rgba(206, 166, 118, 0.85) 0%,
    rgba(223, 202, 161, 0.75) 50%,
    rgba(206, 166, 118, 0.7) 100%
  );
  color: var(--dark-bg);
  border: 1px solid rgba(206, 166, 118, 0.9);
  box-shadow: 0 4px 16px rgba(206, 166, 118, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px) saturate(150%);
}

.btn-gold:hover {
  background: linear-gradient(
    135deg,
    rgba(206, 166, 118, 0.95) 0%,
    rgba(223, 202, 161, 0.85) 50%,
    rgba(206, 166, 118, 0.8) 100%
  );
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(206, 166, 118, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border-color: rgba(206, 166, 118, 1);
}

/* Option 3: Frosted Elevated - Subtle gray glass with strong depth */
.btn-frosted {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.3) 100%
  );
  color: var(--text-primary);
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1),
              0 8px 32px rgba(0, 0, 0, 0.05),
              inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
}

.btn-frosted:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.7) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.4) 100%
  );
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15),
              0 12px 48px rgba(0, 0, 0, 0.08),
              inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.2);
}

/* Section Styles */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2:not(.about-heading) {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.section-header .about-heading {
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about-section {
  background: var(--gray-bg);
  padding: 100px 0;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-heading {
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.about-subheading {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--secondary-color);
  margin-bottom: 40px;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 25px;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.feature-card {
  text-align: center;
  padding: 40px;
  border-radius: 15px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card:hover {
  transform: scale(1.02);
}

.feature-icon {
  margin-bottom: 20px;
  height: 80px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--light-bg);
}

.feature-card p {
  color: var(--light-bg);
  line-height: 1.8;
}

/* Services Section */
.services-section {
  background: var(--dark-bg);
  padding: 100px 0;
}

.services-section .about-heading {
  color: var(--primary-color);
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.service-card {
  padding: 40px;
  border-radius: 15px;
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.05) 100%
  );
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.service-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-align: center;
}

.service-description {
  font-family: 'Montserrat', sans-serif;
  color: var(--light-bg);
  line-height: 1.8;
  font-size: 1rem;
  text-align: center;
}

.services-grid {
  display: grid;
  gap: 40px;
  margin-top: 60px;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  border-radius: 15px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: var(--text-primary);
}

.service-item:hover {
  transform: scale(1.02);
}

.service-item:nth-child(even) {
  direction: rtl;
}

.service-item:nth-child(even) .service-content {
  direction: ltr;
}

.service-image {
  height: 300px;
}

.service-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.service-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.1rem;
}

/* Grow Section */
.grow-section {
  background: var(--gray-bg);
  padding: 100px 0;
}

.grow-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.grow-heading {
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.grow-subheading {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.grow-intro {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 50px;
}

.grow-points {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
  margin-bottom: 40px;
  align-items: center;
}

.grow-point {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  max-width: 700px;
}

.grow-slash {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 700;
  flex-shrink: 0;
}

.grow-point p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin: 0;
}

/* Impressum Section */
.impressum-section {
  background: var(--light-bg);
  padding: 80px 0;
}

.impressum-content {
  max-width: 800px;
  margin: 0 auto;
}

.impressum-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 30px;
  margin-bottom: 15px;
}

.impressum-content h2:first-child {
  margin-top: 0;
}

.impressum-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 25px;
  margin-bottom: 12px;
}

.impressum-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.impressum-content ul {
  list-style-type: disc;
  margin-left: 30px;
  margin-bottom: 20px;
}

.impressum-content ul li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.impressum-content a {
  color: var(--primary-color);
  text-decoration: none;
}

.impressum-content a:hover {
  text-decoration: underline;
}

.impressum-source {
  margin-top: 40px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: italic;
}

/* Team Section */
.team-section {
  background: var(--light-bg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.team-member {
  text-align: center;
  padding: 30px;
  border-radius: 15px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: var(--text-primary);
}

.team-member:hover {
  transform: scale(1.02);
}

.member-photo {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
}

.member-photo .image-placeholder {
  border-radius: 50%;
  min-height: 200px;
}

.team-member h4 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.member-role {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Contact Section */
.contact-section {
  background: var(--dark-bg);
}

.contact-section .section-header p {
  color: #e0e0e0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

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

.info-item h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: white;
}

.info-item p {
  color: #e0e0e0;
  font-size: 1.1rem;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--secondary-color);
}

.contact-form-section .social-links a {
  color: var(--primary-color);
}

.contact-form-section .social-links a:hover {
  color: var(--secondary-color);
}

/* Contact Form */
.contact-form {
  padding: 40px;
  border-radius: 15px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.12) 50%,
    rgba(0, 0, 0, 0.08) 100%
  );
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.25),
              0 1px 0 rgba(255, 255, 255, 0.08);
  color: #e0e0e0;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-control:focus {
  outline: none;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.08) 50%,
    rgba(0, 0, 0, 0.05) 100%
  );
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.2),
              0 0 0 2px rgba(255, 255, 255, 0.15);
  color: white;
}

textarea.form-control {
  resize: vertical;
}

/* Footer */
.footer {
  background: var(--dark-bg);
  color: white;
  padding: 40px 0;
  text-align: center;
}

.footer p {
  margin: 0;
  color: #cccccc;
}

.footer-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Page Header Section */
.page-header-section {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(9, 30, 33, 1) 0%,
    rgba(9, 30, 33, 0.98) 50%,
    rgba(9, 30, 33, 0.95) 100%
  );
  color: white;
  padding: 0;
  text-align: center;
  overflow: hidden;
  margin-top: 0;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(206, 166, 118, 0.08) 0%,
    transparent 70%
  );
  z-index: 1;
}

.page-header-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(206, 166, 118, 0.3) 50%,
    transparent 100%
  );
  z-index: 2;
}

.page-header-section .container {
  position: relative;
  z-index: 3;
  padding: 100px 20px 80px;
}

.page-header-section h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.page-header-section .lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Products Section */
.products-section {
  padding: 60px 0;
}

/* Careers Section */
.careers-section {
  padding: 60px 0;
  background: var(--gray-bg);
}

.careers-section h2 {
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: 40px;
  text-align: center;
}

.job-card {
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 15px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: var(--text-primary);
}

.job-card:hover {
  transform: scale(1.02);
}

.job-card h3 {
  margin-bottom: 15px;
  color: var(--text-primary);
}

.job-card p {
  color: var(--text-primary);
}

.job-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.job-location,
.job-type {
  padding: 6px 16px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(9, 30, 33, 0.95) 0%,
    rgba(9, 30, 33, 0.9) 50%,
    rgba(9, 30, 33, 0.85) 100%
  );
  border: 1px solid rgba(9, 30, 33, 1);
  box-shadow: 0 2px 8px rgba(9, 30, 33, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
  color: white;
  font-weight: 600;
  backdrop-filter: blur(10px) saturate(150%);
  display: inline-block;
}

.benefits-section {
  padding: 60px 0;
  background: var(--light-bg);
}

.benefits-section h2 {
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: 40px;
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.benefit-item {
  padding: 30px;
  border-radius: 15px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: var(--text-primary);
}

.benefit-item:hover {
  transform: scale(1.02);
}

.benefit-item h4 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

.benefit-item p {
  color: var(--text-primary);
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
  background: var(--dark-bg);
}

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

.contact-info-box,
.contact-form-box {
  padding: 40px;
  border-radius: 15px;
  background: transparent;
  border: none;
  box-shadow: none;
  transition: all 0.3s ease;
}

.contact-info-box h3 {
  margin-bottom: 30px;
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
}

.contact-form-box h3 {
  margin-bottom: 30px;
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-items .info-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1rem;
  font-weight: 500;
  color: white;
}

.info-items .info-item p {
  margin: 0;
  color: #e0e0e0;
  line-height: 1.6;
  font-size: 1.1rem;
}

/* About Content Section */
.about-content-section {
  padding: 60px 0;
}

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

.about-text h2 {
  margin-bottom: 20px;
  color: var(--text-primary);
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.about-image .image-placeholder {
  min-height: 350px;
}

/* Stats Section */
.stats-section {
  padding: 60px 0;
  background: var(--gray-bg);
}

.stats-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.stat-content {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* Values Section */
.values-section {
  padding: 60px 0;
}

.values-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.value-card {
  padding: 30px;
  border-radius: 15px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.value-card:hover {
  transform: scale(1.02);
}

.value-card h4 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

.value-card p {
  color: var(--text-primary);
  line-height: 1.6;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero-section .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 3rem;
  }

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

  .service-item {
    grid-template-columns: 1fr;
  }

  .service-item:nth-child(even) {
    direction: ltr;
  }

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

  .section-header h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 640px) {
  .hero-main-title {
    font-size: 4rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

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

  .btn {
    width: 100%;
  }

  .features-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  padding: 20px;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.25) 100%
  );
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: slideUp 0.4s ease-out;
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cookie-banner-text {
  flex: 1;
}

.cookie-banner-text p {
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.cookie-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.cookie-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  backdrop-filter: blur(20px) saturate(180%);
}

.cookie-btn-primary {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.12) 100%
  );
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cookie-btn-primary:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 255, 255, 0.18) 100%
  );
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.35);
}

.cookie-btn-secondary {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
  color: #e0e0e0;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3),
              0 1px 0 rgba(255, 255, 255, 0.1);
}

.cookie-btn-secondary:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.06) 50%,
    rgba(255, 255, 255, 0.03) 100%
  );
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.cookie-btn-reject {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.3);
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive Cookie Banner */
@media (max-width: 968px) {
  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .cookie-banner-actions {
    flex-direction: column;
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
  }
}
