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

/* Image Protection - Prevent casual downloading */
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  pointer-events: none;
}

:root {
  --bg-primary: #0a0f1a;
  --bg-secondary: #0d1424;
  --bg-tertiary: #111b2e;
  --bg-card: rgba(17, 27, 46, 0.7);

  --cyan-primary: #22d3ee;
  --cyan-light: #67e8f9;
  --cyan-dark: #06b6d4;
  --cyan-glow: rgba(34, 211, 238, 0.4);
  --cyan-subtle: rgba(34, 211, 238, 0.1);

  --blue-primary: #60a5fa;
  --blue-light: #93c5fd;
  --blue-glow: rgba(96, 165, 250, 0.3);

  --gradient-main: linear-gradient(135deg, #60a5fa 0%, #22d3ee 100%);
  --gradient-glow: linear-gradient(135deg, rgba(96, 165, 250, 0.2) 0%, rgba(34, 211, 238, 0.2) 100%);
  --gradient-text: linear-gradient(135deg, #ffffff 0%, #22d3ee 50%, #60a5fa 100%);

  --text-white: #ffffff;
  --text-light: rgba(255, 255, 255, 0.9);
  --text-muted: rgba(255, 255, 255, 0.6);
  --text-dim: rgba(255, 255, 255, 0.4);

  --accent-primary: #a78bfa;

  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.12);
  --border-glow: rgba(34, 211, 238, 0.3);
}

html {
  scroll-behavior: smooth;
}

/* Section Labels */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #22d3ee;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-primary);
  color: var(--text-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Animated Background */
.bg-gradient {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(34, 211, 238, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(96, 165, 250, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
  z-index: -1;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(180deg, rgba(10, 15, 26, 0.95) 0%, rgba(10, 15, 26, 0) 100%);
  backdrop-filter: blur(20px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo img {
  height: 42px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gradient-main);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-phone {
  color: var(--cyan-primary);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding-left: 1rem;
  border-left: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-phone svg {
  flex-shrink: 0;
}

.nav-cta {
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  border: none;
  background: var(--gradient-main);
  color: var(--bg-primary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px var(--cyan-glow);
  text-decoration: none;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--cyan-glow);
}

.nav-cta::after {
  display: none;
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-dropdown > a svg {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover > a svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 160px;
  padding: 0.75rem 0;
  background: rgba(10, 15, 26, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  color: var(--text-white);
  background: rgba(34, 211, 238, 0.1);
}

.dropdown-menu a::after {
  display: none;
}

/* Page Hero (shorter version for sub-pages) */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  max-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.page-hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(90deg, rgba(10, 15, 26, 0.9) 0%, rgba(10, 15, 26, 0.6) 50%, rgba(10, 15, 26, 0.4) 100%),
    linear-gradient(180deg, rgba(10, 15, 26, 0.3) 0%, transparent 30%, transparent 60%, rgba(10, 15, 26, 0.95) 100%);
  z-index: 2;
}

.page-hero-content {
  position: relative;
  z-index: 10;
  padding: 0 8%;
  padding-top: 80px;
}

.page-hero-content h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.page-hero-content p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
}

/* Content Sections */
.content-section {
  padding: 6rem 5%;
  background: var(--bg-primary);
}

.content-section.alt-bg {
  background: var(--bg-secondary);
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.content-wrapper.narrow {
  max-width: 900px;
}

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

.center-text h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.center-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.center-text p.lead {
  font-size: 1.25rem;
  color: var(--text-light);
}

.blueprint-overview-visual {
  max-width: 800px;
  margin: 3rem auto;
  text-align: center;
}

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

.pillars-illustration,
.ecosystem-illustration {
  margin-top: 3rem;
  text-align: center;
}

.pillars-illustration img,
.ecosystem-illustration img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

/* Spektrom Intro Section */
.spektrom-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.spektrom-intro-text h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.spektrom-intro-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.spektrom-intro-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 4rem;
}

.intro-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.intro-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(34, 211, 238, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.intro-feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--cyan-primary);
}

.intro-feature h4 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.intro-feature p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

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

/* Integrations Grid */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.integration-category {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.integration-category:hover {
  border-color: var(--border-light);
}

.category-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.category-icon.cyan {
  background: rgba(34, 211, 238, 0.1);
}
.category-icon.cyan svg { stroke: #22d3ee; }

.category-icon.green {
  background: rgba(16, 185, 129, 0.1);
}
.category-icon.green svg { stroke: #10b981; }

.category-icon.blue {
  background: rgba(96, 165, 250, 0.1);
}
.category-icon.blue svg { stroke: #60a5fa; }

.category-icon.yellow {
  background: rgba(251, 191, 36, 0.1);
}
.category-icon.yellow svg { stroke: #fbbf24; }

.category-icon.purple {
  background: rgba(167, 139, 250, 0.1);
}
.category-icon.purple svg { stroke: #a78bfa; }

.category-icon.orange {
  background: rgba(251, 146, 60, 0.1);
}
.category-icon.orange svg { stroke: #fb923c; }

.integration-category h4 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

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

.integration-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
}

.integration-list li:last-child {
  border-bottom: none;
  color: var(--text-dim);
  font-style: italic;
}

.integrations-note {
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(34, 211, 238, 0.05);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 12px;
}

.integrations-note p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 900px) {
  .integrations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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

.content-main h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.content-main h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-white);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.content-main p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.content-main p.lead {
  font-size: 1.2rem;
  color: var(--text-light);
}

.content-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 4rem;
}

/* Info Cards */
.info-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: var(--border-glow);
  transform: translateX(8px);
}

.info-icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-glow);
  border: 1px solid var(--border-glow);
  border-radius: 12px;
  flex-shrink: 0;
  color: var(--cyan-primary);
}

.info-icon svg {
  width: 24px;
  height: 24px;
}

.info-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 0.35rem;
}

.info-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--gradient-glow);
  border: 1px solid var(--border-glow);
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.section-tag span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cyan-primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-tag.large {
  padding: 0.75rem 2rem;
  margin-bottom: 2rem;
}

.section-tag.large span {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.section-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Solutions Section */
.solutions-section {
  padding: 6rem 5%;
  background: var(--bg-primary);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.solution-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 3rem;
  transition: all 0.4s ease;
  position: relative;
  backdrop-filter: blur(10px);
}

.solution-card.featured {
  border-color: var(--border-glow);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.05) 0%, rgba(96, 165, 250, 0.05) 100%);
}

.solution-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(34, 211, 238, 0.1);
}

.solution-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--gradient-glow);
  border: 1px solid var(--border-glow);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--cyan-primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.solution-card h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.solution-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.solution-features {
  list-style: none;
  margin-bottom: 2rem;
}

.solution-features li {
  font-size: 0.95rem;
  color: var(--text-dim);
  padding: 0.6rem 0;
  padding-left: 1.5rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.solution-features li:last-child {
  border-bottom: none;
}

.solution-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--cyan-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan-glow);
}

/* Pillar Sections */
.pillar-section {
  padding: 6rem 5%;
  background: var(--bg-primary);
}

.pillar-section.alt {
  background: var(--bg-secondary);
}

.pillar-header {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.pillar-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.pillar-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem !important;
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  margin-bottom: 1.5rem !important;
}

.pillar-subtitle-inline {
  font-size: 0.5em;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 0.5rem;
}

.module-title-box {
  display: inline-block;
  background: rgba(17, 27, 46, 0.7);
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 16px;
  padding: 1.5rem 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.module-title-box:hover {
  border-color: rgba(34, 211, 238, 0.5);
  box-shadow: 0 10px 30px rgba(34, 211, 238, 0.1);
}

.module-title-box .section-tag {
  margin-bottom: 0.5rem;
}

.module-title-box h2 {
  margin-bottom: 0.25rem;
}

.module-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  margin: 0;
}

.pillar-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.pillar-header p:last-of-type {
  margin-bottom: 0;
  font-size: 1rem;
  color: var(--text-dim);
}

.pillar-content {
  max-width: 1000px;
  margin: 0 auto;
}

.pillar-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.3s ease;
}

.feature-block:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
}

.feature-block h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.feature-block p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.pillar-modules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Integration Section */
.integration-section {
  padding: 5rem 5%;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.integration-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.integration-item {
  padding: 0.75rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.integration-item:hover {
  border-color: var(--border-glow);
  color: var(--cyan-primary);
}

@media (max-width: 768px) {
  .pillar-features,
  .pillar-modules {
    grid-template-columns: 1fr;
  }
}

/* Modules Grid */
.modules-section {
  padding: 6rem 5%;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.module-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.25rem;
  transition: all 0.4s ease;
  position: relative;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.module-card:hover::before {
  transform: scaleX(1);
}

.module-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(34, 211, 238, 0.1);
}

.module-card.featured {
  border-color: var(--border-glow);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.08) 0%, var(--bg-card) 100%);
}

.module-card.featured::before {
  transform: scaleX(1);
}

.module-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gradient-glow);
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}

.module-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.module-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.feature-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--cyan-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan-glow);
}

/* Two Services (Blueprint + Spektrom) */
.two-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 3rem auto 0;
}

.service-card {
  background: rgba(17, 27, 46, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
}

.service-card.blueprint-card {
  border-color: rgba(16, 185, 129, 0.3);
}

.service-card.blueprint-card:hover {
  border-color: rgba(16, 185, 129, 0.5);
}

.service-card.spektrom-card {
  border-color: rgba(34, 211, 238, 0.3);
}

.service-card.spektrom-card:hover {
  border-color: rgba(34, 211, 238, 0.5);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}

.blueprint-card .service-icon {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
}

.spektrom-card .service-icon {
  background: rgba(34, 211, 238, 0.15);
  color: #22d3ee;
}

.service-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.service-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.service-card > p:last-of-type {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.service-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: #34d399;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: #6ee7b7;
}

.service-badge {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.4rem 1rem;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #22d3ee;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

/* Spektrom Highlight Card */
.spektrom-highlight {
  max-width: 700px;
  margin: 3rem auto 0;
}

.highlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.highlight-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.highlight-icon svg {
  color: var(--accent-primary);
}

.highlight-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.highlight-card p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* Spektrom + Blueprint Cards */
.spektrom-blueprint-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 900px;
  margin: 3rem auto 0;
}

.sb-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.sb-card.spektrom-card {
  flex: 1.4;
  border-color: rgba(34, 211, 238, 0.3);
  padding: 2.5rem;
}

.sb-card.spektrom-card h3 {
  font-size: 1.75rem;
}

.sb-card.blueprint-card {
  flex: 0.8;
  border-color: rgba(16, 185, 129, 0.3);
  padding: 1.75rem;
}

.sb-card.blueprint-card.smaller h3 {
  font-size: 1.25rem;
}

.sb-card.blueprint-card.smaller .sb-icon {
  width: 48px;
  height: 48px;
}

.sb-card.blueprint-card.smaller .sb-description {
  font-size: 0.85rem;
}

.sb-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.sb-icon.cyan {
  background: linear-gradient(135deg, #22d3ee, #06b6d4);
  box-shadow: 0 8px 25px rgba(34, 211, 238, 0.3);
}

.sb-icon.green {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.sb-icon svg {
  color: #0a0f1a;
}

.sb-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.sb-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.sb-card.spektrom-card .sb-subtitle {
  color: var(--cyan-primary);
}

.sb-card.blueprint-card .sb-subtitle {
  color: #10b981;
}

.sb-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.sb-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--cyan-light);
}

.sb-link {
  display: inline-block;
  color: #34d399;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sb-link:hover {
  color: #6ee7b7;
}

.sb-connector {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .spektrom-blueprint-cards {
    flex-direction: column;
  }

  .sb-card.spektrom-card,
  .sb-card.blueprint-card {
    flex: none;
    width: 100%;
  }

  .sb-connector {
    transform: rotate(90deg);
  }
}

/* Haven Components */
.haven-components {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.haven-component {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.haven-component.sunshine-component {
  border-color: rgba(251, 191, 36, 0.3);
  background: rgba(251, 191, 36, 0.03);
}

.haven-component.compliance-component {
  border-color: rgba(34, 211, 238, 0.3);
  background: rgba(34, 211, 238, 0.03);
}

.component-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.component-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 0.75rem;
}

.sunshine-component .component-label {
  color: #fbbf24;
}

.compliance-component .component-label {
  color: #22d3ee;
}

.component-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 0.75rem;
}

.sunshine-component .component-icon {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.compliance-component .component-icon {
  background: linear-gradient(135deg, #22d3ee, #06b6d4);
}

.component-header h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
  margin: 0 0 0.5rem;
}

.component-badge {
  font-size: 0.7rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  display: inline-block;
}

.sunshine-component .component-badge {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
}

.component-badge.optional {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  margin-left: 0.5rem;
}

.compliance-component .component-badge {
  background: rgba(34, 211, 238, 0.15);
  color: #22d3ee;
}

.component-desc {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.component-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.component-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
}

.component-feature .feature-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.component-feature strong {
  display: block;
  color: white;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.component-feature span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.component-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.component-checklist span {
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.6);
}

.sunshine-component .component-checklist span {
  background: rgba(251, 191, 36, 0.1);
  color: rgba(251, 191, 36, 0.8);
}

.compliance-component .component-checklist span {
  background: rgba(34, 211, 238, 0.1);
  color: rgba(34, 211, 238, 0.8);
}

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

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

/* Haven Subsections */
.haven-subsection {
  margin-bottom: 4rem;
}

.haven-subsection:last-child {
  margin-bottom: 0;
}

.subsection-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.subsection-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cyan-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.subsection-header.sunshine .subsection-tag {
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.25);
  color: #fbbf24;
}

.subsection-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.subsection-header p {
  font-size: 1rem;
  color: var(--text-muted);
}

.pillar-modules.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.pillar-modules.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.module-card.compact {
  padding: 1.5rem;
}

.module-card.compact h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.module-card.compact p {
  font-size: 0.85rem;
  line-height: 1.5;
}

.module-card.compact .module-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.module-card.sunshine-card {
  border-color: rgba(251, 191, 36, 0.25);
}

.module-card.sunshine-card:hover {
  border-color: rgba(251, 191, 36, 0.4);
  box-shadow: 0 20px 50px rgba(251, 191, 36, 0.1);
}

.module-card.sunshine-card::before {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.module-icon.sunshine-icon {
  background: rgba(251, 191, 36, 0.15);
  border-color: rgba(251, 191, 36, 0.3);
}

.module-card.sunshine-card .feature-item::before {
  background: #fbbf24;
  box-shadow: 0 0 8px rgba(251, 191, 36, 0.4);
}

@media (max-width: 768px) {
  .pillar-modules.two-col {
    grid-template-columns: 1fr;
  }

  .pillar-modules.three-col {
    grid-template-columns: 1fr;
  }
}

/* Team Stats */
.team-stats-section {
  padding: 3rem 5%;
  background: var(--bg-secondary);
}

.team-stats-grid {
  display: flex;
  justify-content: center;
  gap: 4rem;
  max-width: 800px;
  margin: 0 auto;
}

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

.team-stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 300;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.team-stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Expertise Grid */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.expertise-card {
  background: rgba(17, 27, 46, 0.7);
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 16px;
  padding: 1.25rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.expertise-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #22d3ee, #60a5fa);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.expertise-card:hover {
  border-color: rgba(34, 211, 238, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(34, 211, 238, 0.15), 0 0 30px rgba(34, 211, 238, 0.1);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.08), rgba(96, 165, 250, 0.08));
}

.expertise-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), rgba(96, 165, 250, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--cyan-primary);
  transition: all 0.3s ease;
}

.expertise-icon svg {
  width: 22px;
  height: 22px;
}

.expertise-card:hover .expertise-icon {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.3), rgba(96, 165, 250, 0.25));
  transform: scale(1.05);
}

.expertise-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.team-names {
  font-size: 0.9rem;
  color: var(--cyan-primary);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.expertise-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}


@media (max-width: 1024px) {
  .team-stats-grid {
    gap: 2rem;
  }
}

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

  .team-stats-grid {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* Pillar Visual Content */
.pillar-visual-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.pillar-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Beacon Pipeline Illustration */
.beacon-pipeline-illustration {
  max-width: 900px;
  margin: 2.5rem auto 3rem;
  padding: 0 1rem;
}

.beacon-pipeline-illustration svg {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .beacon-pipeline-illustration {
    overflow-x: auto;
    padding-bottom: 1rem;
  }

  .beacon-pipeline-illustration svg {
    min-width: 700px;
  }
}

.pillar-features-grid {
  max-width: 900px;
  margin: 0 auto;
}

.pillar-features-grid .pillar-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 3rem;
}

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

.feature-item-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-item-row .feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon.green {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

.feature-icon.blue {
  background: rgba(96, 165, 250, 0.15);
  color: #60a5fa;
}

.feature-icon.cyan {
  background: rgba(14, 165, 233, 0.15);
  color: #0ea5e9;
}

.feature-item-row h4 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.feature-item-row p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* App Mockups */
.app-mockup {
  background: #0d1117;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: #161b22;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3d4450;
}

.mockup-dots span:first-child { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:nth-child(3) { background: #28c840; }

.mockup-title {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.mockup-body {
  padding: 1.25rem;
  min-height: 300px;
}

/* Pathway Pipeline View */
.pipeline-view {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.pipeline-column {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 0.75rem;
}

.pipeline-header {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
  text-align: center;
}

.pipeline-header.new { background: rgba(99, 102, 241, 0.2); color: #818cf8; }
.pipeline-header.tour { background: rgba(251, 191, 36, 0.2); color: #fbbf24; }
.pipeline-header.assess { background: rgba(34, 211, 238, 0.2); color: #22d3ee; }
.pipeline-header.admit { background: rgba(16, 185, 129, 0.2); color: #10b981; }

.pipeline-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 0.6rem;
  margin-bottom: 0.5rem;
}

.pipeline-card.highlight {
  border-color: rgba(251, 191, 36, 0.4);
  background: rgba(251, 191, 36, 0.08);
}

.pipeline-card.success {
  border-color: rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.08);
}

.card-name {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 0.2rem;
}

.card-meta {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.card-date, .card-progress {
  font-size: 0.6rem;
  color: var(--cyan-primary);
}

/* Haven Resident View */
.haven-resident-view {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  padding: 1rem;
}

.resident-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.resident-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  color: white;
}

.resident-info {
  flex: 1;
}

.resident-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 0.2rem;
}

.resident-meta {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.resident-status {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
}

.resident-status.good {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

.haven-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.haven-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.75rem;
}

.haven-card-header {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.haven-card-value {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 0.2rem;
}

.haven-card-sub {
  font-size: 0.65rem;
  color: #0ea5e9;
}

/* Sunshine Cards */
.sunshine-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.sunshine-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}

.sunshine-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(251, 191, 36, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.sunshine-card-icon svg {
  stroke: #fbbf24;
}

.sunshine-card h4 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.sunshine-card > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

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

.sunshine-card-features li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.sunshine-card-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #fbbf24;
}

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

/* Haven Mockups */
.haven-mockups-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
}

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

.mockup-label {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Tablet Frame */
.tablet-frame {
  width: 320px;
  height: 220px;
  background: #1a1a2e;
  border-radius: 16px;
  padding: 12px;
  border: 3px solid #2d2d44;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.tablet-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-radius: 8px;
  overflow: hidden;
}

.sunshine-ui {
  padding: 0.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.sunshine-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.sunshine-greeting {
  font-size: 0.8rem;
  font-weight: 600;
  color: #92400e;
}

.sunshine-time {
  font-size: 0.7rem;
  color: #b45309;
}

.sunshine-photo {
  flex: 1;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.photo-placeholder {
  text-align: center;
  color: #b45309;
}

.photo-placeholder svg {
  opacity: 0.5;
  margin-bottom: 0.25rem;
}

.photo-placeholder span {
  display: block;
  font-size: 0.65rem;
}

.sunshine-widgets {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.widget {
  flex: 1;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  padding: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.6rem;
  color: #92400e;
}

.widget svg {
  width: 14px;
  height: 14px;
}

.sunshine-schedule {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  padding: 0.4rem;
}

.schedule-item {
  display: flex;
  gap: 0.5rem;
  font-size: 0.6rem;
  padding: 0.2rem 0;
}

.schedule-time {
  color: #b45309;
  font-weight: 600;
  min-width: 50px;
}

.schedule-event {
  color: #92400e;
}

/* Phone Frame */
.phone-frame {
  width: 160px;
  height: 320px;
  background: #1a1a2e;
  border-radius: 24px;
  padding: 8px;
  border: 3px solid #2d2d44;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 20px;
  background: #1a1a2e;
  border-radius: 0 0 12px 12px;
  z-index: 1;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #0f172a;
  border-radius: 18px;
  overflow: hidden;
}

.family-app-ui {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.app-header {
  background: linear-gradient(135deg, #22d3ee, #06b6d4);
  padding: 1.5rem 0.75rem 0.75rem;
}

.app-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
}

.activity-feed {
  flex: 1;
  padding: 0.5rem;
}

.activity-item {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 0.4rem;
}

.activity-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
}

.activity-icon.meal { background: #fbbf24; }
.activity-icon.activity { background: #10b981; }
.activity-icon.photo { background: #8b5cf6; }

.activity-content {
  flex: 1;
}

.activity-text {
  display: block;
  font-size: 0.6rem;
  color: var(--text-light);
  margin-bottom: 0.1rem;
}

.activity-time {
  font-size: 0.55rem;
  color: var(--text-muted);
}

.app-actions {
  padding: 0.5rem;
  display: flex;
  gap: 0.4rem;
}

.app-btn {
  flex: 1;
  padding: 0.4rem;
  border: none;
  border-radius: 6px;
  font-size: 0.55rem;
  font-weight: 600;
  cursor: pointer;
}

.app-btn.call {
  background: #22d3ee;
  color: #0f172a;
}

.app-btn.photo {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

/* Haven Features Row */
.haven-features-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.haven-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.check-icon {
  color: #fbbf24;
  font-weight: bold;
}

/* Pulse Dashboard */
.mockup-body.dashboard {
  display: flex;
  gap: 1rem;
  padding: 0;
  min-height: 320px;
}

.dashboard-sidebar {
  width: 100px;
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem 0.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar-item {
  padding: 0.5rem 0.75rem;
  font-size: 0.7rem;
  color: var(--text-muted);
  border-radius: 6px;
  margin-bottom: 0.25rem;
  cursor: pointer;
}

.sidebar-item.active {
  background: rgba(96, 165, 250, 0.15);
  color: #60a5fa;
}

.dashboard-main {
  flex: 1;
  padding: 1rem;
}

.dashboard-top-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 0.75rem;
}

.stat-card.alert {
  border-color: rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.08);
}

.stat-label {
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.stat-value {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-white);
}

.stat-value.good {
  color: #10b981;
}

.stat-change {
  font-size: 0.6rem;
}

.stat-change.positive {
  color: #10b981;
}

.stat-sub {
  font-size: 0.55rem;
  color: var(--text-muted);
}

.dashboard-charts-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.chart-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 0.75rem;
}

.chart-title {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.bar-chart {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bar-label {
  font-size: 0.6rem;
  color: var(--text-muted);
  width: 50px;
}

.bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #22d3ee, #06b6d4);
  border-radius: 4px;
}

.bar-value {
  font-size: 0.6rem;
  color: var(--cyan-primary);
  width: 30px;
  text-align: right;
}

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

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

.stage-count {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
}

.stage-name {
  font-size: 0.55rem;
  color: var(--text-muted);
}

.pipeline-arrow {
  color: var(--text-dim);
  font-size: 0.8rem;
}

/* Responsive Mockups */
@media (max-width: 1024px) {
  .pillar-visual-content {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 768px) {
  .haven-mockups-row {
    flex-direction: column;
    align-items: center;
  }

  .tablet-frame {
    width: 280px;
    height: 190px;
  }

  .pipeline-view {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    display: none;
  }

  .dashboard-charts-row {
    grid-template-columns: 1fr;
  }

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

  .resident-header {
    flex-wrap: wrap;
  }

  .resident-status {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
  }
}

/* AI Section */
.ai-section {
  padding: 6rem 5%;
  background: var(--bg-secondary);
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.ai-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.3s ease;
}

.ai-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
}

.ai-card h4 {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 0.6rem;
}

.ai-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* AI Row Layout */
.ai-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ai-item {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  min-height: 200px;
}

.ai-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.ai-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-primary);
}

.ai-item h4 {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.ai-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}

/* Hardware Two Sides */
.hardware-two-sides {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 3rem auto 0;
}

.hardware-side {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
}

.hardware-side.agnostic {
  border-color: rgba(34, 211, 238, 0.3);
}

.hardware-side.proprietary {
  border-color: rgba(96, 165, 250, 0.3);
}

.hardware-side-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.hardware-side.agnostic .hardware-side-icon {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.15), rgba(34, 211, 238, 0.05));
  color: var(--cyan-primary);
}

.hardware-side.proprietary .hardware-side-icon {
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.15), rgba(96, 165, 250, 0.05));
  color: var(--blue-primary);
}

.hardware-side h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.hardware-side p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.hardware-side-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hardware-side-divider span {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-dim);
}

@media (max-width: 768px) {
  .hardware-two-sides {
    flex-direction: column;
  }

  .hardware-side-divider {
    padding: 0.5rem 0;
  }
}

/* Devices Grid */
.devices-section {
  padding: 6rem 5%;
  background: var(--bg-primary);
}

.devices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.device-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.device-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(34, 211, 238, 0.1);
}

.device-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.device-icon.styled {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gradient-glow);
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--cyan-primary);
}

.device-icon.styled svg {
  width: 26px;
  height: 26px;
}

.device-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 0.6rem;
}

.device-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Spektrom Hardware Suite */
.spektrom-suite-section {
  padding: 6rem 5%;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.suite-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.suite-card {
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.suite-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.4);
}

.suite-card.sunshine-card {
  background: rgba(251, 191, 36, 0.08);
  border-color: rgba(251, 191, 36, 0.25);
}

.suite-card.sunshine-card:hover {
  border-color: rgba(251, 191, 36, 0.4);
}

.suite-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.15);
  border-radius: 14px;
  color: #a78bfa;
  margin-bottom: 1.25rem;
}

.suite-icon.sunshine {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
}

.suite-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.35rem 0.75rem;
  background: rgba(139, 92, 246, 0.2);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #a78bfa;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.suite-badge.sunshine {
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
}

.suite-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.suite-card p {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.suite-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.suite-tags span {
  padding: 0.3rem 0.7rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

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

/* Flagship Tag Highlight */
.flagship-tag span {
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.2), rgba(139, 92, 246, 0.2));
  border-color: rgba(96, 165, 250, 0.4);
  color: #60a5fa;
}

/* Hardware Featured */
.flagship-section {
  padding: 6rem 5%;
  background: var(--bg-secondary);
}

.hardware-featured {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 2px solid rgba(96, 165, 250, 0.3);
  border-radius: 32px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  position: relative;
}

.hardware-featured::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(96, 165, 250, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.hardware-featured-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.hardware-featured-content {
  padding: 3.5rem;
  position: relative;
  z-index: 1;
}

.hardware-featured-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.hardware-featured-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.hardware-featured-specs {
  padding: 3.5rem;
  background: rgba(10, 15, 26, 0.5);
  border-left: 1px solid var(--border);
}

.hardware-featured-specs h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-primary);
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-row.highlight {
  background: rgba(34, 211, 238, 0.1);
  margin: 0 -1rem;
  padding: 1rem;
  border-radius: 8px;
  border-bottom: none;
}

.spec-row.highlight .spec-value {
  color: var(--cyan-primary);
  font-weight: 600;
}

.spec-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.spec-value {
  font-size: 0.9rem;
  color: var(--text-white);
  font-weight: 500;
}

.enquiry-cta {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* Future Grid */
.future-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.future-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
}

.future-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.future-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Tags */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  font-family: 'Inter', monospace;
  letter-spacing: 0.02em;
  background: rgba(34, 211, 238, 0.1);
  color: var(--cyan-light);
  border: 1px solid rgba(34, 211, 238, 0.2);
}

/* Team Section */
.team-section {
  padding: 6rem 5%;
  background: var(--bg-primary);
}

.team-grid-large {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.team-card-large {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.team-card-large:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
}

.team-card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--bg-primary);
  box-shadow: 0 4px 20px var(--cyan-glow);
}

.team-info h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-white);
}

.team-info p {
  font-size: 0.9rem;
  color: var(--cyan-primary);
}

.team-card-large > p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-tag {
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  background: rgba(34, 211, 238, 0.1);
  color: #22d3ee;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(34, 211, 238, 0.2);
  transition: all 0.3s ease;
}

.expertise-card:hover .skill-tag {
  background: rgba(34, 211, 238, 0.15);
  border-color: rgba(34, 211, 238, 0.3);
}

/* Team Members Section */
.team-members-section {
  padding: 6rem 5%;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.team-department {
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.team-department:last-child {
  margin-bottom: 0;
}

.department-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cyan-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(34, 211, 238, 0.2);
}

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

.team-members-grid.single {
  max-width: 1200px;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .team-members-grid.single {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.team-member-card {
  background: rgba(17, 27, 46, 0.7);
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.team-member-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #22d3ee, #60a5fa);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.team-member-card:hover {
  border-color: rgba(34, 211, 238, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(34, 211, 238, 0.15), 0 0 30px rgba(34, 211, 238, 0.1);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.08), rgba(96, 165, 250, 0.08));
}

.member-avatar {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), rgba(96, 165, 250, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-primary);
  transition: all 0.3s ease;
}

.team-member-card:hover .member-avatar {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.3), rgba(96, 165, 250, 0.25));
  transform: scale(1.05);
}

.member-info {
  flex: 1;
}

.member-info h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.member-role {
  display: block;
  font-size: 0.9rem;
  color: var(--cyan-primary);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.member-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.team-member-card:hover .skill-tag {
  background: rgba(34, 211, 238, 0.15);
  border-color: rgba(34, 211, 238, 0.3);
}

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

  .team-member-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .member-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .member-info .skill-tags {
    justify-content: center;
  }
}

/* Vision Section */
.vision-section {
  padding: 8rem 5%;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  text-align: center;
}

.vision-content {
  max-width: 900px;
  margin: 0 auto;
}

.vision-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 300;
  color: var(--text-white);
  line-height: 1.5;
  margin-bottom: 2rem;
}

.vision-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.tagline {
  margin-top: 4rem;
}

.tagline p {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 300;
  margin-bottom: 0.75rem;
}

.tagline p:nth-child(1) { color: var(--text-white); }
.tagline p:nth-child(2) {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
}
.tagline p:nth-child(3) { color: var(--text-white); font-weight: 400; }

/* Cambridge Section */
.cambridge-section {
  padding: 6rem 5%;
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
}

.cambridge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.cambridge-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.cambridge-card:hover {
  border-color: var(--border-light);
}

.cambridge-card.featured {
  border-color: var(--border-glow);
}

.cambridge-card img {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.cambridge-card h4 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 0.4rem;
}

.cambridge-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.cambridge-card.award {
  position: relative;
  border-color: rgba(251, 191, 36, 0.3);
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.05), transparent);
}

.cambridge-card.award:hover {
  border-color: rgba(251, 191, 36, 0.5);
}

.award-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.75rem;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #000;
}

/* Contact Section */
.contact-section {
  padding: 6rem 5%;
  background: var(--bg-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.contact-info p.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.contact-method {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.contact-icon {
  font-size: 1.25rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-glow);
  border: 1px solid var(--border-glow);
  border-radius: 12px;
}

.contact-method h4 {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 0.2rem;
}

.contact-method a,
.contact-method p {
  font-size: 1rem;
  color: var(--cyan-primary);
  text-decoration: none;
}

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

.contact-topics h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.contact-topics ul {
  list-style: none;
}

.contact-topics li {
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.contact-topics li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--cyan-primary);
  border-radius: 50%;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}

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

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

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-secondary);
  color: var(--text-white);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan-primary);
  box-shadow: 0 0 0 3px var(--cyan-subtle);
}

.form-group select {
  cursor: pointer;
}

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

/* Buttons */
.btn-primary {
  padding: 1.1rem 2.5rem;
  border-radius: 50px;
  border: none;
  background: var(--gradient-main);
  color: var(--bg-primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 4px 25px var(--cyan-glow);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px var(--cyan-glow);
}

.btn-primary.large {
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
}

.btn-outline {
  padding: 1.1rem 2.5rem;
  border-radius: 50px;
  border: 1px solid var(--border-glow);
  background: rgba(34, 211, 238, 0.05);
  color: var(--cyan-light);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-outline:hover {
  background: rgba(34, 211, 238, 0.15);
  border-color: var(--cyan-primary);
}

/* Stakeholder Tabs */
.stakeholder-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 3rem 0 2rem;
}

.stakeholder-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.stakeholder-tab:hover {
  border-color: var(--border-light);
  color: var(--text-light);
}

.stakeholder-tab.active {
  background: rgba(34, 211, 238, 0.1);
  border-color: rgba(34, 211, 238, 0.3);
  color: var(--cyan-primary);
}

.stakeholder-tab svg {
  width: 20px;
  height: 20px;
}

.stakeholder-content {
  margin-top: 2rem;
}

.stakeholder-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}

.stakeholder-panel.active {
  display: block;
}

.stakeholder-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.stakeholder-info h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.stakeholder-info > p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.stakeholder-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: var(--text-light);
}

.stakeholder-benefits svg {
  flex-shrink: 0;
  color: var(--cyan-primary);
}

.stakeholder-visual .visual-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.visual-stat {
  text-align: center;
  padding: 1rem;
  background: rgba(34, 211, 238, 0.05);
  border-radius: 12px;
}

.visual-stat .stat-number {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--cyan-primary);
  margin-bottom: 0.25rem;
}

.visual-stat .stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .stakeholder-tabs {
    flex-direction: column;
  }

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

/* CTA Section */
.cta {
  padding: 8rem 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  opacity: 0.15;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.cta p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
}

/* Footer */
footer {
  padding: 5rem 5% 2rem;
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-dim);
  max-width: 300px;
  line-height: 1.7;
  margin-top: 1.25rem;
}

.footer-links-grid {
  display: flex;
  gap: 5rem;
}

.footer-column h4 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-white);
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.6rem;
}

.footer-column a {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--cyan-primary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom span {
  font-size: 0.85rem;
  color: var(--text-dim);
}

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

.footer-legal a {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--cyan-primary);
}

.footer-badges {
  display: flex;
  gap: 2.5rem;
}

.footer-badges span {
  font-size: 0.8rem;
  color: var(--text-dim);
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 6px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

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

/* Responsive */
@media (max-width: 1024px) {
  .content-grid,
  .contact-grid,
  .hardware-featured-grid,
  .team-grid-large,
  .solutions-grid {
    grid-template-columns: 1fr;
  }

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

  .ai-row {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 15, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.25rem;
  }

  .nav-phone {
    border-left: none;
    padding-left: 0;
    margin-top: 1rem;
  }

  .nav-cta {
    margin-top: 1rem;
  }

  /* Mobile Dropdown - push content down instead of overlapping */
  .nav-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav-dropdown > a {
    justify-content: center;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    transition: max-height 0.3s ease, padding 0.3s ease, visibility 0s linear 0.3s;
  }

  .nav-dropdown.open .dropdown-menu {
    visibility: visible;
    max-height: 200px;
    padding: 0.5rem 0;
    transition: max-height 0.3s ease, padding 0.3s ease, visibility 0s linear 0s;
  }

  .nav-dropdown.open > a svg {
    transform: rotate(180deg);
  }

  .dropdown-menu a {
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    color: var(--text-muted);
  }

  .dropdown-menu a:hover {
    background: transparent;
    color: var(--cyan-primary);
  }

  .page-hero-content {
    padding: 0 5%;
  }

  .modules-grid,
  .ai-grid,
  .devices-grid,
  .team-grid-large {
    grid-template-columns: 1fr;
  }

  .ai-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer-top {
    flex-direction: column;
    gap: 3rem;
  }

  .footer-links-grid {
    flex-wrap: wrap;
    gap: 2rem;
  }
}

/* Why Section - One Partner, Complete Accountability */
.why-section {
  padding: 5rem 5%;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

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

.why-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-white);
}

.why-content h2 span {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.why-points {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-point {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.why-point svg {
  color: var(--cyan-primary);
  flex-shrink: 0;
}

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

.integration-diagram {
  width: 100%;
  max-width: 500px;
}

.integration-nodes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.integration-node {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.integration-node:hover {
  border-color: var(--border-glow);
  transform: translateY(-2px);
}

.integration-node .icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.75rem;
  background: rgba(34, 211, 238, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.integration-node .icon svg {
  color: var(--cyan-primary);
}

.integration-node span {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.integration-node small {
  display: block;
  font-size: 0.7rem;
  color: var(--text-dim);
}

/* CTA Section */
.cta-section {
  padding: 5rem 5%;
  text-align: center;
}

.cta-box {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem;
  background: var(--gradient-glow);
  border: 1px solid var(--border-glow);
  border-radius: 24px;
}

.cta-box h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  color: var(--text-white);
  margin-bottom: 1rem;
}

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

/* Why Section Mobile Responsive */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .why-points {
    align-items: center;
  }

  .why-visual {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .integration-diagram {
    width: 100%;
    max-width: 100%;
  }

  .integration-nodes {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }
}

@media (max-width: 768px) {
  .why-section {
    padding: 3rem 5%;
    overflow-x: hidden;
  }

  .why-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem;
  }

  .why-content {
    text-align: center;
    order: 1;
  }

  .why-content h2 {
    font-size: 1.75rem;
    white-space: normal;
    line-height: 1.3;
  }

  .why-content p {
    font-size: 0.95rem;
  }

  .why-point {
    font-size: 0.85rem;
    text-align: left;
  }

  .why-visual {
    width: 100%;
    padding: 0;
    order: 2;
  }

  .integration-diagram {
    width: 100%;
    max-width: 100%;
    padding: 1.5rem;
  }

  .integration-nodes {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem;
    width: 100%;
  }

  .integration-node {
    padding: 1rem 0.75rem;
  }

  .integration-node .icon {
    width: 36px;
    height: 36px;
  }

  .integration-node span {
    font-size: 0.75rem;
  }

  .integration-node small {
    font-size: 0.65rem;
  }

  .cta-box {
    padding: 2rem 1.5rem;
  }

  .cta-box h2 {
    font-size: 1.25rem;
  }

  .cta-box p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .cta-buttons {
    flex-direction: column;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-badges {
    flex-wrap: wrap;
    justify-content: center;
  }

  .integration-nodes {
    grid-template-columns: 1fr 1fr;
  }
}
