/* ==========================================================================
   NAGENE – GLOBAL STYLESHEET
   --------------------------------------------------------------------------
   Structure:
   1) CSS Variables
   2) Base / Reset
   3) Components (Buttons)
   4) Layout Sections (Header, Hero, Features, ...)
   5) Utilities / Special Elements (Blob, Honeypot)
   6) Responsive (Tablet, Mobile)
   ========================================================================== */

/* ==========================================================================
   1) CSS VARIABLES
   ========================================================================== */
:root {
  --primary: #3bb6d6;
  --dark: #0b1320;
  --muted: #6b7280;
  --bg: #f5f8fc;
  --radius: 68px;
}

/* ===== DNA BULLET SYSTEM ===== */

.dna-bullets ul{
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.dna-bullets li{
  position: relative;
  padding-left: 26px;
}

.dna-bullets li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 16px;
  height: 16px;
  background: url("../images/bullet-dna.svg") no-repeat center;
  background-size: contain;
}




/* ==========================================================================
   2) BASE / RESET
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, sans-serif;
  background: linear-gradient(135deg, #eef4fb, #ffffff);
  color: var(--dark);
  
  /* ===== SYSTEM FONT (no Google Fonts) ===== */

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;


}

/* ==========================================================================
   3) COMPONENTS – BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 22px;
  border-radius: 999px;

  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;

  text-decoration: none;
  cursor: pointer;

  z-index: 101;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

/* Primary Button */
.btn-primary {
  background: linear-gradient(135deg, rgba(59, 182, 214, 0.95), rgba(59, 182, 214, 0.75));
  color: #ffffff;

  box-shadow:
    0 10px 30px rgba(59, 182, 214, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 36px rgba(59, 182, 214, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow:
    0 8px 18px rgba(59, 182, 214, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

/* Ghost Button */
.btn-ghost {
  background: rgba(255, 255, 255, 0.65);
  color: var(--dark);

  border: 1px solid rgba(229, 231, 235, 0.9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   4) LAYOUT SECTIONS
   ========================================================================== */

/* ------------------------------
   Decorative Blob (Background)
------------------------------ */
.blob {
  position: absolute;
  width: 420px;
  height: 360px;

  background: radial-gradient(
    circle at 40% 30%,
    rgba(59, 182, 214, 0.35),
    rgba(59, 182, 214, 0.18),
    rgba(59, 182, 214, 0.08),
    transparent 70%
  );

  filter: blur(70px);
  border-radius: 58% 42% 60% 40% / 55% 45% 55% 45%;

  /* intentionally NOT centered */
  top: 18%;
  left: 55%;

  z-index: -1;
}

/* ------------------------------
   Header / Navbar
------------------------------ */
.header {
  padding: 24px;
  max-width: 1200px;
  margin: auto;
  z-index: 100;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 55px;
}

nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
}

nav a {
  text-decoration: none;
  color: var(--dark);
}

/* Language dropdown */
.lang {
  position: relative;
  margin-left: 20px;
}

.lang-dropdown {
  position: absolute;
  top: 36px;
  right: 0;

  background: #ffffff;
  padding: 10px 14px;
  border-radius: 12px;
  display: none;
}

.lang:hover .lang-dropdown {
  display: block;
}

/* ------------------------------
   Mobile menu toggle (Nagene style)
------------------------------ */
.menu-toggle {
  /* Reset */
  -webkit-appearance: none;
  appearance: none;

  display: none;            /* wird nur in Mobile eingeblendet via Media Query */
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;

  /* Glassy look */
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(229, 231, 235, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  /* Shadow similar to your cards */
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);

  /* Icon styling */
  color: var(--dark);
  font-size: 20px;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.10);
}

.menu-toggle:active {
  transform: translateY(0px) scale(0.98);
}

.menu-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(59, 182, 214, 0.25), 0 10px 24px rgba(0, 0, 0, 0.08);
}

/* ------------------------------
   Hero
------------------------------ */
.hero {
  max-width: 1200px;
  margin: auto;

  margin-top: -107px;
  margin-bottom: -200px;

  display: grid;
  grid-template-columns: 1.1fr 0fr;
  gap: 4px;
  align-items: center;

  padding: 0 24px;
}

.hero h1 {
  font-size: 86px;
  font-weight: 600;
  white-space: nowrap;
  margin-left: 20px;
}

.hero h2 {
  margin-left: 20px !important;
  font-size: 1em;
  display: block;
  margin-block: 1em;
  unicode-bidi: isolate;
}

.hero span {
  color: var(--primary);
}

.hero p {
  margin-left: 20px;
}


.hero-image {
 z-index: -1;
}


#startpage {
	
  margin-left: -250px;
}



/* ==========================================================================
   SECTION: TEAM (INTERACTIVE)
   ========================================================================== */
.team{
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);

  background: #ffffff;
  padding: 90px 0;
}

.team-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.team-header{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.team-header h2{
  font-size: 56px;
  font-weight: 600;
  line-height: 1.05;
}

.team-header h2 span{
  color: var(--primary);
}

.team-header p{
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 520px;
}

/* Grid */
.team-grid{
  display: grid;
  gap: 18px;

  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

  justify-content: center;

  margin-top: 6px;
}


/* Card */
.team-card{
  position: relative;
  overflow: hidden;

  border-radius: 30px;
  background: linear-gradient(135deg, #f2f7fd 0%, #eef4fb 55%, #ffffff 100%);
  box-shadow: 0 18px 38px rgba(0,0,0,0.06);

  transform: translateY(0);
  transition: transform 220ms ease, box-shadow 220ms ease;
  cursor: pointer;
}

/* Subtle glow blob */
.team-card::before{
  content: "";
  position: absolute;
  inset: -40% -40% auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at 40% 40%,
    rgba(59,182,214,0.28),
    rgba(59,182,214,0.10),
    rgba(59,182,214,0) 70%
  );
  filter: blur(0px);
  opacity: 0.0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

/* Photo */
.team-photo{
  height: 400px;       
  overflow: hidden;
 
  box-sizing: border-box;
}

.team-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transform: scale(1);
  transition: transform 300ms ease;
}

.team-photo img{
  object-fit: cover;
  object-position: center 0%; /* ⬅️ Zahl erhöhen = Bild rutscht runter */
}


/* Body */
.team-body{
  padding: 18px 18px 16px;
}

.team-name-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.team-body h3{
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
}

.team-badge{
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);

  background: rgba(59,182,214,0.12);
  border: 1px solid rgba(59,182,214,0.18);
  border-radius: 999px;
  padding: 5px 10px;
}

.team-role{
  font-size: 13px;
  font-weight: 600;
  color: rgba(11,19,32,0.85);
  margin-bottom: 10px;
}

.team-desc{
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 10px;
  min-height: 54px;
}

/* Actions row (small icons) */
.team-actions{
  display: flex;
  gap: 10px;
  align-items: center;
}

.team-icon{
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;

  border-radius: 10px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(229,231,235,0.9);
  color: rgba(11,19,32,0.75);
  font-weight: 800;
  font-size: 12px;

  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

/* Hover overlay */
.team-hover{
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px 18px 18px;

  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transform: translateY(110%);
  transition: transform 240ms ease;
  border-top: 1px solid rgba(229,231,235,0.85);
}

.team-hover-title{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(11,19,32,0.7);
  margin-bottom: 10px;
}

.team-hover-list{
  list-style: none;
  display: grid;
  gap: 6px;
}

.team-hover-list li{
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  position: relative;
  padding-left: 16px;
}

.team-hover-list li::before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 900;
}

/* Hover Effects */
.team-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 26px 52px rgba(0,0,0,0.10);
}

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

.team-card:hover .team-photo img{
  transform: scale(1.06);
}

.team-card:hover .team-hover{
  transform: translateY(0);
}

.team-card:hover .team-icon{
  transform: translateY(-1px);
  background: rgba(59,182,214,0.12);
  color: var(--primary);
  border-color: rgba(59,182,214,0.20);
}

/* Keyboard accessibility */
.team-card:focus-within{
  outline: 2px solid rgba(59,182,214,0.35);
  outline-offset: 3px;
}

/* Responsive */
@media (max-width: 1024px){
  .team-header{
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px){
  .team{
    padding: 60px 0;
  }

  .team-header h2{
    font-size: 42px;
  }

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

  .team-photo{
    height: 320px;
  }
}


/* ==========================================================
   SECTION: BENEFITS
=========================================================== */

.benefits{
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 90px 0;
}

.benefits-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */

.benefits-header{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.benefits-header h2{
  font-size: 56px;
  font-weight: 600;
  line-height: 1.05;
}

.benefits-header h2 span{
  color: var(--primary);
}

.benefits-header p{
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 560px;
}

/* Grid */

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

/* Card */

.benefit-card{
  background: linear-gradient(
    135deg,
    #f2f7fd 0%,
    #eef4fb 55%,
    #ffffff 100%
  );

  border-radius: 26px;
  padding: 22px 20px 20px;
  border: 1px solid rgba(229,231,235,0.9);
  box-shadow: 0 16px 34px rgba(0,0,0,0.05);

  transition: transform 220ms ease, box-shadow 220ms ease;
}

.benefit-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 26px 52px rgba(0,0,0,0.08);
}

/* Icon */

.benefit-icon{
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(59,182,214,0.12);
  border: 1px solid rgba(59,182,214,0.20);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.benefit-icon img{
  width: 26px;
  height: 26px;
}

/* Text */

.benefit-card h3{
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 6px;
  color: rgba(11,19,32,0.9);
}

.benefit-card p{
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* Responsive */

@media (max-width: 1024px){
  .benefits-header{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px){
  .benefits{
    padding: 60px 0;
  }

  .benefits-header h2{
    font-size: 42px;
  }
}


/* ==========================================================================
   SECTION: QUALITY QUOTE
   ========================================================================== */
.quality-quote{
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);

  background: linear-gradient(
    135deg,
    #f2f7fd 0%,
    #eef4fb 55%,
    #ffffff 100%
  );

  padding: 90px 0;
}

.quality-quote-inner{
  max-width: 820px;
  margin: auto;
  padding: 0 24px;
  text-align: center;
}

.quality-quote blockquote{
  position: relative;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-radius: 40px;
  padding: 48px 52px 40px;

  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

/* Decorative quote mark */
.quote-mark{
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);

  font-size: 96px;
  font-weight: 700;
  line-height: 1;
  color: rgba(59,182,214,0.25);
  pointer-events: none;
}

.quality-quote p{
  font-size: 22px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 26px;
}

/* Footer */
.quality-quote footer{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quote-author{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
}

.quote-company{
  font-size: 13px;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 768px){
  .quality-quote{
    padding: 60px 0;
  }

  .quality-quote blockquote{
    padding: 36px 28px 30px;
    border-radius: 28px;
  }

  .quality-quote p{
    font-size: 18px;
  }

  .quote-mark{
    font-size: 72px;
    top: -20px;
  }
}


/* ==========================================================================
   SECTION: QUALITY IMPACT
   ========================================================================== */
.quality-impact{
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);

  background: #ffffff;
  padding: 90px 0;
}

.quality-impact-inner{
  max-width: 820px;
  margin: auto;
  padding: 0 24px;
}

/* Header */
.quality-impact-header{
  margin-bottom: 26px;
}

.quality-impact-header h2{
  font-size: 46px;
  font-weight: 600;
  line-height: 1.1;
}

.quality-impact-header h2 span{
  color: var(--primary);
}

/* Content */
.quality-impact-content p{
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 18px;
}

.quality-impact-content p:last-child{
  margin-bottom: 0;
}

/* Contact highlight */
.quality-impact-contact{
  margin-top: 22px;
  font-weight: 500;
  color: var(--dark);
}

.quality-impact-contact a{
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.quality-impact-contact a:hover{
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px){
  .quality-impact{
    padding: 60px 0;
  }

  .quality-impact-header h2{
    font-size: 36px;
  }
}

/* ==========================================================================
   SECTION: QUALITY CONTROL – STEPS (NUMBERED + ANIMATED)
   Robust: Steps are ALWAYS visible (fallback), animation is a bonus.
   ========================================================================== */
.qc-steps{
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 90px 0;
}

.qc-steps-inner{
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

.qc-steps-header{
  max-width: 680px;
  margin-bottom: 44px;
}

.qc-steps-header h2{
  font-size: 52px;
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 12px;
}

.qc-steps-header h2 span{
  color: var(--primary);
}

.qc-steps-header p{
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

/* Grid */
.qc-steps-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* Step card */
.qc-step{
  position: relative;
  overflow: hidden;

  background: linear-gradient(135deg, #f2f7fd 0%, #eef4fb 55%, #ffffff 100%);
  border-radius: 32px;
  padding: 30px 28px 28px;
  box-shadow: 0 18px 36px rgba(0,0,0,0.06);

  /* ✅ Fallback: ALWAYS visible */
  opacity: 1;

  /* Animation baseline (will be reduced on prefers-reduced-motion) */
  transform: translateY(10px);
  transition: transform 320ms ease, box-shadow 320ms ease;
}

/* Big number */
.qc-step-number{
  position: absolute;
  top: 16px;
  right: 18px;

  font-size: 54px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(59,182,214,0.22);
  pointer-events: none;
}

/* Headline + text */
.qc-step h3{
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.qc-step p{
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

/* Hover */
.qc-step:hover{
  transform: translateY(-6px);
  box-shadow: 0 26px 52px rgba(0,0,0,0.10);
}

/* When visible by scroll observer (optional enhancement) */
.qc-step.is-visible{
  transform: translateY(0);
}

/* Footer text */
.qc-steps-footer{
  max-width: 860px;
  margin-top: 28px;
}

.qc-steps-footer p{
  font-size: 14px;
  line-height: 1.75;
  color: var(--dark);
}

/* Responsive */
@media (max-width: 1024px){
  .qc-steps-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px){
  .qc-steps{
    padding: 60px 0;
  }

  .qc-steps-header h2{
    font-size: 40px;
  }

  .qc-steps-grid{
    grid-template-columns: 1fr;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .qc-step{
    transition: none;
    transform: none;
  }
}



/* ------------------------------
   Features
------------------------------ */
.features {
  max-width: 1200px;
  margin: auto;

  padding: 0 24px 50px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.features h2 {
  font-size: 50px;
  font-weight: 400;
}

.features h2 span {
  font-size: 50px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 50px;
}

.feature-card {
  background: #ffffff;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.feature-card h3 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-left: 20px;
  margin-top: 6px;
  margin-bottom: 6px;
}

.feature-card p {
  margin-left: 20px;
}



.feature-image{
  width: 100%;
  aspect-ratio: 16 / 5;
  overflow: hidden;
  border-radius: 60px;
  margin-bottom: 18px;
}

.feature-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



/* ==========================================================================
   SECTION: RELIABLE DNA (ABOUT US)
   ========================================================================== */
.reliable{
  width: 100vw;                  /* volle Viewport-Breite */
  margin-left: 50%;
  transform: translateX(-50%);   /* verhindert Scrollbars bei 100vw */
  
  background: #ffffff;           /* komplett weiß */
      padding-top: 90px;
	  padding-bottom: 30px;

}

#first-reliable{
	  margin-top: 190px;
}

/* Inhalt zentriert */
.reliable-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

/* LEFT */
.reliable-title{
  font-size: 64px;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.reliable-title span{
  color: var(--primary);
}

.reliable-media{
  border-radius: 52px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.reliable-media img{
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

/* RIGHT */
.reliable-right-title{
  font-size: 36px;
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 14px;
}

.reliable-text{
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 520px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px){
  .reliable-inner{
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .reliable-title{
    font-size: 52px;
	
  }

  .reliable-media img{
    height: 320px;
  }

  .reliable-right-title{
    font-size: 30px;
  }
}

@media (max-width: 768px){
  .reliable{
    padding: 60px 0;
	    margin-top: 0px;
  }

  .reliable-title{
    font-size: 42px;
  }

  .reliable-media{
    border-radius: 32px;
  }

  .reliable-media img{
    height: 260px;
  }
}


/* ================= SECTION DIVIDER ================= */
.section-divider{
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);

  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0,0,0,0.08),
    transparent
  );
}


/* ------------------------------
   Nagene / Expertise
------------------------------ */
.nagene {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px 50px;
}

.nagene h2 {
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 50px;
}

.nagene h2 span {
  font-size: 50px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 50px;
}

.nagene-image img {
  width: 100%;
  border-radius: 32px;
}

.quote {
  background: #f3f6fb;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-radius: 24px;
  padding: 32px;
  margin: -80px auto 0;
  max-width: 720px;

  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;

  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

/* ------------------------------
   Process
------------------------------ */
.process {
  max-width: 1200px;
  margin: auto;
  padding: 50px 24px;
}

.process h2 {
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 50px;
}

.process h2 span {
  font-size: 50px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 50px;
}

.process h3 span {
  color: var(--primary);
}

.process p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 18px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.step {
  background: #ffffff;
  padding: 28px;
  border-radius: 24px;
  text-align: center;
  font-size: 1.5em;

  position: relative; /* required for step number positioning */
}

#about-step {
	 background: #ffffff;
  padding: 0px !important;
  border-radius: 24px;
  text-align: center;
  font-size: 1.5em;

  position: relative; /* required for step number positioning */
}

.step-number {
  position: absolute;
  top: 18px;
  right: 20px;

  font-size: 35px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* ------------------------------
   ZOOM TRANSITZION
------------------------------ */

#zoom {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  transform: scale(1);
}

#zoom:hover {
  transform: scale(1.06);
}


/* ==========================================================================
   SECTION: LOCATION / MAP (COOKIE-FREE)
   ========================================================================== */
.location{
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);

  background: linear-gradient(
    135deg,
    #eaf6fb 0%,
    #f2f8fc 45%,
    #ffffff 100%
  );

  padding: 90px 0;
}

.location-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.location-header{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}

.location-header h2{
  font-size: 56px;
  font-weight: 600;
  line-height: 1.05;
}

.location-header h2 span{
  color: var(--primary);
}

.location-intro{
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 420px;
}

/* Content */
.location-content{
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 32px;
  align-items: stretch;
}

/* Map */
.location-map{
  border-radius: 56px;
  overflow: hidden;
  background: #f7f9fc;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.location-map iframe{
  width: 100%;
  height: 360px;
  border: 0;
}

/* Info box */
.location-info{
  background: #f7f9fc;
  border-radius: 40px;
  padding: 28px 30px;
  box-shadow: 0 18px 36px rgba(0,0,0,0.05);
}

.location-info h3{
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.location-address{
  font-size: 14px;
  line-height: 1.6;
  color: var(--dark);
  margin-bottom: 18px;
}

.location-info h4{
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.location-note{
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}

.location-link{
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 1024px){
  .location-header{
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .location-map iframe{
    height: 320px;
  }
}

@media (max-width: 768px){
  .location{
    padding: 60px 0;
  }

  .location-header h2{
    font-size: 42px;
  }

  .location-map{
    border-radius: 32px;
  }

  .location-info{
    border-radius: 28px;
  }
}


/* ------------------------------
   End-to-End Solution
------------------------------ */
.endtoend-solution {
  /*padding: 50px 24px*/
}

.endtoend-container {

  max-width: 1200px;
  margin: auto;
}

.endtoend-title {
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 26px;
  max-width: 1200px;
  margin: auto;
  padding: 50px 24px;
}

.endtoend-title span {
  color: var(--primary);
}

.endtoend-card {
  position: relative;
  overflow: hidden;

  border-radius: 56px;
  padding: 46px 56px;

  background: linear-gradient(135deg, #f2f7fd 0%, #eef4fb 55%, #ffffff 100%);

  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 24px;
}

/* Text "bubble" */
.endtoend-text {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 38px;
  padding: 28px 32px;
  max-width: 720px;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);

  position: relative;
  z-index: 2;
}

.endtoend-strong {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 10px;
}

.endtoend-muted {
  font-size: 18px;
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 18px;
}

.endtoend-btn {
  margin-top: 4px;
}

/* Decorative DNA image on the right */
.endtoend-image {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);

  width: 520px;
  height: 520px;

  pointer-events: none;
  opacity: 0.35;
  z-index: 1;
}

.endtoend-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ------------------------------
   Activities banner (header)
------------------------------ */
.our-activities {
  width: 100%;
  padding: 10px 24px 30px;
  margin-top: 80px;

  background: linear-gradient(90deg, #eaf6fb 0%, #f2f7fd 45%, #ffffff 75%);
  


}

.our-activities-inner {
  max-width: 1200px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
    padding: 50px 24px;
}

.our-activities-left h2 {
  font-size: 50px;
  font-weight: 400;
  color: var(--dark);
}

.our-activities-left h2 span {
  color: var(--primary);
}

.our-activities-right p {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

/* ------------------------------
   Events grid/cards
------------------------------ */
.events {
  max-width: 1200px;
  margin: auto;
  padding: 60px 24px 120px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.event-card {
  position: relative;
  overflow: hidden;

  background: linear-gradient(135deg, #f2f7fd 0%, #eef4fb 55%, #ffffff 100%);
  border-radius: 22px;
  padding: 18px 18px 16px;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);

  display: grid;
  gap: 10px;
  align-content: start;

  min-height: 170px;
}

.event-badge {
  position: absolute;
  top: 14px;
  right: 14px;

  font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;

  background: rgba(59, 182, 214, 0.1);
  color: var(--primary);

  font-weight: 600;
  border: 1px solid rgba(59, 182, 214, 0.18);
}

.event-number {
  position: absolute;
  top: 10px;
  left: 12px;

  font-size: 54px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(59, 182, 214, 0.18);

  pointer-events: none;
}

.event-logo {
  height: 28px;
  width: auto;
  opacity: 0.9;
  margin-top: 6px;
}

.event-name {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
}

.event-city,
.event-date {
  font-size: 13px;
  color: var(--muted);
}

.event-btn {
  margin-top: 6px;

  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;

  font-size: 13px;
  padding: 8px 12px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(229, 231, 235, 0.9);

  text-decoration: none;
  color: var(--dark);
}

/* ------------------------------
   About Us (NEW)
------------------------------ */
.aboutus {
  max-width: 1200px;
  margin: 0 auto 0;
  padding: 0 24px 40px;
}

.aboutus-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;

  background: linear-gradient(135deg, #f2f7fd 0%, #eef4fb 55%, #ffffff 100%);
  border-radius: 56px;
  padding: 46px 56px;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.aboutus-media {
  border-radius: 44px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.1);
}

.aboutus-media img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.aboutus-kicker {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 14px;
}

.aboutus-kicker span {
  color: var(--primary);
}

.aboutus-lead {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 26px;
}

.aboutus-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.aboutus-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 520px;
}

/* ==========================================================
   CTA + SECURE FORM — CLEAN FINAL VERSION
=========================================================== */

/* ==========================================================
   CTA WRAPPER
=========================================================== */

.cta{
  width: 100%;
  padding: 70px 24px 36px;
}

.cta-inner{
  max-width: min(1100px, 100%);
  margin: 0 auto;
  position: relative;
  overflow: hidden;

  border-radius: 56px;
  padding: clamp(28px, 4vw, 56px);

  background: linear-gradient(135deg, #f2f7fd 0%, #eef4fb 55%, #ffffff 100%);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

/* ==========================================================
   DECORATIVE BLOBS
=========================================================== */

.cta-deco{
  position: absolute;
  top: -30%;
  width: 380px;
  height: 380px;
  pointer-events: none;
  opacity: 0.9;

  background: radial-gradient(
    circle at 35% 35%,
    rgba(59,182,214,0.22),
    rgba(59,182,214,0.10),
    rgba(59,182,214,0) 70%
  );

  border-radius: 60% 40% 50% 50% / 55% 45% 55% 45%;
}

.cta-deco.left{ left: -120px; }
.cta-deco.right{ right: -120px; transform: rotate(20deg); }

/* ==========================================================
   CONTENT
=========================================================== */

.cta-content{
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.cta-content h2{
  font-size: clamp(32px, 3.4vw, 46px);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 12px;
}

.cta-content h2 span{
  color: var(--primary);
}

.cta-content p{
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 22px;
}

/* ==========================================================
   MAIN FORM PILL
=========================================================== */

.captcha-verify{
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
}

.cta-form{
  position: relative;
  display: grid;
  grid-template-columns: minmax(0,1fr);
  gap: 12px;

  width: 100%;
  max-width: 640px;
  margin: 0 auto 18px;

  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(229,231,235,0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-radius: 999px;
  padding: 14px 60px;

  box-sizing: border-box;
  overflow: hidden;
  align-items: center;
}

.cta-form > *{
  min-width: 0;
}

/* ==========================================================
   DESKTOP GRID
=========================================================== */

@media (min-width: 760px){
  .cta-form{
    grid-template-columns:
      minmax(0,1fr)
      minmax(0,1fr)
      130px;

    column-gap: 18px;
  }
}

/* ==========================================================
   INPUTS — unified style
=========================================================== */

.cta-form > input[name="name"],
.cta-form > input[name="email"],
.cta-form #captcha_answer{
  width: 100%;
  height: 44px;

  border: 0;
  outline: none;
  background: transparent;

  padding-left: 22px;
  padding-right: 14px;

  font-size: 14px;
  color: var(--dark);

  box-shadow: none;
   border: 1px solid rgba(229,231,235,0.9);
   border-radius: 999px;
}

.cta-form input::placeholder{
  color: rgba(107,114,128,0.85);
}

/* ==========================================================
   SUBMIT BUTTON
=========================================================== */

.cta-submit{
  height: 44px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;

  font-size: 13px;
  font-weight: 600;
  color: #ffffff;

  background: linear-gradient(
    135deg,
    rgba(59,182,214,0.95),
    rgba(59,182,214,0.75)
  );

  box-shadow: 0 10px 24px rgba(59,182,214,0.35);

  width: 100%;
  max-width: 100%;
  padding: 0 16px;
  white-space: nowrap;

  justify-self: stretch;
  align-self: center;

  margin-right: 4px;
  transition: transform .15s ease, box-shadow .15s ease;
}

@media (min-width: 760px){
  .cta-submit{
    width: 130px;
    padding: 0;
  }
}

.cta-submit:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(59,182,214,0.45);
}

/* ==========================================================
   CAPTCHA CONTAINER — softer look
=========================================================== */

.cta-form .cta-captcha{
  display: grid !important;
  gap: 10px !important;

  grid-column: 1 / -1;

  width: 100%;
  max-width: 520px;
  /*margin: 6px auto 2px;*/

  background: rgba(255,255,255,0.55);
 /* border: 1px solid rgba(229,231,235,0.9);*/
  border-radius: 999px;

  padding: 10px 14px;
  box-sizing: border-box;
}

@media (min-width: 760px){
  .cta-form .cta-captcha{
    grid-template-columns: 1fr 150px;
    align-items: center;
  }
}

.cta-form #captchaQuestion{
  font-size: 12.5px !important;
  color: rgba(107,114,128,0.95) !important;
  text-align: left !important;
  padding: 0 6px !important;
  margin: 0;

  font-weight: 700;
  line-height: 1.2;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ==========================================================
   STATUS + HONEYPOT
=========================================================== */

.cta-status{
  margin-top: 12px;
  padding-top: 13px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

.hp-field{
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  height: 1px !important;
  width: 1px !important;
  opacity: 0 !important;
}


/* ------------------------------
   Footer (NEW)
------------------------------ */
.footer {
  margin-top: 28px;
  padding: 40px 24px 18px;

  background: linear-gradient(135deg, #f2f7fd 0%, #eef4fb 55%, #ffffff 100%);
}

.footer-inner {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;

  padding-bottom: 22px;
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
}

.footer-logo {
  height: 42px;
  width: auto;
  display: block;
  margin-bottom: 12px;
}

.footer-text {
  max-width: 460px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

.footer-right h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-right p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 10px;
}

.footer-phone {
  font-weight: 600;
  color: var(--dark);
  margin-top: 8px;
}

.footer-mail {
  display: inline-block;
  font-size: 13px;
  color: var(--dark);
  text-decoration: none;
  margin-top: 6px;
}

.footer-social {
  display: flex;
  gap: 30px;
  margin-top: 12px;
}
.social-btn img{
  width: 16px;
  height: 16px;
  margin-right: 6px;
}


.footer-social a {
  width: 28px;
  height: 28px;

  display: grid;
  place-items: center;
  border-radius: 8px;

  text-decoration: none;
  color: var(--primary);


  font-weight: 700;
  font-size: 12px;
}

.footer-bottom {
  max-width: 1200px;
  margin: auto;
  padding-top: 14px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  font-size: 12px;
  color: rgba(107, 114, 128, 0.85);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a {
  color: rgba(107, 114, 128, 0.95);
  text-decoration: none;
}

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

/* ==========================================================================
   5) RESPONSIVE
   ========================================================================== */

/* ------------------------------
   Events grid responsive
------------------------------ */
@media (max-width: 1024px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ------------------------------
   Tablet (<= 1024px)
   - End-to-end + CTA/Footer layout adjustments
------------------------------ */
@media (max-width: 1024px) {
  /* End-to-End */
  .endtoend-card {
    grid-template-columns: 1fr;
    padding: 34px 28px;
    border-radius: 40px;
  }

  .endtoend-text {
    border-radius: 28px;
    padding: 22px 22px;
  }

  .endtoend-strong {
    font-size: 28px;
  }

  .endtoend-muted {
    font-size: 16px;
  }

  .endtoend-image {
    right: -260px;
    width: 520px;
    height: 520px;
    opacity: 0.22;
  }

  /* CTA */
  .cta-inner {
    padding: 40px 28px;
    border-radius: 40px;
  }

  .cta-content h2 {
    font-size: 38px;
  }

  .cta-form {
    grid-template-columns: 1fr;
    border-radius: 24px;
    padding: 12px;
  }

  .cta-form input {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 14px;
    border: 1px solid rgba(229, 231, 235, 0.9);
    height: 46px;
  }

  .cta-submit {
    width: 100%;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  /* About Us */
  .aboutus-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 28px;
    border-radius: 40px;
  }

  .aboutus-media {
    border-radius: 28px;
  }

  .aboutus-media img {
    max-height: 320px;
  }

  .aboutus-kicker {
    font-size: 30px;
  }

  .aboutus-title {
    font-size: 24px;
  }
}

/* ------------------------------
   Mobile (<= 768px)
------------------------------ */
@media (max-width: 768px) {
  /* Fixed header on mobile */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    background: #ffffff;
    z-index: 1000;
  }

  .navbar {
    max-width: 100%;
  }

 

  .menu-toggle {
    display: inline-flex;
    z-index: 1001;
    margin-top: -16px;
  }

  /* IMPORTANT: your HTML uses id="orderBtn", not class="order-btn"
     This hides only if you add class "order-btn". */
  #orderBtn {
    display: none;
  }

  /* Mobile menu overlay */
  nav {
    position: fixed;
    top: 88px; /* navbar height */
    left: 0;
    width: 100%;

    background: #ffffff;
    z-index: 999;
  }

  #menu {
    display: flex;
    flex-direction: column;
    gap: 24px;

    max-height: 0;
    overflow: hidden;
    padding: 0 24px;

    transition: max-height 0.35s ease, padding 0.35s ease;
  }

  #menu.open {
    max-height: 100vh;
    padding: 24px;
  }

  /* Hero: remove negative margins, use background image */
  .hero {
    margin-top: 0 !important;
    margin-bottom: 0 !important;

    min-height: calc(100vh - 100px);
    padding: 140px 24px 100px;

    background-image: url("../images/dna_helix.avif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: grid;
    align-items: center;
    grid-template-columns: 1fr;
  }
  
  #hero-quality{

  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0.55; /* ⬅️ Transparenz */


  }
  
  #subpage-aboutus {
	margin-top: 0 !important;
    margin-bottom: 0 !important;

    min-height: calc(100vh - 100px);
    padding: 40px 24px 100px;

    background-image: url("../images/about.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: grid;
    align-items: center;
    grid-template-columns: 1fr; 
  }

 #subpage-products {
	margin-top: 0 !important;
    margin-bottom: 0 !important;

    min-height: calc(100vh - 100px);
    padding: 40px 24px 100px;

    background-image: url("../images/products.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: grid;
    align-items: center;
    grid-template-columns: 1fr; 
  }
   #subpage-quality{
	margin-top: 0 !important;
    margin-bottom: 0 !important;

    min-height: calc(100vh - 100px);
    padding: 40px 24px 100px;

    background-image: url("../images/quality.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: grid;
    align-items: center;
    grid-template-columns: 1fr; 
  }
  .hero-text {
    position: relative;
    z-index: 2;

    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    padding: 18px;
    border-radius: 18px;
    max-width: 520px;
  }

  .hero h1 {
    font-size: 36px;
    white-space: normal;
    margin: 0 0 16px;
  }

  .hero h2 {
    margin: 0 !important;
  }

  .hero p {
    margin: 0;
  }

  .hero-image {
    display: none;
  }

  /* Features: single column */
  .features {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 24px 50px;
  }

  .feature-card {
    padding: 18px;
    border-radius: 18px;
  }

  .feature-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
  }

  .feature-card h3 {
    font-size: 1.4rem;
    margin-left: 0;
    margin-top: 12px;
  }

  .feature-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-left: 0;
  }

  /* Process: single column */
  .process-grid {
    grid-template-columns: 1fr;
  }

  /* Footer spacing on mobile */
  .footer {
    padding: 60px 24px 40px;
  }

  /* Button sizing on mobile */
  .btn {
    padding: 14px 24px;
    font-size: 16px;
  }

  /* End-to-End title smaller on mobile */
  .endtoend-title {
    font-size: 42px;
  }

  /* Activities layout on mobile */
  .our-activities {
    padding: 80px 24px;
  }

  .our-activities-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .our-activities-left h2 {
    font-size: 42px;
  }

  /* Events: 1 column */
  .events-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   PRODUCTS SECTION
=========================================================== */

.products{
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 90px 0;
}

.products-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.products-header{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 40px;
}

.products-header h2{
  font-size: 56px;
  font-weight: 600;
}

.products-header h2 span{
  color: var(--primary);
}

.products-header p{
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

/* GRID */
.products-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}


/* CARD */
.product-card{
  background: linear-gradient(
    135deg,
    #f2f7fd 0%,
    #eef4fb 55%,
    #ffffff 100%
  );
  border-radius: 34px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}




.product-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.10);
}

.product-card h3{
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-chip{
  font-size: 11px;
  font-weight: 700;
  margin-left: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(59,182,214,0.12);
  color: var(--primary);
}

.product-lead{
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.6;
}

.product-block{
  margin-bottom: 20px;
}

.product-block h4{
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(11,19,32,0.6);
}

.product-block ul{
  list-style: none;
  padding: 0;
}

.product-block li{
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 6px;
  padding-left: 14px;
  position: relative;
}

.product-block li::before{
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.product-footer{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid rgba(229,231,235,0.9);
    margin-top: auto;
}

.turnaround{
  font-size: 13px;
  color: rgba(11,19,32,0.75);
}

/* Responsive */
@media (max-width: 1024px){
  .products-header{
    grid-template-columns: 1fr;
  }
  .products-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px){
  .products{
    padding: 60px 0;
  }
  .products-header h2{
    font-size: 42px;
  }
}


/* ==========================================================================
   PROCESS DUAL (PLASMIDS + FRAGMENTS)
   ========================================================================== */
.process-dual{
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 90px 0;
}

.process-dual-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.process-dual-header{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.process-dual-header h2{
  font-size: 56px;
  font-weight: 600;
  line-height: 1.05;
}

.process-dual-header h2 span{ color: var(--primary); }

.process-dual-header p{
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 560px;
}


.process-dual-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
}


/* Block */
.process-block{
  background: linear-gradient(135deg, #f2f7fd 0%, #eef4fb 55%, #ffffff 100%);
  border: 1px solid rgba(229,231,235,0.9);
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
  border-radius: 34px;
  padding: 22px;
  overflow: hidden;
}

.process-block-head{
  margin-bottom: 16px;
}

.process-block-head h3{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.process-block-head p{
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.chip{
  display: inline-flex;
  margin-left: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(59,182,214,0.12);
  border: 1px solid rgba(59,182,214,0.18);
}

/* Steps grid */
.process-steps{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

/* Step card */
.pstep{
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(229,231,235,0.9);
  border-radius: 20px;
  padding: 14px 14px 16px;

  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.pstep:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.08);
  border-color: rgba(59,182,214,0.28);
}

.pstep.is-highlight{
  background: rgba(59,182,214,0.12);
  border-color: rgba(59,182,214,0.30);
}

/* Top row: Step badge + icon */
.pstep-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.pstep-badge{
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(11,19,32,0.65);

  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(229,231,235,0.9);
  padding: 5px 10px;
  border-radius: 999px;
}

.pstep-icon{
  width: 44px;
  height: 44px;
  display: block;
  transition: transform 240ms ease, filter 240ms ease;
}

.pstep:hover .pstep-icon{
  transform: translateY(-3px) scale(1.06);
  filter: drop-shadow(0 10px 18px rgba(59,182,214,0.25));
}

.pstep-title{
  font-size: 14px;
  font-weight: 700;
  color: rgba(11,19,32,0.82);
  line-height: 1.35;
}

/* Responsive */
@media (max-width: 1024px){
  .process-dual-header{
    grid-template-columns: 1fr;
  }
  .process-dual-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px){
  .process-dual{
    padding: 60px 0;
  }
  .process-dual-header h2{
    font-size: 42px;
  }
  .process-block{
    border-radius: 28px;
    padding: 18px;
  }
  .pstep{
    border-radius: 18px;
  }
}


/* ==========================================================
   VECTOR SECTION
=========================================================== */

.vector-section{
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 100px 0;
}

.vector-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.vector-header{
  max-width: 780px;
  margin-bottom: 50px;
}

.vector-header h2{
  font-size: 54px;
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 18px;
}

.vector-header h2 span{
  color: var(--primary);
}

.vector-header p{
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

/* Cards */
.vector-card{
  background: linear-gradient(135deg, #f2f7fd 0%, #eef4fb 55%, #ffffff 100%);
  border-radius: 36px;
  padding: 40px;
  margin-bottom: 30px;
  border: 1px solid rgba(229,231,235,0.9);
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.vector-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.vector-card h3{
  font-size: 26px;
  margin-bottom: 12px;
}

.vector-card p{
  color: var(--muted);
  line-height: 1.7;
}

/* Markers */
.vector-markers{
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.marker{
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(59,182,214,0.12);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(59,182,214,0.2);
}

/* Download Header */
.vector-download-header{
  margin-top: 80px;
  margin-bottom: 40px;
}

.vector-download-header h3{
  font-size: 32px;
  margin-bottom: 12px;
}

.vector-download-header p{
  color: var(--muted);
  max-width: 720px;
  line-height: 1.7;
}

/* Download Grid */
.vector-download-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Download Cards */
.download-card{
  background: #ffffff;
  border-radius: 28px;
  padding: 30px;
  border: 1px solid rgba(229,231,235,0.9);
  box-shadow: 0 18px 36px rgba(0,0,0,0.05);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.download-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.download-card h4{
  font-size: 18px;
  margin-bottom: 12px;
}

.download-desc{
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.6;
}

.download-card ul{
  padding-left: 18px;
  margin-bottom: 16px;
}

.download-card li{
  font-size: 14px;
  margin-bottom: 6px;
}

.download-btn{
  display: inline-block;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.download-btn:hover{
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 1024px){
  .vector-download-grid{
    grid-template-columns: 1fr;
  }
}
/* ==========================================================
   SECTION: JOBS (cards loaded from JSON)
=========================================================== */

.jobs{
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 90px 0;
}

.jobs-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.jobs-header{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

.jobs-header h2{
  font-size: 56px;
  font-weight: 600;
  line-height: 1.05;
}

.jobs-header h2 span{
  color: var(--primary);
}

/* Filter chips */
.jobs-filters{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.job-chip{
  border: 1px solid rgba(229,231,235,0.9);
  background: rgba(255,255,255,0.9);
  color: rgba(11,19,32,0.75);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

.job-chip:hover{
  transform: translateY(-1px);
  border-color: rgba(59,182,214,0.30);
}

.job-chip.is-active{
  background: rgba(59,182,214,0.14);
  border-color: rgba(59,182,214,0.30);
  color: var(--primary);
}

/* Grid */
.jobs-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

/* Card */
.job-card{
  position: relative;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(229,231,235,0.9);
  border-radius: 26px;
  padding: 18px 18px 16px;
  box-shadow: 0 16px 34px rgba(0,0,0,0.05);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.job-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 26px 52px rgba(0,0,0,0.08);
  border-color: rgba(59,182,214,0.25);
}

.job-top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.job-title{
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 4px;
  color: rgba(11,19,32,0.9);
}

.job-link{
  color: inherit;
  text-decoration: none;
}

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

.job-salary{
  font-size: 13px;
  font-weight: 700;
  color: rgba(11,19,32,0.72);
}

.job-tag{
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  background: rgba(59,182,214,0.12);
  border: 1px solid rgba(59,182,214,0.18);
  border-radius: 999px;
  padding: 5px 10px;
  white-space: nowrap;
}

.job-summary{
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 14px;
  min-height: 40px;
}

.job-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(229,231,235,0.9);
}

.job-meta{
  display: grid;
  gap: 4px;
  font-size: 12px;
  color: rgba(11,19,32,0.55);
}

.job-posted{
  color: rgba(11,19,32,0.45);
}

.job-apply{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(229,231,235,0.9);
  background: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 800;
  color: rgba(11,19,32,0.78);
  text-decoration: none;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.job-apply:hover{
  transform: translateY(-1px);
  border-color: rgba(59,182,214,0.30);
  background: rgba(59,182,214,0.08);
  color: var(--primary);
}

/* Closed state */
.job-card.is-closed{
  opacity: 0.92;
}

.job-closed-badge{
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(11,19,32,0.06);
  border: 1px solid rgba(229,231,235,0.9);
  font-size: 12px;
  font-weight: 800;
  color: rgba(11,19,32,0.62);
  white-space: nowrap;
}

/* Details link */
.job-details{
  display: inline-flex;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(11,19,32,0.75);
  text-decoration: none;
}

.job-details:hover{
  color: var(--primary);
}

.jobs-status{
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 1024px){
  .jobs-header h2{ font-size: 42px; }
  .jobs-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 768px){
  .jobs{ padding: 60px 0; }
}


/* ==========================================================
   JOB LANDING PAGE (job.html)
=========================================================== */

.job-page{
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 90px 0;
}

.job-page-inner{
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.job-back{
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(11,19,32,0.65);
  text-decoration: none;
  font-weight: 700;
}

.job-back:hover{
  color: var(--primary);
}

.job-hero{
  background: linear-gradient(135deg, #f2f7fd 0%, #eef4fb 55%, #ffffff 100%);
  border: 1px solid rgba(229,231,235,0.9);
  border-radius: 30px;
  padding: 22px;
  box-shadow: 0 16px 34px rgba(0,0,0,0.05);
  margin-bottom: 18px;
}

.job-hero h1{
  font-size: 34px;
  margin: 0 0 8px;
}

.job-meta-line{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.job-status{
  display: inline-flex;
  margin-top: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  border: 1px solid rgba(229,231,235,0.9);
}

.job-status.is-open{
  color: var(--primary);
  background: rgba(59,182,214,0.12);
  border-color: rgba(59,182,214,0.22);
}

.job-status.is-closed{
  color: rgba(11,19,32,0.62);
  background: rgba(11,19,32,0.06);
}

.job-content{
  font-size: 15px;
  line-height: 1.75;
  color: rgba(11,19,32,0.78);
}

.job-content ul{
  padding-left: 18px;
}

.job-actions{
  margin-top: 18px;
}

/* simple button if you don’t have global .btn */
.job-apply-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, rgba(59,182,214,0.95), rgba(59,182,214,0.75));
  box-shadow: 0 10px 24px rgba(59,182,214,0.35);
}

.job-apply-btn:hover{
  transform: translateY(-1px);
}


/* ==========================================================
   CAPACITY & COMPLIANCE
=========================================================== */

.capcomp{
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 90px 0;
}

.capcomp-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

/* Left */
.capcomp-left h2{
  font-size: 56px;
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 14px;
}

.capcomp-left h2 span{
  color: var(--primary);
}

.capcomp-lead{
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 26px;
}

/* Stats */
.capcomp-stats{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 560px;
}

.capcomp-stat{
  background: linear-gradient(135deg, #f2f7fd 0%, #eef4fb 55%, #ffffff 100%);
  border: 1px solid rgba(229,231,235,0.9);
  border-radius: 26px;
  padding: 18px 18px;

  box-shadow: 0 16px 34px rgba(0,0,0,0.05);
}

.capcomp-stat-number{
  font-size: 36px;
  font-weight: 800;
  color: rgba(11,19,32,0.85);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.capcomp-stat-text{
  font-size: 13px;
  line-height: 1.4;
  color: rgba(11,19,32,0.75);
}

.capcomp-stat-text span{
  color: rgba(107,114,128,0.95);
  font-weight: 600;
}

/* Right cards */
.capcomp-right{
  display: grid;
  gap: 14px;
}

.capcomp-card{
  background: linear-gradient(135deg, #f2f7fd 0%, #eef4fb 55%, #ffffff 100%);
  border: 1px solid rgba(229,231,235,0.9);
  border-radius: 30px;
  padding: 18px 18px;

  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;

  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.capcomp-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  border-color: rgba(59,182,214,0.30);
}

.capcomp-icon{
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;

  background: rgba(59,182,214,0.12);
  border: 1px solid rgba(59,182,214,0.18);
  color: var(--primary);
  font-weight: 800;
  font-size: 16px;
}

.capcomp-card h3{
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
  color: rgba(11,19,32,0.88);
}

.capcomp-card p{
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* ISO logo box */
.capcomp-iso{
  margin-top: 10px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(229,231,235,0.9);
  border-radius: 18px;
  padding: 10px 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.capcomp-iso img{
  height: 34px;
  width: auto;
  display: block;
}

/* Responsive */
@media (max-width: 1024px){
  .capcomp-inner{
    grid-template-columns: 1fr;
  }
  .capcomp-stats{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px){
  .capcomp{
    padding: 60px 0;
  }
  .capcomp-left h2{
    font-size: 42px;
  }
}
