/* Obsentry.com - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

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

:root {
  --primary: #e63946;
  --primary-dark: #c1121f;
  --bg: #0a0a0b;
  --bg-light: #111113;
  --bg-card: #0d0d0e;
  --border: #1a1a1c;
  --text: #e8e8e8;
  --text-muted: #888;
  --text-dark: #555;
  --navy: #1d3557;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'IBM Plex Sans', -apple-system, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: var(--primary);
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Animations */
@keyframes gridPulse {

  0%,
  100% {
    opacity: 0.03;
  }

  50% {
    opacity: 0.06;
  }
}

@keyframes scanLine {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100vh);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glow {

  0%,
  100% {
    filter: drop-shadow(0 0 8px rgba(230, 57, 70, 0.4));
  }

  50% {
    filter: drop-shadow(0 0 20px rgba(230, 57, 70, 0.7));
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Background Effects */
.grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(230, 57, 70, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230, 57, 70, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridPulse 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.scan-line {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.5), transparent);
  animation: scanLine 8s linear infinite;
  pointer-events: none;
  z-index: 100;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 16px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
}

.nav.scrolled {
  background: rgba(10, 10, 11, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 44px;
  width: auto;
  animation: glow 3s ease-in-out infinite;
  transition: transform 0.3s;
}

.nav-logo img:hover {
  transform: scale(1.05);
}

.nav-logo span {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 3px;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-link {
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}

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

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 11, 0.98);
  z-index: 1000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  backdrop-filter: blur(20px);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-size: 24px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.mobile-menu a:hover {
  color: var(--primary);
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border: none;
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'IBM Plex Sans', sans-serif;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(230, 57, 70, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid #333;
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'IBM Plex Sans', sans-serif;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Section Styles */
.section {
  position: relative;
  z-index: 1;
}

.section-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--primary);
  letter-spacing: 3px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
}

.accent-text {
  background: linear-gradient(135deg, #e63946 0%, #f4a261 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Cards */
.card {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.card:hover {
  border-color: #2a2a2c;
  transform: translateY(-4px);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

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

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 48px 80px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.hero-glow {
  position: absolute;
  top: 30%;
  right: 5%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.08) 0%, rgba(29, 53, 87, 0.05) 50%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  animation: fadeUp 0.8s ease-out;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(48px, 9vw, 108px);
  font-weight: 300;
  line-height: 1.0;
  margin-bottom: 32px;
  max-width: 1000px;
}

.hero h1 span {
  font-weight: 500;
}

.hero p {
  font-size: 20px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 48px;
  left: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dark);
}

.scroll-indicator .line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--primary), transparent);
}

.scroll-indicator span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

/* Stats Bar */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.stat-item:last-child {
  border-right: none;
}

.stat-value {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Services Section */
.services {
  padding: 120px 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.service-tabs {
  display: flex;
  flex-direction: column;
}

.service-tab {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  border-left: 2px solid transparent;
}

.service-tab:hover {
  background: rgba(230, 57, 70, 0.02);
}

.service-tab.active {
  border-left-color: var(--primary);
  padding-left: 20px;
  background: rgba(230, 57, 70, 0.02);
}

.service-tab .number {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.service-tab .title {
  font-size: 18px;
  font-weight: 500;
  color: #666;
  transition: color 0.3s;
}

.service-tab.active .title {
  color: var(--text);
}

.service-detail {
  padding: 48px;
}

.service-detail h3 {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 24px;
}

.service-detail p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 40px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-feature .dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
}

.service-feature span {
  font-size: 14px;
  color: #aaa;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}

.service-price-label {
  font-size: 12px;
  color: var(--text-dark);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-price {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 28px;
  color: var(--primary);
}

/* Products Section */
.products {
  padding: 120px 48px;
  background: linear-gradient(180deg, var(--bg) 0%, #0e0e0f 50%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.products-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.products-header {
  text-align: center;
  margin-bottom: 64px;
}

.product-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.product-tab {
  padding: 16px 24px;
  background: transparent;
  border: 1px solid var(--border);
  color: #666;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  letter-spacing: 1px;
}

.product-tab:hover {
  border-color: #333;
  color: var(--text-muted);
}

.product-tab.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-color: var(--primary);
  color: #fff;
}

.product-detail {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px;
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.product-header h3 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-tagline {
  font-size: 14px;
  color: var(--primary);
  letter-spacing: 1px;
}

.product-status {
  padding: 8px 16px;
  font-size: 11px;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 1px;
}

.product-status.active {
  background: rgba(230, 57, 70, 0.1);
  border: 1px solid var(--primary);
  color: var(--primary);
}

.product-status.enterprise {
  background: rgba(29, 53, 87, 0.3);
  border: 1px solid var(--navy);
  color: #a8dadc;
}

.product-detail>p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.product-features {
  margin-bottom: 32px;
}

.product-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.product-feature-item .number {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: #444;
}

.product-feature-item span {
  font-size: 14px;
  color: #aaa;
}

/* Approach Section */
.approach {
  padding: 120px 48px;
}

.approach-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.approach-header {
  text-align: center;
  margin-bottom: 80px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.approach-card {
  padding: 40px;
  cursor: default;
}

.approach-icon {
  font-size: 36px;
  margin-bottom: 24px;
  color: var(--primary);
  animation: float 4s ease-in-out infinite;
}

.approach-card:nth-child(2) .approach-icon {
  animation-delay: 0.5s;
}

.approach-card:nth-child(3) .approach-icon {
  animation-delay: 1s;
}

.approach-card:nth-child(4) .approach-icon {
  animation-delay: 1.5s;
}

.approach-card h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
}

.approach-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Team Section */
.team {
  padding: 120px 48px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-card) 100%);
  border-top: 1px solid var(--border);
}

.team-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.team-header {
  text-align: center;
  margin-bottom: 80px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.team-card {
  padding: 40px;
  transition: all 0.4s;
}

.team-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
}

.team-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--border) 0%, #252527 100%);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.team-avatar span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
}

.team-card h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px;
}

.team-role {
  font-size: 13px;
  color: var(--primary);
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.team-card>p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.team-skill {
  background: var(--border);
  padding: 6px 12px;
  font-size: 11px;
  color: var(--text-muted);
  font-family: 'IBM Plex Mono', monospace;
}

.team-contact {
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  transition: color 0.3s;
}

.team-contact:hover {
  color: var(--primary);
}

/* CTA Section */
.cta {
  padding: 140px 48px;
  text-align: center;
  position: relative;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.cta h2 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.2;
}

.cta>.cta-inner>p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 48px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}

.contact-card {
  padding: 24px;
  text-align: center;
}

.contact-card .label {
  font-size: 12px;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.contact-card a {
  color: var(--primary);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
}

.contact-card span {
  color: var(--text);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  height: 32px;
  width: auto;
}

.footer-logo span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  color: var(--text-dark);
  letter-spacing: 2px;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

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

.footer-copyright {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: #444;
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 16px 20px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  transition: all 0.3s;
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-dark);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-select option {
  background: var(--bg-light);
  color: var(--text);
}

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

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: #aaa;
  transition: color 0.2s;
}

.checkbox-label:hover {
  color: var(--text);
}

.checkbox-label input {
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
  cursor: pointer;
}

/* Capabilities Page */
.capabilities-hero {
  padding: 180px 48px 120px;
  max-width: 1400px;
  margin: 0 auto;
}

.capabilities-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 32px;
}

.capabilities-hero p {
  font-size: 20px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 800px;
}

.capability-section {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
}

.capability-section:nth-child(even) {
  background: linear-gradient(180deg, #0e0e0f 0%, var(--bg) 100%);
}

.capability-section-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.capability-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.capability-header .icon {
  font-size: 48px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.capability-card {
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  cursor: default;
}

.capability-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
}

.capability-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--primary), var(--navy));
  transition: height 0.4s;
}

.capability-card:hover::before {
  height: 100%;
}

.capability-card h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
}

.capability-card>p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.capability-deliverables {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.capability-deliverables .label {
  font-size: 11px;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.capability-deliverables .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.capability-deliverables .tag {
  background: var(--border);
  padding: 6px 12px;
  font-size: 12px;
  color: #aaa;
  font-family: 'IBM Plex Mono', monospace;
}

/* Certifications & Tools */
.certs-tools {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
}

.certs-tools-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 64px;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.cert-item {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.cert-icon {
  width: 48px;
  height: 48px;
  background: rgba(230, 57, 70, 0.1);
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-family: 'IBM Plex Mono', monospace;
  color: var(--primary);
  font-weight: 600;
}

.cert-info .name {
  font-weight: 500;
  margin-bottom: 4px;
}

.cert-info .org {
  font-size: 12px;
  color: #666;
}

.tools-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tool-tag {
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 12px 20px;
  font-size: 13px;
  color: #aaa;
  font-family: 'IBM Plex Mono', monospace;
  transition: all 0.3s;
}

.tool-tag:hover {
  border-color: var(--primary);
  color: var(--text);
}

/* Assessment Page */
.assessment-hero {
  padding: 180px 48px 60px;
  text-align: center;
}

.assessment-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
}

.assessment-hero p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.assessment-form-section {
  padding: 0 48px 120px;
}

.assessment-form {
  max-width: 900px;
  margin: 0 auto;
}

.form-card {
  padding: 48px;
}

.form-section {
  margin-bottom: 48px;
}

.form-section:not(:first-child) {
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.form-section h2 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-section>p {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}

.form-submit {
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.form-submit button {
  width: 100%;
  padding: 20px;
  font-size: 15px;
}

.form-submit p {
  font-size: 13px;
  color: var(--text-dark);
  text-align: center;
  margin-top: 16px;
}

.contact-alt {
  padding: 0 48px 100px;
}

.contact-alt-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-alt-card h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}

.contact-alt-card p {
  font-size: 14px;
  color: var(--text-muted);
}

.contact-alt-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Success Page */
.success-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  text-align: center;
}

.success-content {
  max-width: 600px;
}

.success-icon {
  font-size: 72px;
  margin-bottom: 24px;
  color: var(--primary);
}

.success-content h1 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 24px;
}

.success-content p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

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

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

@media (max-width: 768px) {
  .nav {
    padding: 16px 24px;
  }

  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero {
    padding: 120px 24px 60px;
  }

  .section {
    padding: 80px 24px !important;
  }

  .services,
  .products,
  .approach,
  .team,
  .cta {
    padding: 80px 24px;
  }

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

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

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

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

  .certs-tools-inner {
    grid-template-columns: 1fr;
  }

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

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

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

/* Hide elements */
.hidden {
  display: none !important;
}

/* ============================================
   NEW COMPONENTS - Dropdown Navigation
   ============================================ */

.nav-dropdown {
  position: relative;
}

.nav-dropdown .nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-dropdown .nav-link::after {
  content: '';
  border: solid currentColor;
  border-width: 0 1.5px 1.5px 0;
  padding: 2.5px;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-link::after {
  transform: rotate(-135deg);
  margin-top: 2px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(13, 13, 14, 0.98);
  border: 1px solid var(--border);
  min-width: 280px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  backdrop-filter: blur(20px);
  z-index: 100;
  margin-top: 12px;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

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

.dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  font-size: 14px;
  color: var(--text-muted);
  transition: all 0.2s;
}

.dropdown-item:hover {
  background: rgba(230, 57, 70, 0.05);
  color: var(--text);
  padding-left: 28px;
}

.dropdown-item .badge-new {
  margin-left: 8px;
}

/* ============================================
   NEW Badge
   ============================================ */

.badge-new {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, #ff6b6b 100%);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 8px;
  text-transform: uppercase;
  font-family: 'IBM Plex Mono', monospace;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 0 5px rgba(230, 57, 70, 0.4);
  }

  50% {
    box-shadow: 0 0 15px rgba(230, 57, 70, 0.8);
  }
}

.service-tab .badge-new {
  margin-left: 8px;
  font-size: 8px;
  padding: 2px 6px;
}

/* ============================================
   Partner Styles
   ============================================ */

.partners-section {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
}

.partners-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.partners-header {
  text-align: center;
  margin-bottom: 64px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.partner-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.partner-card:hover {
  border-color: var(--primary);
}

.partner-logo {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--border) 0%, #252527 100%);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  font-family: 'IBM Plex Mono', monospace;
}

.partner-type {
  font-size: 11px;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.partner-card h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px;
}

.partner-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  flex-grow: 1;
}

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

/* Partner Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.benefit-card {
  padding: 32px;
}

.benefit-icon {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--primary);
}

.benefit-card h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Partnership Models */
.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.model-card {
  padding: 40px;
  text-align: center;
}

.model-card h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
}

.model-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   Blog Styles
   ============================================ */

.blog-hero {
  padding: 180px 48px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.blog-featured {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

.blog-featured-image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  position: relative;
  overflow: hidden;
}

.blog-featured-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(230, 57, 70, 0.1) 100%);
}

.blog-featured-content .blog-tag {
  display: inline-block;
  background: rgba(230, 57, 70, 0.1);
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 11px;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 1px;
  padding: 6px 12px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.blog-featured-content h2 {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.3;
}

.blog-featured-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-dark);
  font-size: 14px;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-author-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--border) 0%, #252527 100%);
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px 120px;
}

.blog-card {
  padding: 0;
  overflow: hidden;
}

.blog-card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-card) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  border-bottom: 1px solid var(--border);
}

.blog-card-content {
  padding: 28px;
}

.blog-card .blog-tag {
  display: inline-block;
  background: var(--border);
  font-size: 10px;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 1px;
  padding: 4px 10px;
  margin-bottom: 16px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.blog-card h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-card .blog-meta {
  font-size: 12px;
}

/* Newsletter Form */
.newsletter-section {
  padding: 80px 48px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-card) 100%);
  border-top: 1px solid var(--border);
  text-align: center;
}

.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.newsletter-form input {
  flex: 1;
}

/* ============================================
   Service Landing Page Styles
   ============================================ */

.service-hero {
  padding: 180px 48px 100px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.service-badge .badge-new {
  font-size: 11px;
  padding: 6px 14px;
}

.service-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 900px;
}

.service-hero>p {
  font-size: 20px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: 48px;
}

.service-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.service-stat {
  text-align: left;
}

.service-stat-value {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 36px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.service-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Capabilities Grid for Service Pages */
.service-capabilities {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
}

.service-capabilities-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.capabilities-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.capability-item {
  padding: 32px;
}

.capability-item .icon {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--primary);
}

.capability-item h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
}

.capability-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   Pricing Tiers
   ============================================ */

.pricing-section {
  padding: 100px 48px;
  background: linear-gradient(180deg, var(--bg) 0%, #0e0e0f 50%, var(--bg) 100%);
  border-top: 1px solid var(--border);
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 64px;
}

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

.pricing-card {
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.popular {
  border-color: var(--primary);
  transform: scale(1.02);
}

.pricing-card.popular::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #ff6b6b);
}

.pricing-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px 16px;
  text-transform: uppercase;
  font-family: 'IBM Plex Mono', monospace;
}

.pricing-tier {
  font-size: 12px;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.pricing-card h3 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 8px;
}

.pricing-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-amount {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.pricing-price {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 48px;
  font-weight: 600;
  color: var(--primary);
}

.pricing-period {
  font-size: 14px;
  color: var(--text-dark);
}

.pricing-features {
  flex-grow: 1;
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-feature .check {
  color: var(--primary);
  font-weight: 600;
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
  width: 100%;
  text-align: center;
}

/* Bundle Offer */
.bundle-offer {
  margin-top: 48px;
  padding: 32px;
  background: rgba(230, 57, 70, 0.05);
  border: 1px solid var(--primary);
  text-align: center;
}

.bundle-offer h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}

.bundle-offer p {
  font-size: 14px;
  color: var(--text-muted);
}

.bundle-discount {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 24px;
  color: var(--primary);
  font-weight: 600;
}

/* ============================================
   FAQ Section
   ============================================ */

.faq-section {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
}

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 64px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border);
  background: var(--bg-light);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: #2a2a2c;
}

.faq-question {
  width: 100%;
  padding: 24px 32px;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  color: var(--primary);
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 32px 24px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================
   Responsive Updates for New Components
   ============================================ */

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

  .pricing-card.popular {
    transform: none;
  }
}

@media (max-width: 768px) {
  .dropdown-menu {
    position: fixed;
    top: auto;
    left: 0;
    right: 0;
    transform: none;
    margin-top: 0;
  }

  .service-hero {
    padding: 140px 24px 60px;
  }

  .service-stats {
    gap: 24px;
  }

  .pricing-section,
  .faq-section,
  .service-capabilities,
  .partners-section {
    padding: 80px 24px;
  }

  .partners-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .faq-question {
    padding: 20px 24px;
  }

  .faq-answer-content {
    padding: 0 24px 20px;
  }
}