@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  /* Colors - Base */
  --white: #FFFFFF;
  --slate-50: #F7F8FA;
  --slate-100: #EBEDF2;

  /* Colors - Navy */
  --navy-dark: #050D1A;
  --navy-base: #0A1628;
  --navy-light: #12233D;

  /* Colors - Amber Yellow */
  --gold-dark: #C47A0A;
  --gold-base: #E8961F;
  --gold-light: #F5C96B;

  /* Typography */
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Space Grotesk', system-ui, sans-serif;
  --font-code: 'JetBrains Mono', monospace;

  /* Borders */
  --border-light: 1px solid var(--slate-100);
  --border-accent: 1px solid var(--gold-base);

  /* Easing */
  --ease-premium: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --container-max: 1200px;
  --radius-sm: 0;
  --radius-md: 0;
  --radius-lg: 0;

  /* Spacing */
  --section-py: 100px;
  --section-gap: 48px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background-color: var(--navy-dark);
}

::-webkit-scrollbar-thumb {
  background-color: var(--gold-base);
  border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--gold-light);
}

/* Custom Text Selection (Block Text) */
::selection {
  background-color: var(--navy-dark);
  color: var(--gold-base);
}

::-moz-selection {
  background-color: var(--navy-dark);
  color: var(--gold-base);
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--navy-dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s var(--ease-smooth);
}

ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.text-gold { color: var(--gold-base); }

.text-gold-gradient {
  color: var(--gold-base);
  display: inline;
}

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

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease-smooth);
  cursor: pointer;
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--navy-dark);
  color: var(--white);
  border: 1px solid var(--navy-dark);
}

.btn-primary:hover {
  background-color: var(--navy-base);
  transform: translateY(-2px);
  border-color: var(--gold-base);
}

.btn-secondary {
  background-color: transparent;
  color: var(--navy-dark);
  border: 1px solid var(--gold-base);
}

.btn-secondary:hover {
  background-color: var(--gold-base);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-block { width: 100%; }

.btn-icon {
  transition: transform 0.3s var(--ease-smooth);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* ==========================================================================
   Animations & Keyframes
   ========================================================================== */
@keyframes typing-cursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

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

@keyframes particleFloat {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.12; }
  25% { transform: translateY(-30px) translateX(15px); opacity: 0.3; }
  50% { transform: translateY(-15px) translateX(-10px); opacity: 0.08; }
  75% { transform: translateY(-45px) translateX(8px); opacity: 0.25; }
}

@keyframes ripple {
  to { width: 300px; height: 300px; opacity: 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-premium), transform 0.7s var(--ease-premium);
}

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

/* ==========================================================================
   Section Headers (consistent spacing)
   ========================================================================== */
.section-header {
  margin-bottom: var(--section-gap);
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-code);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-base);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 12px;
  position: relative;
}

.section-tag::before,
.section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 20px;
  height: 1px;
  background-color: var(--gold-base);
}

.section-tag::before { right: 100%; margin-right: 10px; }
.section-tag::after { left: 100%; margin-left: 10px; }

.section-title {
  font-size: 2.5rem;
  color: var(--navy-dark);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--navy-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 0;
  z-index: 1000;
  transition: all 0.4s var(--ease-smooth);
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-100);
}

.navbar.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-100);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-symbol {
  width: 42px;
  height: 42px;
  background-color: var(--navy-dark);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(232, 150, 31, 0.3);
  padding: 4px;
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1;
}

.brand-sub {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--navy-dark);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold-base);
  transition: width 0.3s var(--ease-smooth);
}

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

.nav-link.active {
  font-weight: 600;
}

.nav-btn {
  background-color: var(--navy-dark);
  color: var(--gold-base) !important;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(232, 150, 31, 0.3);
  font-weight: 600;
}

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

.nav-btn:hover {
  background-color: var(--navy-base);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--navy-dark);
  z-index: 1001;
}

/* ==========================================================================
   Hero Section
   BG Motif: Subtle dot grid pattern
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 var(--section-py);
  background-color: var(--white);
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  border-radius: 0;
  background-color: var(--gold-base);
  pointer-events: none;
  animation: particleFloat linear infinite;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, var(--slate-100) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.6;
  z-index: 0;
}

.inline-lotus-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  vertical-align: middle;
}

.value-lotus-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 4px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-content {
  max-width: 560px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background-color: var(--slate-50);
  border: 1px solid rgba(232, 150, 31, 0.25);
  border-radius: 0;
  font-family: var(--font-code);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--navy-light);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--slate-100);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy-dark);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--navy-light);
  font-weight: 500;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background-color: var(--slate-100);
}

/* Code Window */
.hero-visual {
  position: relative;
}

.code-window {
  background-color: var(--navy-dark);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  transform: perspective(800px) rotateY(-3deg) rotateX(2deg);
  transition: transform 0.4s var(--ease-smooth);
}

.code-window:hover {
  transform: perspective(800px) rotateY(0deg) rotateX(0deg);
}

.code-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background-color: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.code-dot {
  width: 10px;
  height: 10px;
  border-radius: 0;
}

.code-body {
  padding: 20px;
  font-family: var(--font-code);
  font-size: 0.85rem;
  line-height: 1.8;
  color: #A6ACCD;
  overflow-x: auto;
}

.code-line {
  display: flex;
  white-space: pre;
}

.line-number {
  color: #4A5568;
  margin-right: 20px;
  user-select: none;
  min-width: 20px;
  text-align: right;
}

.code-keyword { color: #C792EA; }
.code-function { color: #82AAFF; }
.code-string { color: #C3E88D; }
.code-comment { color: #676E95; font-style: italic; }
.code-bracket { color: #89DDFF; }

.typing-cursor {
  display: inline-block;
  width: 7px;
  height: 1.1em;
  background-color: var(--gold-base);
  vertical-align: middle;
  animation: typing-cursor 1s step-end infinite;
}

/* ==========================================================================
   About Section
   BG Motif: Diagonal thin lines
   ========================================================================== */
.about {
  padding: var(--section-py) 0;
  background-color: var(--white);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 40px,
    rgba(5, 13, 26, 0.015) 40px,
    rgba(5, 13, 26, 0.015) 41px
  );
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.about-card {
  padding: 36px 28px;
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-100);
  transition: all 0.3s var(--ease-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.card-glow { display: none; }

.card-hover:hover {
  transform: translateY(-6px);
  border-color: var(--gold-base);
}

.card-hover:hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--navy-dark);
  z-index: -1;
}

.card-hover:hover h3,
.card-hover:hover p {
  color: var(--white);
}

.card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--slate-50);
  border-radius: var(--radius-sm);
  color: var(--gold-base);
  font-size: 1.3rem;
  margin-bottom: 20px;
  transition: all 0.3s var(--ease-smooth);
}

.card-hover:hover .card-icon {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--gold-light);
}

.about-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  transition: color 0.3s var(--ease-smooth);
}

.about-card p {
  color: var(--navy-light);
  font-size: 0.95rem;
  line-height: 1.7;
  transition: color 0.3s var(--ease-smooth);
}

/* ==========================================================================
   Tech Stack Section
   BG Motif: Horizontal thin stripes
   ========================================================================== */
.tech-stack {
  padding: var(--section-py) 0;
  background-color: var(--slate-50);
  position: relative;
}

.tech-stack::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 60px,
    rgba(5, 13, 26, 0.02) 60px,
    rgba(5, 13, 26, 0.02) 61px
  );
  pointer-events: none;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 12px;
  background-color: var(--white);
  border: 1px solid var(--slate-100);
  transition: all 0.3s var(--ease-smooth);
  cursor: pointer;
}

.tech-icon-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--navy-dark);
  transition: all 0.3s var(--ease-smooth);
}

.tech-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy-light);
  transition: color 0.3s var(--ease-smooth);
}

.tech-item:hover {
  border-color: var(--gold-base);
  transform: translateY(-4px);
}

.tech-item:hover .tech-icon-wrapper {
  color: var(--gold-base);
}

.tech-item:hover .tech-name {
  color: var(--navy-dark);
}

/* ==========================================================================
   Services Section
   BG Motif: Cross-hatch subtle grid
   ========================================================================== */
.services {
  padding: var(--section-py) 0;
  background-color: var(--white);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(5, 13, 26, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 13, 26, 0.012) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.service-card {
  padding: 36px 28px;
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-100);
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease-smooth);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-base);
}

.service-number {
  position: absolute;
  top: -10px;
  right: 16px;
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 800;
  color: var(--slate-50);
  line-height: 1;
  z-index: 0;
  transition: color 0.3s var(--ease-smooth);
}

.service-card:hover .service-number {
  color: var(--slate-100);
}

.service-icon {
  width: 44px;
  height: 44px;
  background-color: var(--slate-50);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-base);
  font-size: 1.1rem;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: var(--navy-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-dark);
  position: relative;
  z-index: 1;
}

.service-link i {
  color: var(--gold-base);
  font-size: 0.8rem;
  transition: transform 0.3s var(--ease-smooth);
}

.service-link:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   Process Section
   BG Motif: Subtle plus-sign pattern on dark navy
   ========================================================================== */
.process {
  padding: var(--section-py) 0;
  background-color: var(--navy-dark);
  color: var(--white);
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.process::after {
  content: '';
  position: absolute;
  right: 5%;
  bottom: 10%;
  width: 320px;
  height: 320px;
  background-image: url('img/logo.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.06;
  pointer-events: none;
}

.process .section-tag {
  color: var(--gold-base);
}

.process .section-tag::before,
.process .section-tag::after {
  background-color: var(--gold-base);
}

.process .section-title {
  color: var(--white);
}

.process .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 36px;
  width: 2px;
  height: 100%;
  background-color: rgba(232, 150, 31, 0.2);
}

.process-step {
  display: flex;
  gap: 32px;
  position: relative;
  padding-bottom: 40px;
}

.process-step:last-child {
  padding-bottom: 0;
}

.step-connector { display: none; }

.step-number {
  width: 72px;
  height: 72px;
  min-width: 72px;
  background-color: var(--navy-dark);
  border: 2px solid var(--gold-base);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold-base);
  outline: 6px solid var(--navy-dark);
  position: relative;
  z-index: 2;
}

.step-content {
  padding-top: 12px;
}

.step-content h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==========================================================================
   Values Section
   BG Motif: Subtle diamond/rhombus pattern
   ========================================================================== */
.values {
  padding: var(--section-py) 0;
  background-color: var(--slate-50);
  position: relative;
  overflow: hidden;
}

.values::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(45deg, rgba(5, 13, 26, 0.015) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(5, 13, 26, 0.015) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(5, 13, 26, 0.015) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(5, 13, 26, 0.015) 75%);
  background-size: 40px 40px;
  background-position: 0 0, 0 20px, 20px -20px, -20px 0;
  pointer-events: none;
}

.values-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.values-text .section-tag {
  margin-bottom: 12px;
}

.values-text .section-title {
  margin-bottom: 12px;
}

.values-text .section-subtitle {
  margin: 0 0 32px 0;
  max-width: none;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.values-list li i {
  color: var(--gold-base);
  font-size: 1.1rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.values-card-box {
  position: relative;
}

.glass-card {
  background-color: var(--navy-dark);
  border: 1px solid rgba(232, 150, 31, 0.25);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.glass-card::after {
  content: '';
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 180px;
  height: 180px;
  background-image: url('img/logo.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.08;
  pointer-events: none;
}

.quote-icon {
  font-size: 2.5rem;
  color: var(--gold-base);
  margin-bottom: 20px;
  opacity: 0.5;
}

.quote-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.quote-author {
  color: var(--gold-base);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ==========================================================================
   Contact Section
   BG Motif: Vertical thin lines
   ========================================================================== */
.contact {
  padding: var(--section-py) 0;
  background-color: var(--white);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 80px,
    rgba(5, 13, 26, 0.012) 80px,
    rgba(5, 13, 26, 0.012) 81px
  );
  pointer-events: none;
}

.contact-box {
  max-width: 720px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-100);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.contact-header {
  background-color: var(--navy-dark);
  padding: 40px 36px;
  text-align: center;
  color: var(--white);
}

.contact-header h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 8px;
}

.contact-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.contact-email-card {
  padding: 44px 36px;
  background-color: var(--white);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.contact-email-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--slate-50);
  border: 1px solid var(--slate-100);
  padding: 6px 16px;
  font-family: var(--font-code);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--navy-dark);
}

.contact-email-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.contact-email-label {
  font-size: 0.9rem;
  color: var(--navy-light);
  font-weight: 500;
}

.contact-email-link {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--navy-dark);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background-color: var(--slate-50);
  border: 1px solid var(--gold-base);
  transition: all 0.3s var(--ease-smooth);
  text-decoration: none;
}

.contact-email-link:hover {
  background-color: var(--navy-dark);
  color: var(--gold-base);
  border-color: var(--navy-dark);
}

.contact-email-link .copy-icon {
  font-size: 1.1rem;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.contact-email-link:hover .copy-icon {
  opacity: 1;
}

.contact-email-actions {
  width: 100%;
  max-width: 420px;
  margin-top: 8px;
}

*:focus {
  outline: none;
}

*:focus-visible {
  outline: 2px solid var(--gold-base);
  outline-offset: 2px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(5, 13, 26, 0.35);
}

/* ==========================================================================
   Footer
   BG Motif: Tiny dot pattern on navy
   ========================================================================== */
.footer {
  background-color: var(--navy-dark);
  color: var(--white);
  padding: 80px 0 0;
  border-top: 3px solid var(--gold-base);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo .logo-symbol {
  background-color: var(--navy-base);
}

.footer-logo .brand-name {
  color: var(--white);
}

.footer-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 340px;
}

.footer-heading {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: var(--gold-base);
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: color 0.3s var(--ease-smooth), padding-left 0.3s var(--ease-smooth);
}

.footer-links a:hover {
  color: var(--gold-base);
  padding-left: 4px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: all 0.3s var(--ease-smooth);
}

.footer-socials a:hover {
  border-color: var(--gold-base);
  color: var(--gold-base);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.legal-badge-box {
  margin-top: 14px;
  margin-bottom: 12px;
  padding: 10px 14px;
  background-color: var(--navy-base);
  border-left: 3px solid var(--gold-base);
  max-width: 400px;
}

.legal-statement {
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.legal-statement strong {
  color: var(--gold-base);
  font-family: var(--font-code);
  font-weight: 500;
}

.copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

/* ==========================================================================
   Mobile Nav Open State
   ========================================================================== */
.nav-menu.open {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--white);
  padding: 16px 24px 24px;
  border-top: 1px solid var(--slate-100);
  border-bottom: 2px solid var(--navy-dark);
  gap: 0;
  box-shadow: 0 10px 30px rgba(5, 13, 26, 0.1);
  animation: fadeInUp 0.25s var(--ease-smooth);
}

.nav-menu.open .nav-link {
  padding: 14px 0;
  text-align: center;
  border-bottom: 1px solid var(--slate-100);
  font-size: 0.95rem;
  width: 100%;
}

.nav-menu.open .nav-link::after {
  display: none;
}

.nav-menu.open .nav-btn {
  margin-top: 16px;
  width: 100%;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  border: 1px solid var(--navy-dark);
}

/* ==========================================================================
   Button Ripple Effect
   ========================================================================== */
.btn-ripple {
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 0;
  background-color: rgba(232, 150, 31, 0.2);
  transform: translate(-50%, -50%);
  animation: ripple 0.6s var(--ease-smooth);
  pointer-events: none;
}

/* ==========================================================================
   Blog & Article Layouts
   ========================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.blog-card {
  background-color: var(--white);
  border: 1px solid var(--slate-100);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s var(--ease-smooth);
}

.blog-card:hover {
  border-color: var(--gold-base);
  transform: translateY(-4px);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-code);
  font-size: 0.8rem;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.blog-category {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card h3 {
  font-size: 1.3rem;
  line-height: 1.4;
  margin-bottom: 12px;
}

.blog-card p {
  color: var(--navy-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-author {
  font-family: var(--font-code);
  font-size: 0.8rem;
  color: var(--navy-dark);
  font-weight: 600;
  border-top: 1px solid var(--slate-100);
  padding-top: 12px;
}

/* Article Detail Typography */
.article-container {
  width: 100%;
  padding: 120px 24px var(--section-py);
}

.article-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--slate-100);
}

.breadcrumbs {
  font-family: var(--font-code);
  font-size: 0.85rem;
  color: var(--navy-light);
  margin-bottom: 16px;
}

.breadcrumbs a {
  color: var(--gold-dark);
}

.breadcrumbs a:hover {
  color: var(--gold-base);
}

.article-title {
  font-size: 2.5rem;
  line-height: 1.25;
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-code);
  font-size: 0.85rem;
  color: var(--navy-light);
}

.article-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--navy-dark);
}

.article-content h2 {
  font-size: 1.75rem;
  margin: 40px 0 16px;
  padding-top: 16px;
  border-top: 1px solid var(--slate-100);
}

.article-content h3 {
  font-size: 1.35rem;
  margin: 28px 0 12px;
}

.article-content p {
  margin-bottom: 20px;
}

.article-content blockquote {
  background-color: var(--slate-50);
  border-left: 4px solid var(--gold-base);
  padding: 20px 24px;
  margin: 28px 0;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy-dark);
}

.article-content ul, .article-content ol {
  margin: 0 0 24px 20px;
}

.article-content li {
  margin-bottom: 8px;
  list-style: disc;
}

.article-content code {
  font-family: var(--font-code);
  background-color: var(--slate-100);
  padding: 2px 6px;
  font-size: 0.9rem;
  color: var(--navy-dark);
}

.article-content pre {
  background-color: var(--navy-dark);
  color: var(--white);
  padding: 20px;
  overflow-x: auto;
  font-family: var(--font-code);
  font-size: 0.9rem;
  margin: 28px 0;
  border-left: 3px solid var(--gold-base);
}

/* ==========================================================================
   Responsive - 1024px
   ========================================================================== */
@media (max-width: 1024px) {
  :root { --section-py: 80px; }

  .hero-title { font-size: 2.6rem; }
  .hero-container { gap: 40px; }
  .section-title { font-size: 2.2rem; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .values-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ==========================================================================
   Responsive - 768px
   ========================================================================== */
@media (max-width: 768px) {
  :root { --section-py: 64px; --section-gap: 36px; }

  .nav-menu { display: none; }
  .mobile-toggle { display: block; }

  .hero { padding: 100px 0 64px; }
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; flex-wrap: wrap; }
  .hero-visual { display: none; }

  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }

  .process-timeline::before { left: 28px; }
  .process-step { gap: 20px; }
  .step-number { width: 56px; height: 56px; min-width: 56px; font-size: 1.1rem; outline: 4px solid var(--navy-dark); }

  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-row .form-group { margin-bottom: 16px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { text-align: center; }
}

/* ==========================================================================
   Responsive - 480px
   ========================================================================== */
@media (max-width: 480px) {
  :root { --section-py: 56px; }

  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .stat-divider { display: none; }
  .hero-stats { gap: 20px; }

  .contact-header { padding: 28px 20px; }
  .contact-form { padding: 24px 20px; }
  .glass-card { padding: 28px 20px; }

  .badge { font-size: 0.65rem; padding: 5px 10px; }
}

/* ==========================================================================
   Blog Section & Article Cards
   ========================================================================== */
.blog-header-section {
  background-color: var(--white);
  color: var(--navy-dark);
  padding: 120px 0 40px;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--slate-100);
}

.blog-header-container {
  width: 100%;
}

.blog-header-section .section-tag {
  color: var(--gold-dark);
  border-color: var(--slate-100);
  background-color: var(--slate-50);
}

.blog-header-title {
  color: var(--navy-dark);
  font-size: 3rem;
  margin: 16px 0;
  letter-spacing: -0.02em;
}

.blog-header-subtitle {
  color: var(--navy-light);
  font-size: 1.15rem;
  margin: 0;
}

.blog-header-bg {
  display: none;
}

.breadcrumb-nav {
  margin-bottom: 24px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-code);
  font-size: 0.85rem;
  color: var(--navy-light);
}

.breadcrumbs a {
  color: var(--navy-dark);
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: var(--gold-base);
}

.breadcrumbs .separator {
  color: var(--gold-base);
  font-size: 0.75rem;
}

.breadcrumbs .current {
  color: var(--gold-dark);
  font-weight: 600;
}

.blog-meta-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.blog-category-badge {
  background: var(--slate-50);
  color: var(--gold-dark);
  border: 1px solid var(--gold-base);
  padding: 4px 12px;
  font-family: var(--font-code);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.blog-date, .blog-read-time, .blog-author-tag {
  color: var(--navy-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
}

.blog-post-title {
  font-size: 2.6rem;
  line-height: 1.25;
  color: var(--navy-dark);
  margin-bottom: 20px;
  width: 100%;
}

.blog-post-lead {
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--navy-light);
  width: 100%;
  font-weight: 400;
}

.blog-article-section {
  background-color: var(--white);
  padding: 40px 0 100px;
}

.blog-content-container {
  width: 100%;
}

.blog-author-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 6px 14px;
  background: var(--navy-light);
  border: 1px solid rgba(232, 150, 31, 0.25);
  color: var(--gold-base);
  font-family: var(--font-code);
  font-size: 0.82rem;
  border-radius: var(--radius-sm);
}

.blog-section {
  padding: 80px 0 100px;
  background-color: var(--slate-50);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background-color: var(--white);
  border: 1px solid var(--slate-100);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s var(--ease-smooth);
  position: relative;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-base);
  box-shadow: 0 15px 35px rgba(5, 13, 26, 0.08);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.82rem;
  color: #64748B;
  flex-wrap: wrap;
}

.blog-category-tag {
  display: inline-block;
  padding: 4px 10px;
  background-color: rgba(232, 150, 31, 0.1);
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-left: 2px solid var(--gold-base);
}

.blog-card-meta-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-card-title {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: 14px;
  color: var(--navy-dark);
}

.blog-card-title a {
  color: var(--navy-dark);
}

.blog-card-title a:hover {
  color: var(--gold-base);
}

.blog-card-excerpt {
  font-size: 0.93rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 24px;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--slate-100);
  margin-top: auto;
}

.blog-card-author {
  font-size: 0.8rem;
  color: var(--navy-base);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-card-link {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-card-link:hover {
  color: var(--gold-base);
  gap: 10px;
}

/* Featured Article full width or span */
.blog-card-featured {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr;
  background-color: var(--navy-dark);
  color: var(--white);
  border: 1px solid rgba(232, 150, 31, 0.3);
  padding: 40px;
}

.blog-card-featured .blog-card-title {
  font-size: 1.75rem;
  color: var(--white);
}

.blog-card-featured .blog-card-title a {
  color: var(--white);
}

.blog-card-featured .blog-card-title a:hover {
  color: var(--gold-base);
}

.blog-card-featured .blog-card-excerpt {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

.blog-card-featured .blog-card-meta {
  color: rgba(255, 255, 255, 0.6);
}

.blog-card-featured .blog-card-author {
  color: var(--gold-light);
}

.blog-card-featured .blog-card-footer {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.blog-cta-section {
  background-color: var(--navy-dark);
  color: var(--white);
  padding: 90px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-cta-box {
  max-width: 800px;
  margin: 0 auto;
}

.blog-cta-box h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.blog-cta-box p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card-featured { grid-column: span 2; }
}

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-featured { grid-column: span 1; padding: 28px; }
  .blog-header-title { font-size: 2.2rem; }
}


/* ==========================================================================
   Blog Post Styling & Typography System
   ========================================================================== */
.blog-article-section {
  background-color: var(--white);
  padding: 50px 0 100px;
}

.blog-content-container {
  width: 100%;
}

.blog-body {
  font-size: 1.08rem;
  line-height: 1.85;
  color: #2D3748;
}

.blog-body h2 {
  font-size: 1.85rem;
  color: var(--navy-dark);
  margin-top: 48px;
  margin-bottom: 20px;
  padding-left: 16px;
  border-left: 4px solid var(--gold-base);
  line-height: 1.3;
}

.blog-body h3 {
  font-size: 1.38rem;
  color: var(--navy-base);
  margin-top: 36px;
  margin-bottom: 16px;
  font-weight: 600;
}

.blog-body p {
  margin-bottom: 24px;
}

.blog-body strong {
  color: var(--navy-dark);
  font-weight: 600;
}

.blog-body ul, .blog-body ol {
  margin-top: 8px;
  margin-bottom: 28px;
  padding-left: 0;
}

.blog-body ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  list-style: none;
}

.blog-body ul li::before {
  content: "▹";
  position: absolute;
  left: 8px;
  top: 0;
  color: var(--gold-base);
  font-weight: bold;
  font-size: 1.1rem;
}

.blog-body ol {
  counter-reset: blog-ol-counter;
}

.blog-body ol li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  list-style: none;
  counter-increment: blog-ol-counter;
}

.blog-body ol li::before {
  content: counter(blog-ol-counter) ".";
  position: absolute;
  left: 6px;
  top: 0;
  color: var(--gold-base);
  font-family: var(--font-code);
  font-weight: 700;
}

.blog-body blockquote {
  background-color: var(--navy-base);
  color: #E2E8F0;
  border-left: 4px solid var(--gold-base);
  padding: 24px 30px;
  margin: 36px 0;
  position: relative;
}

.blog-body blockquote p {
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.75;
  margin-bottom: 10px;
  color: #F7FAFC;
}

.blog-body blockquote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-code);
  font-size: 0.85rem;
  color: var(--gold-light);
  font-weight: 600;
}

.blog-key-takeaway {
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-top: 3px solid var(--gold-base);
  padding: 28px 32px;
  margin: 40px 0;
}

.blog-key-takeaway h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--navy-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-key-takeaway h4 i {
  color: var(--gold-base);
}

.blog-key-takeaway ul {
  margin-bottom: 0;
}

.blog-key-takeaway ul li {
  margin-bottom: 8px;
  font-size: 1rem;
}

.code-container {
  background-color: var(--navy-dark);
  border: 1px solid var(--navy-light);
  margin: 36px 0;
  overflow: hidden;
}

.code-container-header {
  background-color: var(--navy-base);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.code-lang-label {
  font-family: var(--font-code);
  font-size: 0.78rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.code-container pre {
  padding: 20px;
  overflow-x: auto;
  font-family: var(--font-code);
  font-size: 0.92rem;
  line-height: 1.65;
  color: #E2E8F0;
  margin: 0;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin: 36px 0;
}

.tech-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  text-align: left;
}

.tech-table th {
  background-color: var(--navy-base);
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 14px 18px;
  border: 1px solid var(--navy-light);
}

.tech-table td {
  padding: 14px 18px;
  border: 1px solid var(--slate-100);
  color: #2D3748;
}

.tech-table tr:nth-child(even) td {
  background-color: var(--slate-50);
}

.blog-author-box {
  background: var(--navy-base);
  color: var(--white);
  padding: 32px;
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--navy-light);
}

.author-avatar-symbol {
  width: 68px;
  height: 68px;
  min-width: 68px;
  background: var(--navy-dark);
  border: 1px solid var(--gold-base);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.author-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.author-info h4 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 4px;
}

.author-role {
  font-family: var(--font-code);
  font-size: 0.8rem;
  color: var(--gold-base);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

.author-bio {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #A0AEC0;
  margin-bottom: 0;
}

.blog-cta-box {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-base) 100%);
  border: 1px solid var(--gold-base);
  padding: 48px 40px;
  margin-top: 60px;
  text-align: center;
  color: var(--white);
  position: relative;
}

.blog-cta-box h3 {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 14px;
}

.blog-cta-box p {
  color: #CBD5E0;
  max-width: 620px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .blog-header-section { padding: 110px 0 40px; }
  .blog-post-title { font-size: 1.95rem; }
  .blog-post-lead { font-size: 1.05rem; }
  .blog-body h2 { font-size: 1.5rem; }
  .blog-body h3 { font-size: 1.2rem; }
  .blog-author-box { flex-direction: column; text-align: center; }
  .blog-cta-box { padding: 32px 20px; }
  .blog-cta-box h3 { font-size: 1.4rem; }
}

