/* CSS Reset & Light Theme Variables */
:root {
  --bg-main: #ffffff;
  --bg-subtle: #f8fafc;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-card-hover: #ffffff;
  --bg-solid: #f1f5f9;
  
  --primary-blue: #2563eb;
  --primary-cyan: #0284c7;
  --primary-indigo: #4f46e5;
  --primary-purple: #7c3aed;
  
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-dim: #64748b;
  
  --border-light: rgba(15, 23, 42, 0.08);
  --border-hover: rgba(37, 99, 235, 0.3);
  
  --font-main: 'Inter', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Fira Code', monospace;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-card: 0 10px 30px rgba(15, 23, 42, 0.05), 0 1px 3px rgba(0, 0, 0, 0.03);
  --shadow-hover: 0 20px 45px rgba(37, 99, 235, 0.14), 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 8px 25px rgba(37, 99, 235, 0.25);
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  background-color: var(--bg-subtle);
  color: var(--text-main);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography & Utilities */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.25;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-cyan) 50%, var(--primary-indigo) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.grid {
  display: grid;
  gap: 24px;
}

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

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

/* Glassmorphism Light Card Component */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-indigo));
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.btn-glow {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-cyan) 100%);
  color: #fff;
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

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

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

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(2, 132, 199, 0.35);
}

.btn-secondary {
  background: #ffffff;
  border-color: var(--border-light);
  color: var(--text-main);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.btn-secondary:hover {
  background: #f1f5f9;
  border-color: rgba(37, 99, 235, 0.2);
  color: var(--primary-blue);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: var(--primary-blue);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary-blue);
  box-shadow: 0 0 8px var(--primary-blue);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.site-header.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.logo-icon svg {
  width: 22px;
  height: 22px;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo-text .tec {
  color: var(--text-main);
}

.logo-text .verse {
  color: var(--primary-blue);
}

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

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: var(--transition);
}

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

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

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

.hero-glow-1 {
  position: absolute;
  top: -10%;
  left: 20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  top: 30%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -1px;
  color: var(--text-main);
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 600px;
  line-height: 1.7;
}

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

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

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

.stat-number, .stat-number-percent {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-blue);
  font-family: var(--font-mono);
}

.stat-badge-text {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-indigo);
  font-family: var(--font-mono);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-light);
}

/* Hero Visual Box */
.hero-card {
  padding: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  border: 1px solid var(--border-light);
  background: #ffffff;
}

.card-header-bar {
  background: #f8fafc;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border-light);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.card-title-text {
  margin-left: 12px;
  font-size: 0.78rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

.card-image-wrap {
  position: relative;
}

.hero-img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-card:hover .hero-img {
  transform: scale(1.03);
}

.floating-badge {
  position: absolute;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-hover);
  color: var(--text-main);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  animation: floatCard 4s ease-in-out infinite;
}

.badge-top-right {
  top: 20px;
  right: 20px;
  color: var(--primary-blue);
}

.badge-bottom-left {
  bottom: 20px;
  left: 20px;
  color: var(--primary-indigo);
  animation-delay: -2s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Sections Global */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary-blue);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--text-main);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
}

.text-center .section-subtitle {
  margin: 0 auto;
}

/* About Section */
.value-card {
  position: relative;
  height: 100%;
  background: #ffffff;
}

.value-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

/* Icon Styling & Explicit Sizes */
svg {
  display: inline-block;
  vertical-align: middle;
}

.step-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary-blue);
  stroke-width: 2;
}

.value-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--primary-blue);
  stroke-width: 2;
}

.tech-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.logo-icon svg {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
  stroke-width: 2.2;
}

.floating-badge svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

.service-features li svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary-blue);
  stroke-width: 2;
  flex-shrink: 0;
}

.mission-badges svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary-blue);
  stroke-width: 2;
}


.value-card.highlighted {
  border-color: var(--primary-blue);
  background: linear-gradient(145deg, #ffffff, #f0f9ff);
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.1);
}

.value-number {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 2.4rem;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.06);
  font-family: var(--font-mono);
}

.value-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--text-main);
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Services Section */
.services-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: #ffffff;
}

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

.service-item.reverse .service-content {
  order: 2;
}

.service-item.reverse .service-visual {
  order: 1;
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.service-no {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-blue);
  font-family: var(--font-mono);
  opacity: 0.8;
}

.service-badge {
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: #f1f5f9;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  font-weight: 500;
}

.service-title {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--text-main);
}

.service-desc {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 1rem;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-main);
}

.service-features li svg {
  width: 18px;
  height: 18px;
  color: var(--primary-blue);
  flex-shrink: 0;
}

/* Service Visual Elements */
.code-snippet-box {
  background: #0f172a;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  font-family: var(--font-mono);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.snippet-header {
  background: #1e293b;
  padding: 10px 16px;
  font-size: 0.8rem;
  color: #94a3b8;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.code-snippet-box pre {
  padding: 20px;
  font-size: 0.88rem;
  line-height: 1.6;
}

.token-keyword { color: #c678dd; }
.token-string { color: #98c379; }
.token-number { color: #d19a66; }
.token-comment { color: #5c6370; }

.architecture-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 24px;
}

.arch-node {
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--border-light);
}

.arch-frontend {
  background: rgba(37, 99, 235, 0.08);
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.arch-api {
  background: rgba(2, 132, 199, 0.08);
  border-color: var(--primary-cyan);
  color: var(--primary-cyan);
}

.arch-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
}

.arch-db {
  background: rgba(124, 58, 237, 0.08);
  border-color: var(--primary-purple);
  color: var(--primary-purple);
}

.arch-ai {
  background: rgba(236, 72, 153, 0.08);
  border-color: #ec4899;
  color: #ec4899;
}

.arch-connector {
  color: var(--text-dim);
}

.tech-stack-preview-card {
  padding: 30px;
  background: #f8fafc;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.preview-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.preview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.preview-tags span {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  border: 1px solid var(--border-light);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-main);
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
  transition: var(--transition);
}

.preview-tags span:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

/* Tech Section */
.tech-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tech-tab {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
  transition: var(--transition);
}

.tech-tab:hover, .tech-tab.active {
  background: var(--primary-blue);
  color: #fff;
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-glow);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.tech-card {
  padding: 24px;
  background: #ffffff;
}

.tech-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: #f1f5f9;
}

.tech-icon svg {
  width: 24px;
  height: 24px;
}

.font-cyan { color: var(--primary-cyan); }
.font-blue { color: var(--primary-blue); }
.font-teal { color: #0d9488; }
.font-green { color: #059669; }
.font-yellow { color: #d97706; }
.font-orange { color: #ea580c; }
.font-purple { color: var(--primary-purple); }
.font-pink { color: #db2777; }

.tech-card h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-main);
}

.tech-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Showcase Section */
.showcase-grid {
  margin-top: 40px;
}

.showcase-card {
  padding: 0;
  overflow: hidden;
  background: #ffffff;
}

.showcase-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.showcase-card:hover .showcase-img {
  transform: scale(1.05);
}

.showcase-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.showcase-card:hover .showcase-overlay {
  opacity: 1;
}

.showcase-body {
  padding: 28px;
}

.showcase-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.tag {
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary-blue);
  border: 1px solid rgba(37, 99, 235, 0.2);
  font-weight: 500;
}

.showcase-body h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-main);
}

.showcase-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Process Section */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 50px;
  position: relative;
}

.process-step {
  display: flex;
  flex-direction: column;
}

.step-num {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary-blue);
  font-family: var(--font-mono);
  margin-bottom: 12px;
}

.step-card {
  padding: 24px 20px;
  height: 100%;
  background: #ffffff;
}

.step-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text-main);
}

.step-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Company Profile */
.company-content-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  margin-top: 40px;
}

.company-card {
  padding: 36px;
  background: #ffffff;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table th, .company-table td {
  padding: 16px 12px;
  border-bottom: 1px solid var(--border-light);
  vertical-align: top;
}

.company-table tr:last-child th, .company-table tr:last-child td {
  border-bottom: none;
}

.company-table th {
  width: 130px;
  text-align: left;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.company-table td {
  color: var(--text-main);
  font-size: 0.95rem;
  line-height: 1.7;
}

.company-mission-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(160deg, #ffffff 0%, #eff6ff 100%);
  border-color: rgba(37, 99, 235, 0.2);
}

.mission-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.mission-header h3 {
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--primary-blue);
}

.mission-text {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.5;
  color: var(--text-main);
}

.mission-subtext {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.mission-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mission-badges span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-main);
  font-weight: 500;
}

.mission-badges svg {
  width: 16px;
  height: 16px;
  color: var(--primary-blue);
}

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  padding: 0;
  background: #ffffff;
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-icon {
  transition: transform 0.3s ease;
  color: var(--primary-blue);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 24px;
}

/* Contact Section */
.contact-box {
  padding: 60px;
  background: #ffffff;
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.contact-form {
  margin-top: 40px;
}

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

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

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
}

.required {
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  font-weight: 600;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: #f8fafc;
  border: 1px solid var(--border-light);
  color: var(--text-main);
  font-family: var(--font-main);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group select option {
  background: #ffffff;
  color: var(--text-main);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  background: #ffffff;
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.15);
}

.form-submit {
  margin-top: 36px;
}

/* Footer */
.site-footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border-light);
  background: #ffffff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin: 6px 0 12px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
}

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

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

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

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.modal-container {
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 40px;
  background: #ffffff;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  background: #f1f5f9;
  border: 1px solid var(--border-light);
  color: var(--text-main);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-item, .service-item.reverse {
    grid-template-columns: 1fr;
  }
  
  .service-item.reverse .service-content {
    order: 1;
  }
  
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .company-content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    z-index: 999;
    transition: right 0.4s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  }

  .nav-menu.active {
    right: 0;
  }

  .mobile-toggle {
    display: block;
    z-index: 1001;
  }

  .header-cta {
    display: none;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

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

  .contact-box {
    padding: 30px 20px;
  }
}
