/* ========================================
   MarTech Mate - Static Website Styles
   Colors: Black, White, #38b6ff
   ======================================== */

:root {
  --primary: #38b6ff;
  --primary-dark: #2a9de0;
  --background: #000000;
  --foreground: #ffffff;
  --muted: #888888;
  --card: #0a0a0a;
  --card-hover: #111111;
  --border: #222222;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========================================
   AI Background Canvas
   ======================================== */
#ai-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ========================================
   Header Styles
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

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

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-trigger {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  width: 320px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.dropdown-item:hover {
  background: var(--card-hover);
}

.dropdown-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  background: rgba(56, 182, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.875rem;
}

.dropdown-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.dropdown-title {
  color: var(--foreground);
  font-weight: 500;
  font-size: 0.875rem;
}

.dropdown-subtitle {
  color: var(--muted);
  font-size: 0.75rem;
}

/* Header Actions */
.header-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .header-actions {
    display: flex;
  }
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--background);
}

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

.nav-mobile .nav-link {
  padding: 0.75rem 0;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--primary);
  color: #000000;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(56, 182, 255, 0.3);
}

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

.btn-outline:hover {
  background: rgba(56, 182, 255, 0.1);
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 3rem;
  z-index: 1;
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

/* Hero Logo */
.hero-logo {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.hero-logo img {
  position: relative;
  z-index: 1;
  width: 150px;
  height: auto;
}

@media (min-width: 768px) {
  .hero-logo img {
    width: 180px;
  }
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(56, 182, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.hero-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

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

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

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 3rem;
}

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

/* Explore Section */
.explore-section {
  margin-bottom: 3rem;
}

.explore-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

.explore-line {
  width: 96px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin: 0 auto;
  animation: glow-line 2s ease-in-out infinite;
}

@keyframes glow-line {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(56, 182, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(56, 182, 255, 0.8);
  }
}

/* Explore Cards */
.explore-cards {
  display: grid;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .explore-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.explore-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  text-align: left;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.5s ease;
}

.explore-card:hover {
  border-color: rgba(56, 182, 255, 0.5);
  transform: translateY(-5px);
}

.card-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(56, 182, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.5s ease;
}

.explore-card:hover .card-glow {
  background: radial-gradient(circle, rgba(56, 182, 255, 0.15) 0%, transparent 70%);
}

.card-glow-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(56, 182, 255, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.5s ease;
}

.explore-card:hover .card-glow-bottom {
  background: radial-gradient(circle, rgba(56, 182, 255, 0.1) 0%, transparent 70%);
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 0.75rem;
  background: rgba(56, 182, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.explore-card:hover .card-icon {
  background: rgba(56, 182, 255, 0.2);
  transform: scale(1.1);
}

.card-logo {
  position: relative;
  margin-bottom: 1.5rem;
}

.card-logo img {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.explore-card:hover .card-logo img {
  transform: scale(1.1);
}

.card-logo-glow {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(56, 182, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.explore-card:hover .card-logo-glow {
  background: radial-gradient(circle, rgba(56, 182, 255, 0.2) 0%, transparent 70%);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.card-highlight {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 1rem;
}

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

.card-action {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 500;
  transition: gap 0.3s ease;
}

.explore-card:hover .card-action {
  gap: 0.75rem;
}

.card-action svg {
  transition: transform 0.3s ease;
}

.explore-card:hover .card-action svg {
  transform: translateX(4px);
}

/* ========================================
   Footer Styles
   ======================================== */
.footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.footer-company {
  space-y: 1rem;
}

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

.footer-orky-logo {
  height: 40px;
  width: auto;
  opacity: 0.7;
  margin-top: 1rem;
  display: block;
}

.footer-description {
  color: var(--muted);
  margin: 1rem 0;
  max-width: 350px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

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

.footer-contact-item svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  background: var(--card-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.3s ease;
}

.social-link:hover {
  color: var(--primary);
  background: rgba(56, 182, 255, 0.1);
}

/* Footer Links */
.footer-links h4 {
  color: var(--foreground);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

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

/* Footer Bottom */
.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  color: var(--muted);
  font-size: 0.875rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.badge {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(56, 182, 255, 0.1);
  color: var(--primary);
  border: 1px solid rgba(56, 182, 255, 0.3);
}

/* ========================================
   Animations
   ======================================== */
.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
  opacity: 0;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.2s;
}
.delay-3 {
  animation-delay: 0.3s;
}
.delay-4 {
  animation-delay: 0.4s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

/* ========================================
   Page-Specific: Section Styles
   ======================================== */
.section {
  padding: 6rem 1.5rem;
  position: relative;
  z-index: 1;
}

.section-alt {
  background: rgba(56, 182, 255, 0.02);
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(56, 182, 255, 0.1);
  border: 1px solid rgba(56, 182, 255, 0.2);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

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

.section-description {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 800px;
  margin: 0 auto;
}

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

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

.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.3s ease;
}

.stat-card:hover {
  border-color: rgba(56, 182, 255, 0.5);
}

.stat-icon {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

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

@media (min-width: 768px) {
  .stat-value {
    font-size: 2.5rem;
  }
}

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

/* Feature Cards Grid */
.features-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.feature-card:hover {
  border-color: rgba(56, 182, 255, 0.5);
  transform: translateY(-3px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: rgba(56, 182, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary);
  transition: background 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: rgba(56, 182, 255, 0.2);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.feature-description {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

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

.feature-tag {
  padding: 0.25rem 0.75rem;
  background: var(--card-hover);
  border-radius: 0.375rem;
  font-size: 0.75rem;
  color: var(--muted);
}

/* Code Block */
.code-block {
  background: var(--card-hover);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-family: "Monaco", "Menlo", monospace;
  font-size: 0.8125rem;
  color: var(--primary);
  overflow-x: auto;
  margin-bottom: 1rem;
}

/* Integration Pills */
.integrations-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.integration-pill {
  padding: 0.75rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 9999px;
  color: var(--foreground);
  font-weight: 500;
  transition: all 0.3s ease;
}

.integration-pill:hover {
  border-color: rgba(56, 182, 255, 0.5);
}

.integration-pill-highlight {
  background: rgba(56, 182, 255, 0.1);
  border-color: rgba(56, 182, 255, 0.3);
  color: var(--primary);
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--foreground);
  font-family: inherit;
  font-size: 0.875rem;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
}

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

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

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

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

/* Contact Info Cards */
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--card-hover);
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.contact-info-card:hover {
  background: rgba(56, 182, 255, 0.1);
}

.contact-info-icon {
  width: 36px;
  height: 36px;
  border-radius: 0.5rem;
  background: rgba(56, 182, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.75rem;
  color: var(--muted);
}

.contact-info-value {
  font-size: 0.875rem;
  color: var(--foreground);
  font-weight: 500;
}

/* Page Hero (for inner pages) */
.page-hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .page-hero {
    padding-top: 10rem;
    padding-bottom: 6rem;
  }
}

.page-hero-logo {
  margin-bottom: 2rem;
}

.page-hero-logo img {
  max-width: 200px;
  height: auto;
}

.page-hero-icon {
  width: 96px;
  height: 96px;
  border-radius: 1rem;
  background: rgba(56, 182, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--primary);
}

.page-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.page-hero-title .highlight {
  color: var(--primary);
}

.page-hero-description {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .page-hero-description {
    font-size: 1.25rem;
  }
}

.page-hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.page-hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 9999px;
  color: var(--foreground);
  font-size: 0.875rem;
}

.page-hero-feature svg {
  color: var(--primary);
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Grid Background */
.grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(56, 182, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(56, 182, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Glow Effects */
.glow-top-right {
  position: absolute;
  top: 25%;
  right: 25%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(56, 182, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite;
}

.glow-bottom-left {
  position: absolute;
  bottom: 25%;
  left: 25%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(56, 182, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite;
  animation-delay: 2s;
}

/* Certification Grid */
.certifications-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .certifications-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.certification-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--card-hover);
  border-radius: 0.5rem;
}

.certification-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.certification-item span {
  color: var(--foreground);
}

/* Company Info Grid */
.company-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .company-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .company-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.company-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
}

.company-card-icon {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.company-card-label {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.company-card-value {
  font-weight: 500;
  color: var(--foreground);
}

/* Values Grid */
.values-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.value-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem;
}

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

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: rgba(56, 182, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.value-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
}

.value-description {
  color: var(--muted);
  line-height: 1.7;
}

/* Code Demo */
.code-demo-wrapper {
  position: relative;
}

.code-demo-glow {
  position: absolute;
  inset: -1rem;
  background: rgba(56, 182, 255, 0.1);
  border-radius: 1rem;
  filter: blur(20px);
  opacity: 0.5;
  animation: pulse-glow 3s ease-in-out infinite;
}

.code-demo {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
}

.code-demo-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--card-hover);
  border-bottom: 1px solid var(--border);
}

.code-demo-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.code-demo-dot.red {
  background: #ff5f57;
}
.code-demo-dot.yellow {
  background: #febc2e;
}
.code-demo-dot.green {
  background: #28c840;
}

.code-demo-title {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--muted);
}

.code-demo-content {
  padding: 1.5rem;
  font-family: "Monaco", "Menlo", monospace;
  font-size: 0.8125rem;
  line-height: 1.8;
  overflow-x: auto;
}

.code-comment {
  color: #6a9955;
}
.code-keyword {
  color: #569cd6;
}
.code-function {
  color: #dcdcaa;
}
.code-string {
  color: #ce9178;
}
.code-variable {
  color: #9cdcfe;
}
.code-property {
  color: var(--primary);
}
.code-number {
  color: #b5cea8;
}

/* Responsive utilities */
.text-center {
  text-align: center;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
