/* ============================================
   VARIABLES — INDUSTRIAL BLUEPRINT THEME
============================================ */
:root {
  --navy: #0a1628;
  --navy-deep: #050d1a;
  --navy-mid: #122138;
  --navy-soft: #1a2d4a;
  --orange: #ff6b35;
  --orange-hot: #ff8c42;
  --orange-dark: #e8531c;
  --steel: #4a6fa5;
  --steel-light: #6b8bc2;
  --concrete: #c8ccd4;
  --concrete-soft: #e8ebf0;
  --paper: #f5f7fa;
  --white: #ffffff;
  --dark-ink: #0a1628;
  --muted: #6b7280;

  --gradient-fire: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  --gradient-steel: linear-gradient(135deg, #4a6fa5 0%, #6b8bc2 100%);
  --gradient-night: linear-gradient(135deg, #0a1628 0%, #122138 100%);

  --sans: 'Space Grotesk', -apple-system, sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --display: 'Archivo', 'Space Grotesk', sans-serif;

  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.08);
  --shadow-md: 0 8px 24px rgba(10, 22, 40, 0.12);
  --shadow-lg: 0 20px 48px rgba(10, 22, 40, 0.18);
  --shadow-orange: 0 12px 32px rgba(255, 107, 53, 0.35);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

/* ============================================
   RESET
============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--dark-ink);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============================================
   BACKGROUND CANVAS
============================================ */
.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74, 111, 165, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 111, 165, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.accent-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.blob-1 {
  width: 600px; height: 600px;
  background: var(--orange);
  top: -200px; right: -200px;
  opacity: 0.12;
  animation: drift 30s ease-in-out infinite;
}

.blob-2 {
  width: 500px; height: 500px;
  background: var(--steel);
  bottom: 20%; left: -150px;
  opacity: 0.1;
  animation: drift 40s ease-in-out infinite reverse;
}

.blob-3 {
  width: 400px; height: 400px;
  background: var(--navy-soft);
  top: 60%; right: 20%;
  opacity: 0.08;
  animation: drift 35s ease-in-out infinite;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.1); }
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

a { color: inherit; text-decoration: none; transition: color 0.25s; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ============================================
   NAVIGATION
============================================ */
.topnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.topnav.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.nav-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.5px;
  color: var(--white);
}

.brand-icon {
  font-size: 24px;
  color: var(--orange);
}

.brand-name .accent { color: var(--orange); margin: 0 2px; }

.nav-list {
  display: flex;
  gap: 32px;
}

.nav-list a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  padding: 6px 0;
}

.nav-list a::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.3s;
}

.nav-list a:hover { color: white; }
.nav-list a:hover::before { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--orange);
  color: white;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--orange-hot);
  transform: translateX(4px);
}

.cta-arrow { transition: transform 0.3s; }
.nav-cta:hover .cta-arrow { transform: translateX(4px); }

.burger {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.burger span {
  width: 100%; height: 2px;
  background: white;
  transition: 0.3s;
}

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: white;
  box-shadow: var(--shadow-orange);
  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.25), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before { left: 100%; }

.btn-primary:hover {
  background: var(--orange-hot);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(255, 107, 53, 0.5);
}

.btn-primary:hover .btn-icon {
  transform: translateX(4px);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-ghost:hover {
  background: var(--navy);
  color: white;
}

.btn-icon { transition: transform 0.3s; font-weight: bold; }
.full-width { width: 100%; justify-content: center; }

/* ============================================
   HERO
============================================ */
.hero {
  padding: 140px 0 0;
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  color: white;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.15), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(74, 111, 165, 0.2), transparent 50%);
  pointer-events: none;
}

.hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: var(--radius-sm);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--orange-hot);
  margin-bottom: 28px;
  text-transform: uppercase;
}

.tag-marker { color: white; }
.tag-divider { color: rgba(255,255,255,0.3); }

.pulse-live {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.8); }
  70% { box-shadow: 0 0 0 12px rgba(255, 107, 53, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: white;
}

.hero-title em {
  font-style: normal;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-actions .btn-ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.hero-trust-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.trust-icon { color: var(--orange); }

/* Hero Right Stats */
.hero-right {
  position: relative;
  min-height: 500px;
}

.stat-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.stat-card {
  position: absolute;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: float 6s ease-in-out infinite;
  min-width: 180px;
}

.sc-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--orange-hot);
  letter-spacing: 2px;
  margin-bottom: 6px;
  font-weight: 700;
}

.sc-num {
  font-family: var(--display);
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 6px;
}

.sc-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

.sc-1 { top: 0; left: 0; animation-delay: 0s; }
.sc-2 { top: 35%; right: 0; animation-delay: -2s; }
.sc-3 { bottom: 0; left: 20%; animation-delay: -4s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.floating-badge {
  position: absolute;
  padding: 10px 18px;
  background: var(--orange);
  color: white;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-orange);
  animation: floatBadge 5s ease-in-out infinite;
}

.fb-icon { font-size: 16px; }
.fb-1 { top: 25%; right: -10px; }
.fb-2 { bottom: 25%; left: -10px; animation-delay: -2.5s; }

@keyframes floatBadge {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

/* Hero footer bar */
.hero-footer-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.hfb-item {
  padding: 28px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hfb-item:last-child { border-right: none; }

.hfb-key {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--orange-hot);
  font-weight: 700;
}

.hfb-val {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.hfb-live {
  color: #4ade80;
  position: relative;
  padding-left: 16px;
}

.hfb-live::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* ============================================
   SECTION HEADERS
============================================ */
section {
  padding: 120px 0;
  position: relative;
  z-index: 2;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}

.sh-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--orange);
  text-transform: uppercase;
}

.sh-num { color: var(--navy); font-weight: 800; }

.sh-line {
  width: 40px; height: 2px;
  background: var(--orange);
}

.section-head h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--navy);
}

.section-head p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================
   SERVICES GRID
============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 32px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sc-corner {
  position: absolute;
  top: 0; right: 0;
  width: 40px; height: 40px;
  background: var(--orange);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  transition: all 0.4s;
}

.service-card:hover .sc-corner {
  width: 60px; height: 60px;
}

.sc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.sc-icon {
  font-size: 2.2rem;
  width: 64px; height: 64px;
  background: var(--paper);
  border: 2px solid var(--orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}

.sc-num {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 1px;
}

.service-card h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy);
}

.service-card > p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
  flex: 1;
}

.sc-features {
  margin-bottom: 24px;
}

.sc-features li {
  padding: 5px 0 5px 22px;
  font-size: 0.9rem;
  color: var(--dark-ink);
  position: relative;
}

.sc-features li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}

.sc-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.service-card:hover .sc-icon {
  background: var(--orange);
  transform: rotate(-5deg);
}

.service-card:hover .sc-icon { color: white; }
.service-card:hover .sc-link { gap: 10px; }

/* ============================================
   PROCESS TIMELINE
============================================ */
.process {
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 107, 53, 0.1), transparent 50%);
  pointer-events: none;
}

.process .section-head h2 { color: white; }
.process .section-head p { color: rgba(255, 255, 255, 0.7); }

.process-track {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.pt-connector {
  position: absolute;
  left: 32px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, var(--orange), var(--steel));
  opacity: 0.5;
}

.process-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 32px;
  position: relative;
}

.process-step:last-child { margin-bottom: 0; }

.ps-num {
  flex-shrink: 0;
  width: 64px; height: 64px;
  background: var(--navy);
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--orange);
  z-index: 2;
  transition: all 0.4s;
}

.ps-body {
  flex: 1;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: all 0.3s;
}

.ps-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--orange-hot);
  margin-bottom: 6px;
  font-weight: 700;
}

.ps-body h3 {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}

.ps-body p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.process-step:hover .ps-num {
  background: var(--orange);
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.process-step:hover .ps-body {
  background: rgba(255, 107, 53, 0.08);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateX(6px);
}

/* ============================================
   WORK / PORTFOLIO
============================================ */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 20px;
}

.work-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.work-large { grid-column: span 2; }

.work-visual {
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.wv-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.1) 20px, rgba(255,255,255,0.1) 21px);
}

.wv-1 { background: linear-gradient(135deg, #0a1628 0%, #1a2d4a 50%, #ff6b35 100%); }
.wv-2 { background: linear-gradient(135deg, #122138 0%, #4a6fa5 100%); }
.wv-3 { background: linear-gradient(135deg, #ff6b35 0%, #e8531c 50%, #0a1628 100%); }
.wv-4 { background: linear-gradient(135deg, #4a6fa5 0%, #1a2d4a 100%); }
.wv-5 { background: linear-gradient(135deg, #1a2d4a 0%, #ff8c42 100%); }

.work-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.95) 0%, rgba(10, 22, 40, 0.3) 60%, transparent 100%);
}

.work-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  z-index: 2;
  color: white;
  transform: translateY(10px);
  transition: transform 0.4s;
}

.work-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--orange);
  color: white;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.work-info h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.work-info p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

.work-card:hover .work-visual {
  transform: scale(1.08);
}

.work-card:hover .work-info {
  transform: translateY(0);
}

/* ============================================
   ARTICLE / GUIDE
============================================ */
.guide {
  background: white;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.guide-header {
  max-width: 860px;
  margin: 0 auto 56px;
  text-align: center;
  padding-bottom: 40px;
  border-bottom: 1px solid #e5e7eb;
}

.guide-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: var(--paper);
  border: 1px solid var(--orange);
  border-radius: 50px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.guide-tag span:nth-child(2) { color: var(--muted); }

.guide-header h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--navy);
}

.guide-byline {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.byline-author { font-weight: 600; color: var(--navy); }
.byline-dot { color: var(--orange); }

.guide-body {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #374151;
}

.guide-lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--navy);
  margin-bottom: 40px;
  font-weight: 500;
  padding-left: 24px;
  border-left: 4px solid var(--orange);
}

.guide-body h2 {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 56px 0 20px;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.guide-body h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 40px 0 14px;
  color: var(--navy);
}

.guide-body h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 28px 0 12px;
  color: var(--navy);
}

.guide-body p { margin-bottom: 20px; }

.guide-body ul, .guide-body ol {
  padding-left: 24px;
  margin-bottom: 24px;
  list-style: disc;
}

.guide-body ul li, .guide-body ol li {
  margin-bottom: 10px;
  padding-left: 4px;
}

.guide-body ul li::marker { color: var(--orange); }

.guide-body a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(255, 107, 53, 0.3);
  text-underline-offset: 4px;
}

.guide-body a:hover {
  color: var(--orange-dark);
  text-decoration-color: var(--orange-dark);
}

/* Callouts */
.guide-callout {
  display: flex;
  gap: 18px;
  padding: 24px 28px;
  border-radius: var(--radius-md);
  margin: 32px 0;
  align-items: flex-start;
}

.callout-primary {
  background: var(--paper);
  border-left: 4px solid var(--orange);
}

.callout-mark {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--orange);
  color: white;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
}

.callout-text strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
}

.warning-box {
  padding: 24px 28px;
  background: #fef2f2;
  border-left: 4px solid #dc2626;
  border-radius: var(--radius-md);
  margin: 32px 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.warning-mark {
  flex-shrink: 0;
  font-size: 1.4rem;
  color: #dc2626;
}

.warning-text strong {
  display: block;
  color: #991b1b;
  margin-bottom: 4px;
}

.tip-box {
  padding: 24px 28px;
  background: #ecfdf5;
  border-left: 4px solid #10b981;
  border-radius: var(--radius-md);
  margin: 32px 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.tip-mark {
  flex-shrink: 0;
  font-size: 1.4rem;
  color: #10b981;
}

.tip-text strong {
  display: block;
  color: #065f46;
  margin-bottom: 4px;
}

.guide-checklist {
  padding: 32px;
  background: var(--navy);
  color: white;
  border-radius: var(--radius-md);
  margin: 36px 0;
  border-left: 4px solid var(--orange);
}

.guide-checklist h4 {
  color: var(--orange);
  margin-top: 0;
  margin-bottom: 20px;
  font-family: var(--display);
  font-size: 1.2rem;
}

.guide-checklist ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px;
}

.guide-checklist ul li {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

/* Comparison */
.guide-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}

.compare-col {
  padding: 28px;
  background: var(--paper);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  border-top: 4px solid var(--orange);
}

.compare-col h4 {
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--navy);
}

.compare-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compare-col ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 0.95rem;
}

.compare-col ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}

/* Stats row */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 36px 0;
}

.stat-block {
  padding: 28px;
  background: var(--paper);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.3s;
}

.stat-block:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}

.stat-num-lg {
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label-sm {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  font-family: var(--mono);
}

/* Data tables */
.guide-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #e5e7eb;
  font-size: 0.95rem;
}

.guide-table thead {
  background: var(--navy);
  color: white;
}

.guide-table th {
  padding: 16px 18px;
  text-align: left;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.guide-table td {
  padding: 14px 18px;
  border-top: 1px solid #e5e7eb;
  color: #374151;
}

.guide-table tbody tr:hover {
  background: var(--paper);
}

/* Quote */
.guide-quote {
  margin: 48px 0;
  padding: 48px 40px;
  background: var(--navy);
  color: white;
  border-radius: var(--radius-md);
  text-align: center;
  position: relative;
  border-left: 4px solid var(--orange);
}

.guide-quote::before {
  content: '"';
  position: absolute;
  top: -20px; left: 30px;
  font-family: var(--display);
  font-size: 7rem;
  color: var(--orange);
  line-height: 1;
  opacity: 0.3;
}

.guide-quote blockquote {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.guide-quote cite {
  display: block;
  font-style: normal;
  color: var(--orange-hot);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* Guide CTA */
.guide-cta {
  margin-top: 60px;
  padding: 48px;
  background: var(--gradient-fire);
  border-radius: var(--radius-md);
  text-align: center;
  color: white;
  box-shadow: var(--shadow-orange);
}

.guide-cta h3 {
  color: white;
  font-family: var(--display);
  font-size: 1.8rem;
  margin-top: 0;
  margin-bottom: 12px;
}

.guide-cta p {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.guide-cta .btn {
  background: white;
  color: var(--orange-dark);
}

.guide-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

/* ============================================
   FAQ
============================================ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: var(--orange);
}

.faq-item[open] {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--navy);
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-toggle {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.faq-item[open] .faq-toggle {
  background: var(--orange);
  color: white;
  transform: rotate(45deg);
}

.faq-body {
  padding: 0 24px 22px;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials {
  background: var(--paper);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 32px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  position: relative;
  transition: all 0.4s;
  border-top: 4px solid var(--orange);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.t-rating {
  color: var(--orange);
  font-size: 1.1rem;
  margin-bottom: 18px;
  letter-spacing: 3px;
}

.t-text {
  color: #374151;
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 0.97rem;
}

.t-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.t-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-family: var(--display);
  flex-shrink: 0;
}

.ta-1 { background: var(--gradient-fire); }
.ta-2 { background: var(--gradient-steel); }
.ta-3 { background: var(--gradient-night); border: 2px solid var(--orange); }

.t-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}

.t-loc {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ============================================
   CONTACT
============================================ */
.contact {
  background: var(--navy);
  color: white;
}

.contact .section-head h2 { color: white; }
.contact .section-head p { color: rgba(255, 255, 255, 0.7); }

.contact-shell {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-info {
  padding: 48px 40px;
  background: var(--navy-deep);
  color: white;
  position: relative;
}

.contact-info::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(255, 107, 53, 0.1), transparent 60%);
  pointer-events: none;
}

.contact-info h3 {
  font-family: var(--display);
  font-size: 1.8rem;
  margin-bottom: 32px;
  position: relative;
}

.ci-block {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.ci-key {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--orange-hot);
  font-weight: 700;
  margin-bottom: 6px;
}

.ci-value {
  font-size: 1.05rem;
  color: white;
  display: block;
  font-weight: 500;
}

.ci-value:hover { color: var(--orange); }

.hours-list {
  margin-top: 8px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.hours-open { color: #4ade80; font-weight: 600; }

.contact-buttons {
  display: flex;
  gap: 10px;
  margin-top: 32px;
  flex-wrap: wrap;
  position: relative;
}

.contact-buttons .btn-ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.contact-buttons .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.contact-form {
  padding: 48px 40px;
  color: var(--navy);
}

.contact-form h3 {
  font-family: var(--display);
  font-size: 1.6rem;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--paper);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--navy);
  transition: all 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}

.form-field textarea { resize: vertical; min-height: 110px; }

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a1628' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--navy-deep);
  color: white;
  padding: 80px 0 30px;
  position: relative;
  z-index: 2;
  border-top: 3px solid var(--orange);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer .brand-mark { margin-bottom: 16px; }

.brand-col p {
  color: rgba(255, 255, 255, 0.7);
  margin: 16px 0 24px;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 340px;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-row a {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  transition: all 0.3s;
  font-size: 0.85rem;
}

.social-row a:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--display);
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--orange);
  letter-spacing: 0.5px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a,
.footer-col ul li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  transition: color 0.3s;
}

.footer-col ul li a:hover { color: var(--orange); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  font-family: var(--mono);
}

/* ============================================
   ANIMATIONS
============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 40px 32px;
  }

  .hero-right { min-height: 380px; }
  .sc-1 { left: 10%; }
  .sc-3 { left: 30%; }

  .nav-list, .nav-cta { display: none; }
  .burger { display: flex; }

  .nav-list.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy);
    padding: 24px;
    gap: 16px;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
  }

  .services-grid { grid-template-columns: 1fr 1fr; }

  .work-grid { grid-template-columns: 1fr 1fr; }
  .work-large { grid-column: span 2; }

  .testimonial-grid { grid-template-columns: 1fr; }

  .contact-shell { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  .hero-footer-bar {
    grid-template-columns: 1fr 1fr;
  }
  .hfb-item:nth-child(2) { border-right: none; }

  .guide-comparison { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  section { padding: 80px 0; }

  .hero { padding: 120px 0 0; }
  .hero-grid { padding: 30px 20px; }

  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .work-large { grid-column: auto; }

  .process-step {
    flex-direction: column;
    gap: 16px;
  }
  .pt-connector { display: none; }

  .contact-info, .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }

  .hero-footer-bar { grid-template-columns: 1fr; }
  .hfb-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .hfb-item:last-child { border-bottom: none; }

  .floating-badge { display: none; }

  .guide-quote { padding: 32px 24px; }
  .guide-cta { padding: 32px 24px; }
}

/* Selection */
::selection {
  background: var(--orange);
  color: white;
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 10px; }