/* ═════════════════════════════════════════════════════════════════
   Armor Studios — service sub-pages stylesheet
   Mirrors the homepage (/index.html) design system: same colors,
   same fonts (Inter), same nav, same footer.
═════════════════════════════════════════════════════════════════ */

:root {
  --primary: #0a0a0f;
  --secondary: #16161d;
  --accent: #3b82f6;
  --accent-glow: rgba(59, 130, 246, 0.15);
  --text: #ffffff;
  --text-muted: #a1a1aa;
  --text-dim: #71717a;
  --border: rgba(255, 255, 255, 0.08);
  --gradient-1: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  --gradient-2: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--primary);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle grid background */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* Glow orbs */
.glow-orb { position: fixed; border-radius: 50%; filter: blur(100px); pointer-events: none; z-index: 0; }
.glow-orb-1 { width: 600px; height: 600px; background: rgba(59, 130, 246, 0.08); top: -200px; right: -200px; }
.glow-orb-2 { width: 500px; height: 500px; background: rgba(139, 92, 246, 0.06); bottom: -150px; left: -150px; }

/* ═══════════ NAVIGATION (matches homepage) ═══════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.5rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(10, 10, 15, 0.8);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; color: var(--text); }
.logo-icon { width: 84px; height: 84px; object-fit: contain; }
.logo-text { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.02em; }
.logo-text span { color: var(--text-muted); font-weight: 400; }
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
  color: var(--text-muted); text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; z-index: 300; }
.hamburger span { width: 24px; height: 2px; background: var(--text); transition: all 0.3s ease; border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav-close {
  display: none; position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: var(--text);
  font-size: 2rem; cursor: pointer; line-height: 1; padding: 8px;
}

/* ═══════════ BUTTONS ═══════════ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2rem; font-size: 0.95rem; font-weight: 600;
  text-decoration: none; border-radius: 12px;
  transition: all 0.3s ease; cursor: pointer; border: none;
}
.btn-primary {
  background: var(--gradient-1); color: white;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4); }
.btn-secondary {
  background: var(--secondary); color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.15); }

.gradient-text {
  background: var(--gradient-1);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════ SECTIONS — SHARED ═══════════ */
section { padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 5vw, 4rem); position: relative; z-index: 1; }
.section-container { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent); margin-bottom: 1rem;
  display: block;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.section-desc {
  font-size: 1.1rem; color: var(--text-muted);
  max-width: 600px; line-height: 1.7;
}

/* ═══════════ SUB-PAGE HERO (service pages) ═══════════ */
.subhero {
  position: relative;
  padding: clamp(8rem, 14vw, 12rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  z-index: 1;
}
.subhero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(59, 130, 246, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 30%, rgba(139, 92, 246, 0.06) 0%, transparent 50%);
  z-index: 0;
}
.subhero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 20%, transparent 70%);
  z-index: 0;
}
.subhero-content {
  position: relative; z-index: 1; max-width: 900px; margin: 0 auto;
  text-align: center;
}
.breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--text-dim);
  margin-bottom: 1.25rem; letter-spacing: 0.04em;
}
.breadcrumb a { color: var(--accent); text-decoration: none; }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb-sep { color: var(--text-dim); }
.subhero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700; line-height: 1.08;
  letter-spacing: -0.025em; margin-bottom: 1.25rem;
}
.subhero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2); border-radius: 100px;
  font-size: 0.75rem; font-weight: 500; color: var(--accent);
  letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1.5rem;
}
.subhero-sub {
  font-size: clamp(1rem, 1.7vw, 1.2rem); color: var(--text-muted);
  max-width: 680px; margin: 0 auto 2rem; line-height: 1.7;
}
.subhero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ═══════════ INCLUDED LIST ═══════════ */
.included { background: transparent; }
.included-header { text-align: center; margin-bottom: 3rem; }
.included-header .section-desc { margin: 0 auto; }
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.included-item {
  background: var(--secondary); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.5rem;
  transition: all 0.3s ease;
}
.included-item:hover { border-color: rgba(255, 255, 255, 0.15); transform: translateY(-2px); }
.included-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(59, 130, 246, 0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.included-icon svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 2; }
.included-item h3 { font-size: 1.02rem; font-weight: 600; margin-bottom: 0.4rem; }
.included-item p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.55; }

/* ═══════════ USE CASES ═══════════ */
.usecases { background: var(--secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.usecases-header { text-align: center; margin-bottom: 3rem; }
.usecases-header .section-desc { margin: 0 auto; }
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}
.usecase {
  background: var(--primary); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.75rem;
  position: relative; overflow: hidden;
}
.usecase::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gradient-1); opacity: 0.6;
}
.usecase-tag {
  display: inline-block; padding: 3px 10px;
  background: rgba(245, 158, 11, 0.1); color: #f59e0b;
  border-radius: 100px; font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1rem;
}
.usecase h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.55rem; }
.usecase p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ═══════════ PRICING ═══════════ */
.pricing { background: transparent; }
.pricing-header { text-align: center; margin-bottom: 3rem; }
.pricing-header .section-desc { margin: 0 auto; }
.pricing-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px; margin-bottom: 2rem;
}
.price-card {
  background: var(--secondary); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.75rem;
  position: relative; transition: all 0.3s ease;
}
.price-card.featured {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.08);
}
.price-card:hover { transform: translateY(-3px); border-color: rgba(255, 255, 255, 0.15); }
.price-label {
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-dim); margin-bottom: 0.5rem;
}
.price-amount {
  font-size: 2rem; font-weight: 700; line-height: 1;
  margin-bottom: 0.25rem;
}
.price-amount-sub { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 1rem; }
.price-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.price-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 0.75rem; }
.price-card ul {
  list-style: none; display: flex; flex-direction: column;
  gap: 6px; margin-top: 0.75rem;
}
.price-card ul li {
  font-size: 0.85rem; color: var(--text-muted);
  padding-left: 18px; position: relative;
}
.price-card ul li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 5px; height: 5px; border-radius: 50%; background: #22c55e;
}

/* ═══════════ WHY US ═══════════ */
.whyus { background: var(--secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.whyus-header { text-align: center; margin-bottom: 3rem; }
.whyus-header .section-desc { margin: 0 auto; }
.whyus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.whyus-item {
  background: var(--primary); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.5rem;
}
.whyus-icon { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; margin-bottom: 1rem; }
.whyus-item h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; }
.whyus-item p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.55; }

/* ═══════════ FAQ ═══════════ */
.faq { background: transparent; }
.faq-header { text-align: center; margin-bottom: 3rem; }
.faq-header .section-desc { margin: 0 auto; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--secondary); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.5rem 1.75rem;
}
.faq-item h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--text); }
.faq-item p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ═══════════ CTA ═══════════ */
.cta-section { position: relative; text-align: center; overflow: hidden; }
.cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(59, 130, 246, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 50% 0%, rgba(139, 92, 246, 0.06) 0%, transparent 50%);
}
.cta-content { position: relative; z-index: 1; }
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; margin-bottom: 1rem; letter-spacing: -0.02em;
}
.cta-section p {
  font-size: 1.1rem; color: var(--text-muted);
  margin-bottom: 2rem; max-width: 540px; margin-left: auto; margin-right: auto;
}
.cta-direct {
  display: flex; flex-direction: column; gap: 0.5rem;
  align-items: center; margin-bottom: 2rem;
}
.cta-phone, .cta-email {
  font-size: 1.4rem; font-weight: 600;
  color: var(--text); text-decoration: none;
  transition: color 0.2s;
}
.cta-phone:hover, .cta-email:hover { color: var(--accent); }
.cta-phone-label, .cta-email-label {
  font-size: 0.75rem; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ═══════════ FOOTER (matches homepage) ═══════════ */
footer {
  position: relative;
  padding: 4rem 2rem;
  border-top: 1px solid var(--border);
  z-index: 1;
}
.footer-content {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 2rem;
}
.footer-left { display: flex; align-items: center; gap: 2rem; }
.footer-logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; color: var(--text); }
.footer-logo .logo-text { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.02em; }
.footer-logo .logo-text span { color: var(--text-muted); font-weight: 400; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a {
  color: var(--text-muted); text-decoration: none;
  font-size: 0.9rem; transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-right { color: var(--text-dim); font-size: 0.85rem; }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links {
    position: fixed; top: 0; right: 0; width: 280px; height: 100vh; height: 100dvh;
    background: rgba(10, 10, 15, 0.98);
    -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 2rem; transition: transform 0.3s ease; transform: translateX(100%);
    z-index: 200; border-left: 1px solid var(--border);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-close { display: block; }
  .nav-links a { font-size: 1.2rem; }
  .hamburger { display: flex; }
  .logo-icon { width: 48px; height: 48px; }
  .logo-text { font-size: 1.1rem; }
  .glow-orb { display: none; }
  body::before { display: none; }
  .footer-content { flex-direction: column; text-align: center; }
  .footer-left { flex-direction: column; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 1.25rem; }
}
