:root {
  --bg-page: #ffffff;
  --bg-main: #ffffff;
  --border-subtle: #e5e7eb;
  --text-main: #374151;
  --text-muted: #6b7280;
  --accent: #6b7280;
  --accent-soft: #f3f4f6;
  --nav-bg: #ffffff;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 16px;
  background: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  padding: 0;
  min-height: 100vh;
}

html, body {
  overflow-x: hidden;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--bg-main);
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  border: none;
}

/* NAVBAR */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: var(--nav-bg);
  border-bottom: 1px solid #f3f4f6;
  position: relative;
  z-index: 100;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  z-index: 50;
}

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

.mobile-nav-links {
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-links .nav-link {
  font-size: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6;
  color: #374151;
  font-weight: 500;
}

.mobile-nav-links .nav-cta {
  margin-top: 16px;
  text-align: center;
  padding: 12px 24px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0;
  font-weight: 600;
  font-size: 18px;
}

/* SUPER CREATIVE LOGO STYLES */
.creative-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}

.logo-icon {
  position: relative;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.cosmic-container {
  position: relative;
  width: 48px;
  height: 48px;
  perspective: 100px;
  transform-style: preserve-3d;
}

/* Morphing Core */
.morphing-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  background: linear-gradient(45deg, #3b82f6, #8b5cf6, #06d6a0, #f72585);
  background-size: 400% 400%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: morph-core 4s ease-in-out infinite, gradient-shift 6s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
}

@keyframes morph-core {
  0%, 100% { 
    border-radius: 50%; 
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
  25% { 
    border-radius: 30%; 
    transform: translate(-50%, -50%) rotate(90deg) scale(1.1);
  }
  50% { 
    border-radius: 20%; 
    transform: translate(-50%, -50%) rotate(180deg) scale(0.9);
  }
  75% { 
    border-radius: 40%; 
    transform: translate(-50%, -50%) rotate(270deg) scale(1.2);
  }
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Orbital Rings */
.orbital-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 2px solid transparent;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-1 {
  width: 30px;
  height: 30px;
  border-top: 2px solid #3b82f6;
  border-right: 2px solid transparent;
  animation: orbit-1 3s linear infinite;
}

.ring-2 {
  width: 40px;
  height: 40px;
  border-right: 2px solid #8b5cf6;
  border-bottom: 2px solid transparent;
  animation: orbit-2 4s linear infinite reverse;
}

.ring-3 {
  width: 50px;
  height: 50px;
  border-left: 2px solid #06d6a0;
  border-top: 2px solid transparent;
  animation: orbit-3 5s linear infinite;
}

@keyframes orbit-1 {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes orbit-2 {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes orbit-3 {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Energy Particles */
.particle-system {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.energy-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: radial-gradient(circle, #f72585, transparent);
  border-radius: 50%;
  animation: particle-float 3s ease-in-out infinite;
}

.energy-particle.p1 {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.energy-particle.p2 {
  top: 80%;
  left: 30%;
  animation-delay: 0.5s;
}

.energy-particle.p3 {
  top: 20%;
  right: 15%;
  animation-delay: 1s;
}

.energy-particle.p4 {
  bottom: 20%;
  right: 25%;
  animation-delay: 1.5s;
}

.energy-particle.p5 {
  top: 60%;
  left: 10%;
  animation-delay: 2s;
}

.energy-particle.p6 {
  top: 40%;
  right: 10%;
  animation-delay: 2.5s;
}

@keyframes particle-float {
  0%, 100% { 
    transform: translateY(0px) scale(1); 
    opacity: 0.7;
  }
  50% { 
    transform: translateY(-10px) scale(1.5); 
    opacity: 1;
  }
}

/* Quantum Dots */
.quantum-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.quantum-dot {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #06d6a0;
  border-radius: 50%;
  animation: quantum-pulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px #06d6a0;
}

.quantum-dot.q1 {
  top: 5px;
  left: 5px;
  animation-delay: 0s;
}

.quantum-dot.q2 {
  top: 5px;
  right: 5px;
  animation-delay: 0.5s;
}

.quantum-dot.q3 {
  bottom: 5px;
  left: 5px;
  animation-delay: 1s;
}

.quantum-dot.q4 {
  bottom: 5px;
  right: 5px;
  animation-delay: 1.5s;
}

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

/* Neural Network Lines */
.neural-network {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.neural-line {
  position: absolute;
  background: linear-gradient(45deg, transparent, #8b5cf6, transparent);
  animation: neural-pulse 3s ease-in-out infinite;
}

.neural-line.n1 {
  top: 24px;
  left: 0;
  width: 100%;
  height: 1px;
  animation-delay: 0s;
}

.neural-line.n2 {
  top: 0;
  left: 24px;
  width: 1px;
  height: 100%;
  animation-delay: 0.75s;
}

.neural-line.n3 {
  top: 12px;
  left: 12px;
  width: 24px;
  height: 1px;
  transform: rotate(45deg);
  animation-delay: 1.5s;
}

.neural-line.n4 {
  top: 12px;
  right: 12px;
  width: 24px;
  height: 1px;
  transform: rotate(-45deg);
  animation-delay: 2.25s;
}

@keyframes neural-pulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.8; }
}

/* Holographic Layers */
.hologram-layer {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid transparent;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: hologram-flicker 4s ease-in-out infinite;
}

.hologram-layer.layer-1 {
  width: 20px;
  height: 20px;
  border-color: rgba(59, 130, 246, 0.3);
  animation-delay: 0s;
}

.hologram-layer.layer-2 {
  width: 35px;
  height: 35px;
  border-color: rgba(139, 92, 246, 0.3);
  animation-delay: 1s;
}

.hologram-layer.layer-3 {
  width: 45px;
  height: 45px;
  border-color: rgba(6, 214, 160, 0.3);
  animation-delay: 2s;
}

@keyframes hologram-flicker {
  0%, 100% { 
    opacity: 0.3; 
    transform: translate(-50%, -50%) scale(1);
  }
  50% { 
    opacity: 0.7; 
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* Creative Typography */
.logo-text {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.system-text,
.origin-text {
  display: flex;
}

.letter {
  display: inline-block;
  animation: letter-wave 3s ease-in-out infinite;
}

.system-text .letter {
  color: #374151;
}

.origin-text .letter {
  color: #8b5cf6;
}

.system-text .letter:nth-child(1) { animation-delay: 0.1s; }
.system-text .letter:nth-child(2) { animation-delay: 0.2s; }
.system-text .letter:nth-child(3) { animation-delay: 0.3s; }
.system-text .letter:nth-child(4) { animation-delay: 0.4s; }
.system-text .letter:nth-child(5) { animation-delay: 0.5s; }
.system-text .letter:nth-child(6) { animation-delay: 0.6s; }

.origin-text .letter:nth-child(1) { animation-delay: 0.7s; }
.origin-text .letter:nth-child(2) { animation-delay: 0.8s; }
.origin-text .letter:nth-child(3) { animation-delay: 0.9s; }
.origin-text .letter:nth-child(4) { animation-delay: 1.0s; }
.origin-text .letter:nth-child(5) { animation-delay: 1.1s; }
.origin-text .letter:nth-child(6) { animation-delay: 1.2s; }

@keyframes letter-wave {
  0%, 100% { 
    transform: translateY(0px); 
  }
  50% { 
    transform: translateY(-3px); 
  }
}

/* Hover Effects */
.creative-logo:hover .morphing-core {
  animation-duration: 1s;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.8);
}

.creative-logo:hover .orbital-ring {
  animation-duration: 1s;
}

.creative-logo:hover .energy-particle {
  animation-duration: 1s;
}

.creative-logo:hover .letter {
  animation-duration: 0.5s;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

.nav-link {
  color: #4b5563;
  text-decoration: none;
  position: relative;
}

.nav-link:hover {
  color: #111827;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
}

.nav-cta {
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
}

.nav-cta:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
}

/* MAIN CONTENT */

.content {
  padding: 60px 40px 40px;
}

@media (max-width: 800px) {
  body {
    padding: 0;
  }
  .page {
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    min-height: 100vh;
  }
  .content {
    padding: 40px 20px 24px;
  }
  .nav {
    padding: 16px 20px;
  }
  .nav-right {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }

  .mobile-menu {
    top: 64px;
  }
  
  .logo-icon {
    width: 40px;
    height: 40px;
  }
  
  .cosmic-container {
    width: 36px;
    height: 36px;
  }
  
  .logo-text {
    font-size: 18px;
  }
  
  .creative-logo {
    gap: 12px;
  }
  
  .morphing-core {
    width: 12px !important;
    height: 12px !important;
  }
  
  .ring-1 { width: 24px; height: 24px; }
  .ring-2 { width: 30px; height: 30px; }
  .ring-3 { width: 36px; height: 36px; }
}

.hero {
  margin-bottom: 80px;
  text-align: left;
  padding: 100px 40px 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: floatingOrbs 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    linear-gradient(45deg, transparent 49%, rgba(255, 255, 255, 0.05) 50%, transparent 51%),
    linear-gradient(-45deg, transparent 49%, rgba(255, 255, 255, 0.03) 50%, transparent 51%);
  animation: meshPattern 25s linear infinite;
  pointer-events: none;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes floatingOrbs {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(10px, -10px) scale(1.1); }
  50% { transform: translate(-5px, 10px) scale(0.9); }
  75% { transform: translate(-10px, -5px) scale(1.05); }
}

@keyframes meshPattern {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}
.hero-title-link {
  color: inherit;
  text-decoration: none;
}
.hero-title-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 4px;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 28px;
    margin-bottom: 12px;
  }
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.hero .sub-text {
  display: none;
}

@media (max-width: 600px) {
  .hero p {
    font-size: 16px;
  }
  .hero .sub-text {
    font-size: 14px;
  }
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

.btn-primary,
.btn-secondary {
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-weight: 500;
  transition: all 0.2s ease;
  min-width: 140px;
}

.btn-primary {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  transform: translateY(0);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: linear-gradient(45deg, #5a6fd8, #6b42a0);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: #4B5563;
  border-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 1);
  color: #374151;
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

/* GENERIC SECTION */

.section {
  border-top: 1px solid var(--border-subtle);
  padding: 80px 40px 60px;
  margin-top: 60px;
  position: relative;
  background: linear-gradient(135deg, #fafbfc 0%, #f1f5f9 100%);
  border-radius: 20px;
  margin: 60px 20px 0;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.section:nth-child(even) {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
  border-radius: 20px 20px 0 0;
}

.section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
  color: #1f2937;
  text-transform: none;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

/* EXPERTISE */

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

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

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

.expertise-card {
  border-radius: 0;
  border: none;
  padding: 24px 16px;
  background: transparent;
  text-align: left;
}

.expertise-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  margin-bottom: 16px;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.expertise-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-main);
}

.expertise-copy {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* TRUSTED BY */

.trusted {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 24px;
  align-items: center;
}

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

.trusted h2 {
  margin-bottom: 10px;
}

.trust-quote {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 6px;
}

.trust-author {
  font-size: 12px;
  color: #9ca3af;
}

.trust-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 100%;
}

@media (max-width: 600px) {
  .trust-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.logo-pill {
  height: 32px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
  white-space: nowrap;
  text-align: center;
  min-width: 0;
}

/* FOOTER CTA */

.footer-cta {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
}

.footer-cta strong {
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
}

.footer-links a {
  color: #6b7280;
  text-decoration: none;
}

.footer-links a:hover {
  color: #111827;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #64748b;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.2s ease;
}

.social-link:hover {
  background: #8b5cf6;
  border-color: #8b5cf6;
  color: white;
  transform: translateY(-2px);
}

.social-link.linkedin:hover {
  background: #0077b5;
  border-color: #0077b5;
}

.social-link.email:hover {
  background: #059669;
  border-color: #059669;
}

/* PAGE-SPECIFIC STYLES */

/* About Page */
.story-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 800px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.story-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-main);
}

.story-content p {
  margin-bottom: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

@media (max-width: 600px) {
  .stats-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.stat {
  text-align: center;
  padding: 16px;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #8b5cf6;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.story-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mission-card {
  padding: 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}

.mission-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-main);
}

.mission-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

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

@media (max-width: 800px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.team-member {
  text-align: center;
  padding: 24px;
  background: #fafbfc;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
}

.member-avatar {
  font-size: 48px;
  margin-bottom: 16px;
}

.team-member h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-main);
}

.member-role {
  font-size: 14px;
  color: #8b5cf6;
  font-weight: 500;
  margin-bottom: 12px;
}

.team-member p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.work-method {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.method-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: center;
}

@media (max-width: 600px) {
  .method-step {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  color: white;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-main);
}

.step-content p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Process Page */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50px;
  bottom: 50px;
  width: 3px;
  background: linear-gradient(180deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  border-radius: 2px;
  z-index: 1;
  transform: translateX(-50%);
}

@media (max-width: 600px) {
  .process-timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.process-phase {
  border: 2px solid rgba(102, 126, 234, 0.15);
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
  box-shadow: 
    0 16px 60px rgba(102, 126, 234, 0.1),
    0 8px 24px rgba(118, 75, 162, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(15px);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  margin-left: 0px;
}

.process-phase:hover {
  transform: translateX(15px) translateY(-5px);
  box-shadow: 
    0 24px 80px rgba(102, 126, 234, 0.15),
    0 12px 32px rgba(118, 75, 162, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  border-color: rgba(102, 126, 234, 0.25);
}

.phase-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.03));
  border-bottom: 1px solid rgba(102, 126, 234, 0.1);
  text-align: left;
}

@media (max-width: 600px) {
  .phase-header {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .phase-info {
    text-align: center;
  }
}

.phase-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  font-size: 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.9);
  position: relative;
  animation: pulseBeat 3s ease-in-out infinite;
  margin: 0 16px 0 0;
  line-height: 1;
  vertical-align: middle;
  transform: translateY(0px);
  backdrop-filter: blur(10px);
}

.phase-icon::before {
  content: none;
}

@media (min-width: 768px) {
  .phase-icon {
    width: 55px;
    height: 55px;
    font-size: 20px;
    transform: translateY(0px);
  }
}

@keyframes pulseBeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.1; }
  100% { transform: scale(1.2); opacity: 0; }
}

.phase-info {
  flex: 1;
  text-align: center;
}

.phase-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 4px 0;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.phase-duration {
  font-size: 14px;
  color: #8b5cf6;
  font-weight: 500;
}

.phase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 32px 24px;
}

@media (max-width: 800px) {
  .phase-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Removed duplicate media query */

.phase-description p {
  margin-bottom: 20px;
  color: var(--text-muted);
  line-height: 1.7;
}

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

.phase-deliverables li {
  padding: 8px 0;
  color: var(--text-muted);
  font-size: 14px;
  border-bottom: 1px solid #f3f4f6;
}

.phase-deliverables li:last-child {
  border-bottom: none;
}

.discovery-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.discovery-step {
  padding: 12px 16px;
  background: white;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  color: var(--text-muted);
}

.discovery-step strong {
  color: #8b5cf6;
}

.prototype-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

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

.prototype-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: white;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  color: var(--text-muted);
}

.feature-icon {
  font-size: 18px;
}

.dev-workflow {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.workflow-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 12px;
  background: white;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  align-items: center;
}

.workflow-item.active {
  border-color: #8b5cf6;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.workflow-week {
  font-size: 12px;
  color: #8b5cf6;
  font-weight: 600;
}

.workflow-task {
  font-size: 14px;
  color: var(--text-muted);
}

.deployment-checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checklist-item {
  padding: 8px 12px;
  background: white;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  color: var(--text-muted);
}

.support-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

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

.support-tier {
  text-align: center;
  padding: 16px 12px;
  background: white;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.tier-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 4px;
}

.tier-price {
  font-size: 16px;
  color: #8b5cf6;
  font-weight: 700;
}

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

@media (max-width: 800px) {
  .process-benefits {
    grid-template-columns: 1fr;
  }
}

.benefit-card {
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}

.benefit-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-main);
}

.benefit-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Case Studies Page */
.case-study {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  margin-bottom: 32px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 100%;
  width: 100%;
}

.case-study::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
}

.case-study:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.15);
}

.case-study.featured {
  border-color: #8b5cf6;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.case-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 24px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-bottom: 1px solid #e5e7eb;
}

@media (max-width: 800px) {
  .case-header {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  
  .case-company {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .case-header {
    padding: 20px 16px;
  }
  
  .case-study {
    margin: 16px 8px;
  }
}

.case-company {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.company-logo {
  font-size: 32px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  flex-shrink: 0;
}

.company-info h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
  line-height: 1.3;
  word-break: normal;
  overflow-wrap: break-word;
}
.company-info {
  min-width: 0;
}

.company-details {
  color: var(--text-muted);
  font-size: 14px;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  text-align: center;
  width: 100%;
}

@media (max-width: 800px) {
  .case-metrics {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .case-metrics {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .metric {
    padding: 20px 16px;
    text-align: center;
  }
  
  .metric-value {
    font-size: 28px;
    margin-bottom: 8px;
  }
  
  .metric-label {
    font-size: 14px;
    font-weight: 500;
  }
}

.metric {
  padding: 14px 12px;
  background: white;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.metric-value {
  font-size: 24px;
  font-weight: 700;
  color: #8b5cf6;
  margin-bottom: 4px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(102, 126, 234, 0.3);
  position: relative;
  animation: metricGlow 3s ease-in-out infinite alternate;
}

@keyframes metricGlow {
  0% { filter: brightness(1); }
  100% { filter: brightness(1.1); }
}

@media (max-width: 600px) {
  .metric-value {
    font-size: 16px;
  }
}

.metric-label {
  font-size: 12px;
  color: var(--text-muted);
}

.case-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  padding: 32px 24px;
}

@media (max-width: 800px) {
  .case-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.case-story h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 24px;
  color: var(--text-main);
}

.case-story h3:first-child {
  margin-top: 0;
}

.case-story p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

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

.results-list li {
  padding: 8px 0;
  color: var(--text-muted);
  font-size: 14px;
  border-bottom: 1px solid #f3f4f6;
}

.results-list li:last-child {
  border-bottom: none;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.before,
.after {
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.before {
  background: #fef2f2;
  border-color: #fecaca;
}

.after {
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.before h4,
.after h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
}

.stat-item {
  padding: 6px 0;
  font-size: 13px;
  color: var(--text-muted);
  border-bottom: 1px solid #f3f4f6;
}

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

.roi-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

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

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

.roi-stat {
  padding: 32px 24px;
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  color: white;
  border-radius: 16px;
}

.roi-number {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}

.roi-label {
  font-size: 14px;
  opacity: 0.9;
}

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

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

.testimonial {
  padding: 24px;
  background: #fafbfc;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
}

.quote {
  font-size: 16px;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}

.author {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: linear-gradient(135deg, #fafbfc 0%, #f1f5f9 100%);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.1);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
  border-radius: 20px 20px 0 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

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

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-width: 0;
  padding: 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1), 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
  background: white;
}

.form-submit {
  margin-top: 10px;
  padding: 16px 24px;
  font-size: 16px;
}

.contact-info h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-main);
}

.next-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.next-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step-icon {
  font-size: 20px;
  margin-top: 2px;
}

.step-text strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--text-main);
}

.step-text p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.contact-details {
  margin-bottom: 32px;
}

.contact-method {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.contact-icon {
  font-size: 18px;
  margin-top: 2px;
}

.contact-method strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
  color: var(--text-main);
}

.contact-method p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.guarantee {
  padding: 20px;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-radius: 12px;
  border: 1px solid #bbf7d0;
}

.guarantee h3 {
  margin-bottom: 16px;
}

.guarantee-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.guarantee-item {
  font-size: 14px;
  color: #15803d;
}

/* 404 Error Page */
.error-page {
  text-align: center;
  padding: 60px 20px;
}

.error-content {
  max-width: 600px;
  margin: 0 auto;
}

.error-visual {
  position: relative;
  margin-bottom: 40px;
}

.error-number {
  font-size: 120px;
  font-weight: 700;
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .error-number {
    font-size: 80px;
  }
}

.error-animation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #8b5cf6;
  border-radius: 50%;
  animation: float 3s ease-in-out infinite;
}

.floating-particle:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.floating-particle:nth-child(2) {
  top: 60%;
  right: 30%;
  animation-delay: 1s;
}

.floating-particle:nth-child(3) {
  bottom: 30%;
  left: 60%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { 
    transform: translateY(0px); 
    opacity: 0.7;
  }
  50% { 
    transform: translateY(-20px); 
    opacity: 1;
  }
}

.error-page h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-main);
}

.error-page p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

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

@media (max-width: 600px) {
  .error-actions {
    flex-direction: column;
    align-items: center;
  }
}

.helpful-links {
  margin-top: 48px;
}

.helpful-links h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--text-main);
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 500px;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .link-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.helpful-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  background: #fafbfc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s;
}

.helpful-link:hover {
  background: #f1f5f9;
  border-color: #8b5cf6;
  transform: translateY(-2px);
}

.link-icon {
  font-size: 24px;
}

.link-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
}

/* Mobile Refinements */
@media (max-width: 600px) {
  .page,
  .content,
  .hero,
  .section,
  .case-study,
  .contact-grid,
  .contact-form-section,
  .contact-info-section {
    max-width: 100%;
  }

  .content {
    padding: 28px 16px 24px;
  }

  .hero {
    padding: 72px 18px 56px;
    margin: 12px 0 28px;
    border-radius: 18px;
  }

  .section {
    padding: 24px 16px;
    margin: 28px 0 0;
    border-radius: 16px;
  }

  .case-study {
    margin: 0 0 24px;
    padding: 16px;
    overflow: hidden;
    border-radius: 14px;
  }

  .case-header {
    padding: 0 0 16px 0;
    gap: 16px;
    text-align: left;
  }

  .case-content {
    padding: 0;
    gap: 20px;
  }

  .case-company {
    justify-content: flex-start;
  }

  .company-logo {
    width: 52px;
    height: 52px;
  }

  .company-info h2 {
    font-size: 20px;
  }

  .company-details {
    font-size: 13px;
  }

  .case-metrics {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .metric {
    width: 100%;
    padding: 12px 10px;
  }

  .metric-value {
    font-size: 22px;
  }

  .metric-label {
    font-size: 13px;
  }

  .case-content {
    grid-template-columns: 1fr;
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-form {
    padding: 20px;
    max-width: 100%;
    margin: 0 auto;
  }

  .contact-form::before {
    left: 0;
    right: 0;
  }
}

@media (max-width: 480px) {
  .content {
    padding: 24px 14px 20px;
  }

  .hero {
    padding: 60px 16px 48px;
    margin: 10px 0 24px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 15px;
  }

  .section {
    padding: 24px 14px;
    margin: 24px 0 0;
  }

  .case-header {
    text-align: left;
  }
}
