@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors */
  --bg-primary: #060814;
  --bg-secondary: #0b0f19;
  --bg-tertiary: #131926;
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  /* Brand Accents */
  --accent-cyan: #00f2fe;
  --accent-purple: #7f00ff;
  --accent-blue: #0078d4;
  --accent-emerald: #05d5a1;
  --accent-glow: rgba(0, 242, 254, 0.15);
  
  /* Gradient Combinations */
  --grad-cyan-purple: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
  --grad-blue-cyan: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
  --grad-dark-card: linear-gradient(145deg, rgba(15, 23, 42, 0.6) 0%, rgba(30, 41, 59, 0.4) 100%);
  
  /* Borders & Shadows */
  --border-glass: 1px solid rgba(255, 255, 255, 0.08);
  --border-glass-hover: 1px solid rgba(0, 242, 254, 0.25);
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 25px rgba(0, 242, 254, 0.2);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-color: var(--bg-primary);
}

/* Background Glow Effects */
.bg-glow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.12;
  mix-blend-mode: screen;
}

.bg-glow-1 {
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: var(--accent-cyan);
}

.bg-glow-2 {
  top: 30%;
  left: -20%;
  width: 700px;
  height: 700px;
  background: var(--accent-purple);
}

.bg-glow-3 {
  bottom: 10%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: var(--accent-blue);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.gradient-text {
  background: var(--grad-cyan-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p {
  color: var(--text-secondary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Sticky Header & Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(6, 8, 20, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: var(--border-glass);
  transition: var(--transition-normal);
}

.header.scrolled {
  padding: 0.5rem 0;
  background: rgba(6, 8, 20, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

/* Brand Logo (from image) */
.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  height: 80px;
  width: auto;
  border-radius: 6px;
  transition: transform var(--transition-fast);
}

.footer-logo {
  height: 75px;
  width: auto;
  border-radius: 6px;
  transition: transform var(--transition-fast);
}

.footer-logo:hover {
  transform: scale(1.02);
}

.brand-logo:hover {
  transform: scale(1.02);
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-cyan-purple);
  transition: width var(--transition-fast);
}

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

/* Navigation CTA */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Button Component */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: 'Outfit', sans-serif;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--grad-cyan-purple);
  color: #000;
  box-shadow: 0 4px 20px rgba(0, 242, 254, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 242, 254, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: var(--border-glass);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-accent-outline {
  background: transparent;
  color: var(--accent-cyan);
  border: 1px solid var(--accent-cyan);
}

.btn-accent-outline:hover {
  background: rgba(0, 242, 254, 0.08);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  font-size: 1.5rem;
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--grad-dark-card);
  border: var(--border-glass);
  border-radius: 16px;
  padding: 2.5rem;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-glass);
  transition: all var(--transition-normal);
}

.glass-card:hover {
  border-color: rgba(0, 242, 254, 0.25);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.6), var(--accent-glow);
  transform: translateY(-4px);
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-tag {
  font-family: 'Outfit', sans-serif;
  color: var(--accent-cyan);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.section-desc {
  font-size: 1.1rem;
}

/* Layout Sections */
.section-padding {
  padding: 7rem 0;
}

/* ==================== HOME PAGE SPECIFIC ==================== */
/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-cyan);
  margin-bottom: 1rem;
  display: inline-block;
  font-weight: 600;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 550px;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

/* Stats/Trust */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: var(--border-glass);
  padding-top: 2rem;
}

.stat-item h4 {
  font-size: 2rem;
  background: var(--grad-cyan-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.25rem;
}

.stat-item p {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

/* Hero Right: Tech Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-sphere-wrapper {
  position: relative;
  width: 400px;
  height: 400px;
}

.hero-sphere-bg {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-sphere 8s infinite alternate ease-in-out;
}

.cloud-visual-grid {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 1rem;
}

.platform-badge-main {
  background: var(--grad-dark-card);
  border: var(--border-glass);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  box-shadow: var(--shadow-glass);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.platform-badge-main:hover {
  border-color: var(--accent-cyan);
  transform: scale(1.05);
}

.platform-badge-main img, .platform-badge-main svg {
  height: 35px;
  width: auto;
}

.platform-badge-main span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

/* Position cloud emblems dynamically in a circle-like grid */
.badge-aws { grid-area: 1 / 2 / 2 / 3; border-color: rgba(255, 153, 0, 0.3); }
.badge-azure { grid-area: 2 / 1 / 3 / 2; border-color: rgba(0, 120, 212, 0.3); }
.badge-center { grid-area: 2 / 2 / 3 / 3; border-color: var(--accent-cyan); box-shadow: var(--shadow-glow); }
.badge-gcp { grid-area: 2 / 3 / 3 / 4; border-color: rgba(66, 133, 244, 0.3); }
.badge-oci { grid-area: 3 / 2 / 4 / 3; border-color: rgba(243, 0, 0, 0.3); }

/* Platform Info Grid on homepage */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.platform-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--grad-dark-card);
  border: var(--border-glass);
  border-radius: 16px;
  transition: all var(--transition-normal);
}

.platform-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glass);
}

.platform-logo-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: var(--border-glass);
}

.platform-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.platform-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Specific Platform Theme Colors */
.platform-card.aws:hover { border-color: #ff9900; box-shadow: 0 8px 30px rgba(255, 153, 0, 0.15); }
.platform-card.azure:hover { border-color: #0078d4; box-shadow: 0 8px 30px rgba(0, 120, 212, 0.15); }
.platform-card.gcp:hover { border-color: #4285f4; box-shadow: 0 8px 30px rgba(66, 133, 244, 0.15); }
.platform-card.oci:hover { border-color: #f30000; box-shadow: 0 8px 30px rgba(243, 0, 0, 0.15); }
.platform-card.o365:hover { border-color: #ea3e23; box-shadow: 0 8px 30px rgba(234, 62, 35, 0.15); }

/* Manifesto Teaser Block */
.manifesto-box {
  background: radial-gradient(circle at 0% 0%, rgba(127, 0, 255, 0.15) 0%, rgba(6, 8, 20, 0) 60%), var(--grad-dark-card);
  border: var(--border-glass);
  border-radius: 20px;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

.manifesto-text h3 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.manifesto-quote {
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-primary);
  border-left: 3px solid var(--accent-cyan);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}

/* ==================== SERVICES PAGE ==================== */
.services-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem auto;
}

.services-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 6rem;
}

.service-card-full {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card-icon {
  width: 55px;
  height: 55px;
  border-radius: 10px;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent-cyan);
}

.service-card-full h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card-full ul {
  list-style: none;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: var(--border-glass);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-card-full ul li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card-full ul li::before {
  content: '✓';
  color: var(--accent-cyan);
  font-weight: bold;
}

/* Services Detail Rows (Platform specific capability showcase) */
.service-detail-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 8rem;
}

.service-detail-row.reverse {
  grid-template-columns: 1.2fr 1fr;
}

.service-detail-row.reverse .service-detail-info {
  grid-column: 2;
}

.service-detail-row.reverse .service-detail-visual {
  grid-column: 1;
  grid-row: 1;
}

.service-detail-info h2 {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}

.service-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.tag {
  background: rgba(255, 255, 255, 0.05);
  border: var(--border-glass);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

.tag.aws { border-color: rgba(255, 153, 0, 0.3); color: #ff9900; }
.tag.azure { border-color: rgba(0, 120, 212, 0.3); color: #0078d4; }
.tag.gcp { border-color: rgba(66, 133, 244, 0.3); color: #4285f4; }
.tag.oci { border-color: rgba(243, 0, 0, 0.3); color: #f30000; }
.tag.o365 { border-color: rgba(234, 62, 35, 0.3); color: #ea3e23; }

.service-detail-visual {
  height: 350px;
  border-radius: 20px;
  background: var(--grad-dark-card);
  border: var(--border-glass);
  box-shadow: var(--shadow-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-graphic-cube {
  width: 140px;
  height: 140px;
  position: relative;
  transform-style: preserve-3d;
  animation: rotateCube 15s infinite linear;
}

/* Graphic styles */
.service-icon-cloud-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.service-icon-cloud-group svg {
  animation: float-slow 4s infinite ease-in-out;
}

/* ==================== ABOUT US PAGE ==================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 7rem;
}

.about-story h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-story p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.about-philosophy-card {
  padding: 3rem;
  background: radial-gradient(circle at 100% 100%, rgba(0, 242, 254, 0.1) 0%, rgba(6, 8, 20, 0) 70%), var(--grad-dark-card);
}

.about-philosophy-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--accent-cyan);
}

.about-philosophy-card p {
  font-size: 1.05rem;
}

.philosophy-bullets {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.philosophy-item h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.philosophy-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 8rem;
}

.value-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.value-number {
  color: var(--accent-cyan);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  opacity: 0.5;
}

/* Styled Manifesto Section */
.manifesto-section {
  text-align: center;
  background: var(--bg-secondary);
  border-top: var(--border-glass);
  border-bottom: var(--border-glass);
  padding: 8rem 0;
  position: relative;
}

.manifesto-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.manifesto-lead {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  color: var(--accent-cyan);
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.manifesto-beliefs {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin: 3rem 0;
}

.manifesto-belief-item {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
  opacity: 0.85;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.manifesto-belief-item:hover {
  opacity: 1;
  transform: scale(1.02);
  background: var(--grad-cyan-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.manifesto-footer {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-top: 3rem;
  font-weight: 500;
}

/* ==================== VISION & BELIEFS ==================== */
.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 6rem;
}

.vision-card {
  height: 100%;
}

.vision-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.vision-card h3 {
  font-size: 1.65rem;
  margin-bottom: 1rem;
}

.beliefs-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 6rem;
}

.belief-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.belief-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(127, 0, 255, 0.08);
  border: 1px solid rgba(127, 0, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-purple);
  flex-shrink: 0;
}

.belief-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.promise-box {
  background: linear-gradient(135deg, rgba(6, 8, 20, 0.8) 0%, rgba(11, 15, 25, 0.9) 100%), var(--grad-cyan-purple);
  border: 1px solid rgba(0, 242, 254, 0.2);
  border-radius: 20px;
  padding: 4rem;
  text-align: center;
  box-shadow: var(--shadow-glow);
  max-width: 900px;
  margin: 0 auto;
}

.promise-box h2 {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.promise-box p {
  font-size: 1.25rem;
  color: var(--text-primary);
  max-width: 700px;
  margin: 0 auto;
}

/* ==================== PRODUCTS PAGE ==================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.product-status-tag {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.product-status-tag.active {
  background: rgba(5, 213, 161, 0.1);
  color: var(--accent-emerald);
  border: 1px solid rgba(5, 213, 161, 0.2);
}

.product-status-tag.upcoming {
  background: rgba(0, 242, 254, 0.1);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 242, 254, 0.2);
}

.product-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.product-tagline {
  font-size: 0.9rem;
  color: var(--accent-cyan);
  margin-bottom: 1.25rem;
}

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 1.5rem 0;
  padding-top: 1.5rem;
  border-top: var(--border-glass);
}

.product-features li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-features li::before {
  content: '⚡';
  color: var(--accent-purple);
  font-size: 0.8rem;
}

/* ==================== CAREERS PAGE ==================== */
.careers-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: flex-start;
  margin-bottom: 6rem;
}

.careers-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.careers-info p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

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

.perk-item {
  background: rgba(255, 255, 255, 0.02);
  border: var(--border-glass);
  border-radius: 12px;
  padding: 1.5rem;
}

.perk-item h4 {
  font-size: 1rem;
  color: var(--accent-cyan);
  margin-bottom: 0.5rem;
}

.perk-item p {
  font-size: 0.85rem;
}

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.job-meta {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.job-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Application Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 8, 20, 0.8);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--bg-secondary);
  border: var(--border-glass);
  border-radius: 16px;
  width: 100%;
  max-width: 550px;
  padding: 3rem;
  position: relative;
  box-shadow: var(--shadow-glass);
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-close:hover {
  color: var(--text-primary);
}

.modal h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

/* Forms */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-tertiary);
  border: var(--border-glass);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: inherit;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(0, 242, 254, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

/* ==================== CONTACT PAGE ==================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: flex-start;
  margin-bottom: 6rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1.5rem;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.office-locations {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: var(--border-glass);
}

.office-locations h3 {
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
}

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

.office-card {
  background: rgba(255, 255, 255, 0.02);
  border: var(--border-glass);
  border-radius: 12px;
  padding: 1.5rem;
}

.office-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--accent-cyan);
}

.office-card p {
  font-size: 0.85rem;
}

.contact-form-wrapper {
  position: relative;
}

.form-success-message {
  display: none;
  text-align: center;
  padding: 4rem 2rem;
}

.form-success-message.active {
  display: block;
}

.form-success-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(5, 213, 161, 0.1);
  border: 1px solid var(--accent-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-emerald);
  font-size: 2rem;
  margin: 0 auto 1.5rem auto;
}

/* ==================== FOOTER ==================== */
.footer {
  background: #04060c;
  border-top: var(--border-glass);
  padding: 5rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  margin: 1.25rem 0;
  font-size: 0.95rem;
}

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

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

.social-link:hover {
  background: var(--accent-cyan);
  color: #000;
  transform: translateY(-2px);
}

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

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

.footer-links ul a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-links ul a:hover {
  color: var(--accent-cyan);
  padding-left: 4px;
}

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

.footer-bottom p {
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-links a:hover {
  color: var(--text-primary);
}

/* ==================== ANIMATIONS ==================== */
@keyframes pulse-sphere {
  0% { transform: scale(1); opacity: 0.1; }
  100% { transform: scale(1.1); opacity: 0.2; }
}

@keyframes rotateCube {
  0% { transform: rotateX(0deg) rotateY(0deg); }
  100% { transform: rotateX(360deg) rotateY(360deg); }
}

@keyframes float-slow {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* Scroll Animation classes (revealed via JS Intersection Observer) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Delay modifiers */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* ==================== RESPONSIVE LAYOUTS ==================== */
@media (max-width: 1024px) {
  .hero-title { font-size: 3.25rem; }
  .platforms-grid { grid-template-columns: repeat(3, 1fr); }
  .services-list-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 1.5rem; }
  .mobile-toggle { display: block; }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg-primary);
    flex-direction: column;
    padding: 3rem 1.5rem;
    gap: 1.5rem;
    transition: var(--transition-normal);
    border-top: var(--border-glass);
    z-index: 99;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-actions {
    display: none; /* Hide actions on mobile inside menu */
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-desc { margin: 0 auto 2.5rem auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { max-width: 500px; margin: 0 auto; }
  
  .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .manifesto-box { grid-template-columns: 1fr; padding: 2.5rem; }
  
  .services-list-grid { grid-template-columns: 1fr; }
  .service-detail-row, .service-detail-row.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .service-detail-row.reverse .service-detail-info {
    grid-column: 1;
  }
  
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .values-grid { grid-template-columns: 1fr; }
  
  .vision-grid { grid-template-columns: 1fr; }
  .beliefs-list-grid { grid-template-columns: 1fr; }
  
  .products-grid { grid-template-columns: 1fr; }
  .careers-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .office-grid { grid-template-columns: 1fr; }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .platforms-grid { grid-template-columns: 1fr; }
  .manifesto-belief-item { font-size: 1.4rem; }
  .footer-grid { grid-template-columns: 1fr; }
}
