/* ============================================================
   KAMA-CO WEBSITE — STYLES
   ============================================================ */

:root {
  --azure-blue: #0078D4;
  --azure-dark: #005A9E;
  --azure-light: #50E6FF;
  --accent-purple: #5C4EE5;
  --accent-green: #00B294;
  --bg-dark: #0A0E1A;
  --bg-card: #111827;
  --bg-card-hover: #1a2233;
  --bg-light: #F8FAFC;
  --surface: #1E2A3A;
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(0, 120, 212, 0.3);
  --text-primary: #F1F5F9;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --gradient: linear-gradient(135deg, #0078D4, #50E6FF);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(0, 120, 212, 0.15);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { font-size: 1.4rem; font-weight: 700; }
.logo-text { color: var(--text-primary); }
.logo-accent { color: var(--azure-blue); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }
.btn-nav {
  background: var(--azure-blue) !important;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.btn-nav:hover { background: var(--azure-dark) !important; }
.lang-switcher {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 3px;
}
.lang-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.2s;
  letter-spacing: 0.05em;
}
.lang-btn:hover { color: var(--text-primary); }
.lang-btn.active {
  background: var(--azure-blue);
  color: #fff;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  font-family: var(--font);
}
.btn-primary {
  background: var(--azure-blue);
  color: #fff;
}
.btn-primary:hover {
  background: var(--azure-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 120, 212, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--azure-blue);
  color: var(--azure-blue);
  transform: translateY(-1px);
}
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 120, 212, 0.12) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 80% 20%, rgba(80, 230, 255, 0.06) 0%, transparent 60%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 0%, transparent 70%);
}
.hero .container { position: relative; z-index: 1; text-align: center; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 120, 212, 0.15);
  border: 1px solid rgba(0, 120, 212, 0.3);
  color: var(--azure-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--azure-blue);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 100px 0; }
.section-dark {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--azure-blue);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  border-color: rgba(0, 120, 212, 0.4);
  background: linear-gradient(135deg, rgba(0, 120, 212, 0.08), rgba(80, 230, 255, 0.04));
}
.featured-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gradient);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.service-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 32px; height: 32px; }
.service-icon.azure { background: rgba(0, 120, 212, 0.15); }
.service-icon.terraform { background: rgba(92, 78, 229, 0.15); }
.service-icon.k8s { background: rgba(50, 108, 229, 0.15); }
.service-icon.security { background: rgba(0, 178, 148, 0.15); }
.service-icon.network { background: rgba(245, 158, 11, 0.15); }
.service-icon.devops { background: rgba(236, 72, 153, 0.15); }
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.service-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.7;
}
.service-list li {
  color: var(--text-secondary);
  font-size: 0.85rem;
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--azure-blue);
}

/* ============================================================
   ARCHITECTURE
   ============================================================ */
.arch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}
.arch-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}
.arch-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.arch-diagram {
  height: 200px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid var(--border);
}
/* Hub-Spoke Diagram */
.hub-spoke-diagram { flex-direction: column; }
.diagram-hub {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--azure-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  box-shadow: 0 0 24px rgba(0, 120, 212, 0.4);
}
.diagram-spoke {
  width: 56px; height: 56px;
  border-radius: 8px;
  background: rgba(0, 120, 212, 0.2);
  border: 1px solid rgba(0, 120, 212, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--azure-light);
  position: absolute;
  z-index: 2;
}
.spoke-1 { top: 20%; left: 15%; }
.spoke-2 { top: 20%; right: 15%; }
.spoke-3 { bottom: 15%; left: 50%; transform: translateX(-50%); }
.diagram-line {
  position: absolute;
  background: rgba(0, 120, 212, 0.3);
  height: 1px;
  z-index: 1;
  transform-origin: left center;
}
.line-1 { width: 90px; top: 40%; left: 28%; transform: rotate(20deg); }
.line-2 { width: 90px; top: 40%; right: 28%; transform: rotate(-20deg) scaleX(-1); }
.line-3 { width: 2px; height: 50px; bottom: 34%; left: 50%; transform: translateX(-50%) rotate(0deg); background: rgba(0, 120, 212, 0.3); }
/* ALZ Diagram */
.alz-diagram {
  flex-direction: column;
  gap: 12px;
}
.alz-root {
  background: var(--azure-blue);
  color: #fff;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
}
.alz-level {
  display: flex;
  gap: 12px;
}
.alz-level-3 { gap: 8px; }
.alz-node {
  background: rgba(0, 120, 212, 0.2);
  border: 1px solid rgba(0, 120, 212, 0.4);
  color: var(--azure-light);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 600;
}
.alz-node.small { padding: 4px 8px; font-size: 0.6rem; }
/* Zero Trust Diagram */
.zero-trust-diagram { flex-direction: column; }
.zt-ring {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.zt-ring span {
  font-size: 0.65rem;
  font-weight: 700;
  position: absolute;
  bottom: 12%;
}
.outer-ring {
  width: 160px; height: 160px;
  border: 1px solid rgba(0, 120, 212, 0.4);
  background: rgba(0, 120, 212, 0.05);
}
.mid-ring {
  width: 110px; height: 110px;
  border: 1px solid rgba(80, 230, 255, 0.5);
  background: rgba(80, 230, 255, 0.06);
}
.inner-ring {
  width: 60px; height: 60px;
  border: 1px solid rgba(0, 178, 148, 0.6);
  background: rgba(0, 178, 148, 0.15);
}
.outer-ring span { color: rgba(0, 120, 212, 0.7); }
.mid-ring span { color: rgba(80, 230, 255, 0.8); }
.inner-ring span { color: rgba(0, 178, 148, 1); font-size: 0.6rem; bottom: 8%; }
.arch-content { padding: 24px; }
.arch-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.arch-content p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.arch-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  background: rgba(0, 120, 212, 0.1);
  border: 1px solid rgba(0, 120, 212, 0.25);
  color: var(--azure-light);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
}

/* ============================================================
   IaC SECTION
   ============================================================ */
.iac-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.iac-code-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.code-header {
  background: #1a1a2e;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.code-dots { display: flex; gap: 6px; }
.dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.dot.red { background: #FF5F57; }
.dot.yellow { background: #FEBC2E; }
.dot.green { background: #28C840; }
.code-filename {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: 'Courier New', monospace;
}
.code-body {
  background: #0d1117;
  padding: 24px;
  overflow-x: auto;
  font-family: 'Courier New', Consolas, monospace;
  font-size: 0.82rem;
  line-height: 1.7;
  color: #e6edf3;
}
code { display: block; white-space: pre; }
.cf { color: #ff7b72; }
.str { color: #a5d6ff; }
.fn { color: #d2a8ff; }
.kw { color: #79c0ff; }
.iac-features { display: flex; flex-direction: column; gap: 24px; }
.iac-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.iac-feature-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  margin-top: 2px;
}
.iac-feature-icon svg { width: 36px; height: 36px; }
.iac-feature h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.iac-feature p { color: var(--text-secondary); font-size: 0.875rem; }
.iac-tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.tech-badge {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
}

/* ============================================================
   KUBERNETES
   ============================================================ */
.k8s-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.k8s-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
}
.k8s-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.k8s-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(0, 120, 212, 0.2);
  line-height: 1;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.k8s-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.k8s-card p { color: var(--text-secondary); font-size: 0.875rem; line-height: 1.7; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-content .section-tag { display: block; margin-bottom: 12px; }
.about-content .section-title { text-align: left; margin-bottom: 20px; }
.about-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}
.certifications {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}
.cert-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.8rem;
  font-weight: 500;
}
.cert-icon { font-size: 1.2rem; }
/* Tech Orbit */
.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.tech-orbit {
  position: relative;
  width: 320px;
  height: 320px;
}
.orbit-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--azure-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 40px rgba(0, 120, 212, 0.4);
  z-index: 2;
}
.orbit-item {
  position: absolute;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--azure-light);
  animation: orbit-float 3s ease-in-out infinite;
}
.item-1 { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.item-2 { top: 20%; right: 5%; animation-delay: 0.5s; }
.item-3 { bottom: 20%; right: 5%; animation-delay: 1s; }
.item-4 { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: 1.5s; }
.item-5 { bottom: 20%; left: 5%; animation-delay: 2s; }
.item-6 { top: 20%; left: 5%; animation-delay: 2.5s; }
@keyframes orbit-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.item-1, .item-4 { animation-name: orbit-float-x; }
@keyframes orbit-float-x {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: flex-start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(0, 120, 212, 0.1);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-item h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 4px; }
.contact-item p { color: var(--text-secondary); font-size: 0.9rem; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.85rem; font-weight: 500; color: var(--text-secondary); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 0.9rem;
  transition: border-color 0.2s;
  width: 100%;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--azure-blue);
  box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.15);
}
.form-group select option { background: var(--bg-card); }
.form-group textarea { resize: vertical; min-height: 120px; }
input::placeholder, textarea::placeholder { color: var(--text-muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 48px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.7;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.footer-col a {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--azure-blue); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .iac-layout,
  .about-layout,
  .contact-layout,
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-visual { display: none; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }
  .nav-toggle { display: flex; }
  .services-grid,
  .arch-grid,
  .k8s-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .stat-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 24px; }
  .certifications { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
