/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1. Reset & Base
2. Variables & Utilities
3. Header & Nav
4. Hero
5. Sections & Cards
6. Buttons & Links
7. Animations
8. Responsive
--------------------------------------------------------------*/

/* 1. Reset & Base -------------------------------------------------*/
*,
*::before,
*::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg-light);
  line-height: 1.6;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* 2. Variables & Utilities -----------------------------------------*/
:root {
  /* Colors */
  --primary: #002;
  --accent: #0066FF;
  --text: #111;
  --bg-light: #f9f9f9;
  --bg-dark: #fff;

  /* Spacing */
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;

  /* Transitions */
  --trans: 0.3s ease-out;

  /* Header height */
  --header-h: 64px;
}

/* Utility: skip link */
.skip-link {
  position: absolute; top: -40px; left: 1rem;
  background: var(--accent); color: #fff;
  padding: var(--space-sm) var(--space-md);
  z-index: 1001;
  transition: top var(--trans);
}
.skip-link:focus { top: 1rem; }


/* HEADER WRAPPER */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(0, 0, 20, 0.7);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(0, 0, 20, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* FLEX HEADER LAYOUT */
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo img {
  height: 36px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
}

/* DESKTOP NAV */
.navbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
  margin: 0;
}

.nav-list a {
  position: relative;
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.5rem 0;
  transition: all 0.25s ease-in-out;
}
.nav-list a:hover {
  color: #ffffff;
}
.nav-list a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease, left 0.3s ease;
}
.nav-list a:hover::after {
  width: 100%;
  left: 0;
}

/* CTA BUTTON */
.nav-cta {
  background: var(--accent);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.4);
  transition: all 0.3s ease;
}
.nav-cta:hover {
  background: #0052cc;
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.6);
}

/* HAMBURGER */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/*─────────────────────────────────────────────────────────────────────────
  MOBILE NAV 
  (replace any other mobile/nav rules you have below this line)
─────────────────────────────────────────────────────────────────────────*/
@media (max-width: 768px) {
  /* show the hamburger */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002; /* above everything */
  }
  .nav-toggle span {
    width: 24px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease;
  }

  /* the sliding panel */
  .nav-right {
    position: fixed;
    top: var(--header-h);
    right: 0;
    width: 100%;
    height: calc(100vh - var(--header-h));
    background: rgba(0, 0, 20, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1001;               /* above header (1000) */
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    overflow-y: auto;            /* scroll inside if needed */
    transform: translateX(100%); /* hidden by default */
    transition: transform var(--trans);
  }

  /* slide it in when “open” is toggled */
  .nav-right.open {
    transform: translateX(0);
  }

  .nav-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
    list-style: none;
    padding: 0;
  }

  .nav-list a {
    display: block;
    width: 100%;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.25s ease;
  }
  .nav-list a:hover {
    color: #ffffff;
  }

  /* move the CTA to the bottom */
  .nav-cta {
    margin-top: auto;
    align-self: stretch;
    text-align: center;
  }
}


/*──────────────────────────────────────────────────────────────────────
  HERO SECTION
──────────────────────────────────────────────────────────────────────*/
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;

  /* ↓ Add your image, then layer your rotating radial overlay above it: */
  background:
    /* top layer: transparent dark tint */
    linear-gradient(135deg, rgba(0,0,20,0.6), rgba(0,0,51,0.6)),
    /* bottom layer: your full-cover photo */
    url("../images/bg.jpg") center/cover no-repeat fixed;

  display: grid;
  place-items: center;
}

/* you can now remove .hero__overlay completely—or keep it for extra motion */
.hero__overlay { display: none; }

/* rotating radial-overlay for subtle movement */
.hero__overlay {
  content: "";
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, #004080, #001f3f);
  transform: rotate(45deg);
  animation: rotateBg 20s linear infinite;
  opacity: 0.5;
  z-index: 1;
}

@keyframes rotateBg {
  to { transform: rotate(45deg + 360deg); }
}

/* two-column grid */
.hero__content-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
}

/* HEADLINE */
.hero__headline {
  font-size: clamp(2.5rem, 8vw, 4rem);
  line-height: 1.1;
  color: #fff;
  margin: 0;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}
.highlight {
  background: linear-gradient(90deg, #ff7e5f, #feb47b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SUBHEADLINE */
.hero__subheadline {
  margin-top: 1rem;
  color: rgba(255,255,255,0.9);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  max-width: 500px;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

/* CTA BUTTONS */
.hero__cta {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.6s forwards;
}
.btn–primary {
  background: #ff7e5f;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(255,126,95,0.4);
  transition: transform 0.2s ease;
}
.btn–primary:hover {
  transform: translateY(-2px);
}
.btn–secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  transition: background 0.2s ease;
}
.btn–secondary:hover {
  background: rgba(255,255,255,0.1);
}

/* VISUAL */
.hero__visual {
  text-align: center;
  opacity: 0;
  animation: fadeInRight 1s ease-out 0.8s forwards;
}
.hero__visual img {
  max-width: 500px;
  width: 100%;
  display: inline-block;
  animation: float 6s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}

/* FADE + SLIDE IN */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* RESPONSIVE TWEAKS */
@media (max-width: 600px) {
  .hero__content-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__text { order: 2; }
  .hero__visual { order: 1; margin-bottom: 2rem; }
  .hero__subheadline { max-width: 100%; }
}


  /*──────────────────────────────────────────────────────────────────
   ABOUT US - CORPORATE PROFESSIONAL DESIGN
──────────────────────────────────────────────────────────────────*/

.about-section {
  background: #ffffff;
  padding: 5rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text {
  padding-right: 2rem;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.about-intro {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e7eb;
}

.lead-text {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #374151;
  margin: 0;
  font-weight: 400;
}

.about-details p {
  font-size: 1rem;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.about-details p:last-child {
  margin-bottom: 0;
}

.capabilities-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #3b82f6;
}

.capabilities-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.capability-item {
  padding: 0;
  border-left: 3px solid #e5e7eb;
  padding-left: 1.5rem;
  transition: border-color 0.3s ease;
}

.capability-item:hover {
  border-left-color: #3b82f6;
}

.capability-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.capability-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6b7280;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-section {
    min-height: auto;
    padding: 4rem 0;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 800px;
  }
  
  .about-text {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 3rem 0;
  }
  
  .about-content {
    gap: 2.5rem;
  }
  
  .about-title {
    font-size: 2rem;
  }
  
  .lead-text {
    font-size: 1.125rem;
  }
  
  .capabilities-title {
    font-size: 1.25rem;
  }
  
  .capability-item {
    padding-left: 1rem;
  }
}


/* 
/* 5. Sections & Cards ---------------------------------------------*/
.section {
  padding: calc(var(--header-h) + var(--space-lg)) var(--space-lg);
}
.section-title {
  font-size: 2rem; color: var(--primary);
  margin-bottom: var(--space-md);
}
.team-grid,
.mission-values,
.job-cards {
  display: grid;
  gap: var(--space-lg);
}
.team-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
}
.mission-values {
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
}
.card,
.value-card,
.job-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: var(--space-lg);
}

/*──────────────────────────────────────────────────────────────────
   SERVICES SECTION
──────────────────────────────────────────────────────────────────*/
.services-section {
  background: var(--bg-light);
  padding: calc(var(--header-h) + 3rem) 1.5rem 4rem;
  scroll-margin-top: var(--header-h);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: rgba(0, 0, 0, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 102, 255, 0.1);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.15);
}

.service-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 2rem;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.service-description {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.service-highlights li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: rgba(0, 0, 0, 0.8);
}

.service-highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.service-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* Responsive adjustments for services */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .service-content {
    padding: 1.5rem;
  }
}

/*──────────────────────────────────────────────────────────────────
   MISSION SECTION - SINGLE PAGE FIT
──────────────────────────────────────────────────────────────────*/

.mission-section {
  background: #ffffff;
  padding: 3rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.mission-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.mission-header {
  text-align: center;
  margin-bottom: 3rem;
  margin-top: 1rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.mission-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.25rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.mission-statement {
  font-size: 1.125rem;
  line-height: 1.5;
  color: #4b5563;
  margin: 0;
  font-weight: 400;
}

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

.approach-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.approach-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 2.5rem;
  line-height: 1.4;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

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

.feature-card {
  background: #fafafa;
  padding: 1.75rem 1.5rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  background: white;
}

.feature-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.feature-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.feature-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #6b7280;
  margin: 0;
}

.operations-banner {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  box-shadow: 0 4px 20px rgba(30, 41, 59, 0.2);
}

.operations-banner strong {
  color: #93c5fd;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .mission-content {
    padding: 0 1.5rem;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 450px;
    margin: 0 auto 2rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .mission-section {
    padding: 2rem 0;
    min-height: auto;
  }
  
  .mission-content {
    padding: 0 1rem;
  }
  
  .mission-header {
    margin-bottom: 2rem;
  }
  
  .mission-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .mission-statement {
    font-size: 1rem;
  }
  
  .approach-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .approach-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  
  .feature-card {
    padding: 1.25rem;
  }
  
  .feature-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 1rem;
  }
  
  .feature-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .feature-card p {
    font-size: 0.85rem;
  }
  
  .operations-banner {
    padding: 1.25rem 1.5rem;
    font-size: 0.95rem;
  }
}

/*──────────────────────────────────────────────────────────────────
   CAREERS SECTION
──────────────────────────────────────────────────────────────────*/
.careers {
  padding: calc(var(--header-h) + 2rem) 1.5rem 4rem;
  background: var(--bg-light);
  color: var(--text);
  scroll-margin-top: var(--header-h);
}

.careers .section-title {
  text-align: center;
  margin-bottom: var(--space-md);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}

.careers .section-intro {
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.125rem;
  text-align: center;
  color: rgba(0, 0, 0, 0.7);
}

/* Value Props Grid */
.careers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.careers-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 102, 255, 0.1);
}

.careers-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.15);
}

.careers-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 102, 255, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.careers-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

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

/* Open Positions */
.careers-positions {
  margin-top: 3rem;
}

.positions-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  margin-bottom: 2rem;
}

.positions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.position-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 102, 255, 0.1);
}

.position-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.12);
}

.position-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.position-header h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.position-type {
  background: rgba(0, 102, 255, 0.1);
  color: var(--accent);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}

.position-location {
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 1.5rem;
}

.position-details {
  margin-bottom: 2rem;
}

.position-details p {
  margin: 0.5rem 0;
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.95rem;
}

.position-details strong {
  color: var(--primary);
  font-weight: 600;
}

.position-btn {
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
  display: inline-block;
  width: 100%;
  text-align: center;
}

.position-btn:hover {
  background: #0052cc;
  transform: translateY(-1px);
}

/* Responsive adjustments for careers */
@media (max-width: 768px) {
  .careers .section-title {
    font-size: 2rem;
  }
  
  .careers-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .positions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .position-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .position-header h4 {
    min-width: auto;
    margin-bottom: 0.5rem;
  }
}

/*──────────────────────────────────────────────────────────────────
   CONTACT SECTION - MODERN REDESIGN
──────────────────────────────────────────────────────────────────*/
.contact-section {
  padding: calc(var(--header-h) + 3rem) 1.5rem 4rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  scroll-margin-top: var(--header-h);
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
}

.contact-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.contact-subtitle {
  font-size: 1.125rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
  }
}

/* Contact Methods Cards */
.contact-methods {
  display: grid;
  gap: 1.5rem;
}

.contact-card {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 102, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.15);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 102, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.contact-card p {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.contact-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 0.5rem;
}

.contact-link:hover {
  color: #0052cc;
}

/* Contact Form Section */
.contact-form-section {
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 102, 255, 0.1);
}

.form-header {
  margin-bottom: 2rem;
}

.form-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.form-header p {
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.5;
}

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

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

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

.form-field label {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.875rem 1rem;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fff;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-field select {
  cursor: pointer;
}

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

.submit-button {
  background: var(--accent);
  color: #fff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.submit-button:hover {
  background: #0052cc;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.3);
}

.submit-button svg {
  transition: transform 0.3s ease;
}

.submit-button:hover svg {
  transform: translateX(2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-title {
    font-size: 2.25rem;
  }
  
  .contact-form-section {
    padding: 2rem;
  }
  
  .contact-card {
    padding: 1.5rem;
  }
}

/*──────────────────────────────────────────────────────────────────
   FOOTER - MODERN REDESIGN
──────────────────────────────────────────────────────────────────*/
.modern-footer {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #fff;
  padding: 4rem 0 0;
}

.footer-main {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-main {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}

/* Footer Brand */
.footer-brand {
  max-width: 300px;
}

.footer-logo {
  width: 140px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* Footer Sections */
.footer-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #fff;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.contact-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #fff;
}

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

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

.footer-bottom-left p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 0.875rem;
}

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

@media (max-width: 768px) {
  .footer-legal {
    justify-content: center;
  }
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .modern-footer {
    padding: 3rem 0 0;
  }
  
  .footer-main {
    gap: 2.5rem;
  }
  
  .footer-brand {
    max-width: none;
    text-align: center;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-links {
    align-items: center;
  }
  
  .footer-contact {
    align-items: center;
  }
}

/*──────────────────────────────────────────────────────────────────
   ANIMATIONS
──────────────────────────────────────────────────────────────────*/
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.pre-animate {
  opacity: 0;
  transform: translateY(20px);
}

.animate {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease-out;
}

/*──────────────────────────────────────────────────────────────────
   BUTTONS & LINKS
──────────────────────────────────────────────────────────────────*/
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  transition: all var(--trans);
  border-radius: 8px;
  text-align: center;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  padding: var(--space-sm) var(--space-md);
}

.btn--primary:hover {
  background: #0052cc;
  transform: translateY(-1px);
}

.btn--secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: calc(var(--space-sm) - 2px) calc(var(--space-md) - 2px);
}

.btn--secondary:hover {
  background: var(--accent);
  color: #fff;
}

/* Enterprise CTA Button Styling */
.btn-primary-enterprise {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.15),
    0 4px 12px rgba(255, 255, 255, 0.2) inset;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary-enterprise::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
  z-index: -1;
}

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

.btn-primary-enterprise:hover {
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  color: #0066FF !important;
  transform: translateY(-4px);
  
}

/*──────────────────────────────────────────────────────────────────
   UTILITIES
──────────────────────────────────────────────────────────────────*/
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-center { justify-content: center; }
.align-center { align-items: center; }
.flex-column { flex-direction: column; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

/*──────────────────────────────────────────────────────────────────
   RESPONSIVE HELPERS
──────────────────────────────────────────────────────────────────*/
@media (max-width: 768px) {
  .mobile-center { text-align: center; }
  .mobile-hide { display: none; }
  .mobile-show { display: block; }
}

@media (min-width: 769px) {
  .desktop-hide { display: none; }
}

/*──────────────────────────────────────────────────────────────────
   INDIVIDUAL PAGES - ENTERPRISE STYLING
──────────────────────────────────────────────────────────────────*/

/* Enterprise Hero Section */
.enterprise-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  color: #fff;
  overflow: hidden;
}

.enterprise-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.enterprise-hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .enterprise-hero .container {
    grid-template-columns: 1fr 0.8fr;
    gap: 4rem;
  }
}

.enterprise-hero-content {
  text-align: center;
}

@media (min-width: 1024px) {
  .enterprise-hero-content {
    text-align: left;
  }
}

.hero-badge {
  display: inline-block;
  background: rgba(0, 102, 255, 0.2);
  border: 1px solid rgba(0, 102, 255, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.hero-badge span {
  color: #60a5fa;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }
}

.hero-subtitle-accent {
  display: block;
  color: var(--accent);
  font-size: 0.8em;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  max-width: 600px;
}

@media (min-width: 1024px) {
  .hero-description {
    max-width: none;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .hero-stats {
    margin-left: 0;
    margin-right: 0;
  }
}

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

.stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-cta-group {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-cta-group {
    justify-content: flex-start;
  }
}

.btn-primary-enterprise,
.btn-secondary-enterprise {
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  min-width: 200px;
}

.btn-primary-enterprise {
  background: var(--accent);
  color: #ffffff;
}

.btn-primary-enterprise:hover {
  background: #e6e6e6;
  transform: translateY(-2px);
}

.btn-secondary-enterprise {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary-enterprise:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

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

.hero-image-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.hero-image-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: linear-gradient(45deg, rgba(0, 102, 255, 0.1), rgba(0, 102, 255, 0.2));
  border-radius: 12px;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.annotation-demo {
  background: rgba(0, 0, 0, 0.8);
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.demo-label {
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 500;
}

/* Executive Summary */
.executive-summary {
  padding: 5rem 0;
  background: #fff;
}

.summary-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .summary-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
  }
}

.summary-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 3rem;
}

.key-differentiators {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.diff-icon {
  font-size: 2rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 102, 255, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
}

.diff-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.diff-content p {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.5;
}

.summary-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Core Capabilities */
.core-capabilities {
  padding: 5rem 0;
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-description {
  font-size: 1.125rem;
  color: rgba(0, 0, 0, 0.7);
  max-width: 600px;
  margin: 1rem auto 0;
}

/* Capabilities Grid */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.capability-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 102, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.15);
}

.capability-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(0, 102, 255, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.capability-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.capability-card p {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.capability-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.capability-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.capability-features li::before {
  content: "✓";
  color: var(--accent);
  margin-right: 0.5rem;
}

.capability-features li span {
  color: rgba(0, 0, 0, 0.8);
  font-size: 0.95rem;
}

/* Technical Specifications */
.technical-specs {
  padding: 5rem 0;
  background: #fff;
}

.specs-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .specs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.specs-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

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

.specs-list li {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid #e1e5e9;
}

.specs-list li:last-child {
  border-bottom: none;
}

.spec-label {
  font-weight: 500;
  color: var(--primary);
}

.spec-value {
  color: rgba(0, 0, 0, 0.8);
  text-align: right;
}

/* Process Flow */
.process-flow {
  padding: 5rem 0;
  background: var(--bg-light);
}

.process-steps {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 3rem;
  height: 3rem;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  font-size: 1.25rem;
}

.process-step h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.process-step p {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.125rem;
  }
  
  .capability-card {
    padding: 2rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .stat-value {
    font-size: 1.5rem;
  }
}

/* Additional Sections for Individual Pages */

/* How It Works */
.how-it-works {
  padding: 5rem 0;
  background: #fff;
}

.workflow-steps {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .workflow-steps {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

.workflow-step {
  text-align: center;
  padding: 2rem;
  border-radius: 16px;
  background: var(--bg-light);
  position: relative;
}

.workflow-step::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  border: 4px solid #fff;
}

.workflow-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(0, 102, 255, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}

.workflow-step h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.workflow-step p {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
}

/* Team Composition */
.team-composition {
  padding: 5rem 0;
  background: var(--bg-light);
}

.composition-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .composition-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

.composition-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 102, 255, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.composition-card:hover {
  transform: translateY(-4px);
}

.role-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(0, 102, 255, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}

.composition-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.composition-card p {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.skills-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.skills-list li {
  background: rgba(0, 102, 255, 0.1);
  color: var(--accent);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Success Stories */
.success-stories {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.story-card.enterprise {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(0, 102, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.story-card.enterprise:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.story-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.story-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  flex: 1;
  padding-right: 1rem;
}

.story-impact {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.story-description {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.story-details {
  border-top: 1px solid rgba(0, 102, 255, 0.1);
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.95rem;
}

.detail-item strong {
  color: var(--text-dark);
  font-weight: 600;
}

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

.story-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-tag {
  background: rgba(0, 102, 255, 0.1);
  color: var(--accent);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(0, 102, 255, 0.2);
}

/* Enterprise Advantages */
.enterprise-advantages {
  padding: 5rem 0;
  background: #fff;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.advantage-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 102, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.15);
}

.advantage-icon {
  flex-shrink: 0;
}

.icon-container {
  width: 4rem;
  height: 4rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.icon-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent), #0052cc);
  opacity: 0.9;
}

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

.icon-container.scientific {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.icon-container.quality {
  background: linear-gradient(135deg, #10b981, #047857);
}

.icon-container.expertise {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.icon-container.scalability {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.icon-container.security {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.icon-container.speed {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.icon-container.cost {
  background: linear-gradient(135deg, #10b981, #059669);
}

.icon-container.control {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.advantage-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.advantage-item p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}

.advantage-content {
  flex: 1;
}

/* Enhanced Capability Cards with Images */
.capability-card.premium {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 102, 255, 0.15);
  transition: all 0.4s ease;
  position: relative;
}

.capability-card.premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 102, 255, 0.2);
}

.capability-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.capability-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.capability-card.premium:hover .capability-image img {
  transform: scale(1.05);
}

.capability-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}

.capability-tag {
  background: rgba(0, 102, 255, 0.9);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.capability-content {
  padding: 2rem;
}

.capability-description {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.capability-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.feature-tag {
  background: rgba(0, 102, 255, 0.1);
  color: var(--accent);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(0, 102, 255, 0.2);
}

/* Industries Served Section */
.industries-served {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.industry-card.enterprise {
  background: #fff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 102, 255, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.industry-card.enterprise:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 102, 255, 0.15);
}

.industry-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.industry-icon {
  width: 64px;
  height: 64px;
  padding: 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent) 0%, #0052CC 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.industry-icon.pharma {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.industry-icon.medtech {
  background: linear-gradient(135deg, #10b981, #047857);
}

.industry-icon.academic {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.industry-icon.biotech {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.industry-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  flex: 1;
}

.industry-description {
  color: var(--text-muted);
  line-height: 1.7;
   margin-bottom: 1.5rem;
  font-size: 1rem;
}

.industry-applications {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.app-tag {
  background: rgba(0, 102, 255, 0.1);
  color: var(--accent);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(0, 102, 255, 0.2);
  transition: all 0.3s ease;
}

.app-tag:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-1px);
}

/* Responsive adjustments for Industries */
@media (max-width: 768px) {
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .industry-card.enterprise {
    padding: 2rem;
  }
  
  .industry-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .industry-header h3 {
    font-size: 1.25rem;
  }
}

/* CTA Section Layout */
.enterprise-cta .cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 4rem;
  padding: 0 2rem;
}

@media (min-width: 992px) {
  .enterprise-cta .cta-content {
    display: grid;
    grid-template-columns: 1fr auto;
    text-align: left;
    align-items: center;
    gap: 6rem;
    padding: 0;
  }
}

.cta-text {
  max-width: 600px;
}

.cta-text h2 {
  font-size: 3.2rem;
  font-weight: 700;
  color: white !important;
  margin-bottom: 2rem;
  line-height: 1.1;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  letter-spacing: -0.02em;
}

.cta-text p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95) !important;
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-weight: 400;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  flex-shrink: 0;
}

.btn.large {
  padding: 1.75rem 3.5rem;
  font-size: 1.125rem;
  min-width: 350px;
  white-space: nowrap;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  position: relative;
  overflow: hidden;
}

.contact-info {
  text-align: center;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 1.25rem 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  min-width: 300px;
}

@media (min-width: 992px) {
  .contact-info {
    text-align: right;
  }
}

/* Responsive CTA adjustments */
@media (max-width: 991px) {
  .enterprise-cta {
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%) !important;
    padding: 6rem 0;
    min-height: auto;
  }
  
  .enterprise-cta::before {
    background: 
      linear-gradient(135deg, #0066FF 0%, #0052CC 100%),
      radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.12) 0%, transparent 60%),
      radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
      radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  }
  
  .cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .cta-text p {
    font-size: 1.2rem;
  }
  
  .btn.large {
    min-width: auto;
    width: 100%;
    max-width: 350px;
    padding: 1.5rem 2rem;
  }
  
  .contact-info {
    min-width: auto;
    width: 100%;
    max-width: 350px;
    text-align: center !important;
  }
  
  .enterprise-cta .cta-content {
    gap: 3rem;
  }
}

@media (max-width: 576px) {
  .enterprise-cta {
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%) !important;
    padding: 4rem 0;
  }
  
  .enterprise-cta::before {
    background: 
      linear-gradient(135deg, #0066FF 0%, #0052CC 100%),
      radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.12) 0%, transparent 60%),
      radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
      radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  }
  
  .cta-text h2 {
    font-size: 2rem;
  }
  
  .cta-text p {
    font-size: 1.1rem;
  }
  
  .enterprise-cta .cta-content {
    gap: 2.5rem;
    padding: 0 1rem;
  }
  
  .btn.large {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }
  
  .contact-info {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .cta-actions {
    min-width: auto;
    width: 100%;
  }
}

.contact-info strong {
  display: block;
  color: white !important;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Responsive CTA adjustments */
@media (max-width: 768px) {
  .cta-text h2 {
    font-size: 2rem;
  }
  
  .btn.large {
    min-width: auto;
    width: 100%;
  }
  
  .enterprise-cta .cta-content {
    gap: 2rem;
  }
}

/* Enterprise CTA Section - Base Styles */
.enterprise-cta {
  background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%) !important;
  padding: 8rem 0;
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 450px;
  display: flex;
  align-items: center;
}

.enterprise-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(135deg, #0066FF 0%, #0052CC 100%),
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  z-index: 1;
}

.enterprise-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  z-index: 1;
}

.enterprise-cta .container {
  position: relative;
  z-index: 3;
  width: 100%;
}