/* Brew City Dev — Main Stylesheet v2 */
/* Cream City inspired — Warm industrial meets modern tech */

:root {
  --bg-primary: #0b0e17;
  --bg-secondary: #121826;
  --bg-card: #1a2133;
  --text-primary: #f0f2f5;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --accent-blue: #3b82f6;
  --accent-blue-hover: #60a5fa;
  --accent-amber: #d97706;
  --accent-amber-light: #f59e0b;
  --accent-cream: #f5e6d3;
  --accent-cream-dark: #d4c4b0;
  --border: #1e293b;
  --border-light: #2a3a55;
  --success: #22c55e;
  --navy-deep: #0f172a;
  --lake-blue: #0ea5e9;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

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

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ─── Navigation ─── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(11, 14, 23, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  padding: 0 2rem;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--accent-amber), var(--accent-amber-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--bg-primary);
  font-weight: 900;
}

.logo span.cream { color: var(--accent-cream); }
.logo span.amber { color: var(--accent-amber-light); }

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-amber);
  transition: width 0.2s;
}

.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--accent-amber), var(--accent-amber-light)) !important;
  color: var(--bg-primary) !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  transition: all 0.3s !important;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { 
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 25px rgba(217, 119, 6, 0.4) !important;
}

/* ─── Hero Video Background ─── */
.hero-video-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.5;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, rgba(11, 14, 23, 0.7) 0%, rgba(11, 14, 23, 0.85) 50%, rgba(11, 14, 23, 1) 100%);
  z-index: 1;
}

/* ─── Hero Section ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

/* Cream City Sunset Gradient Background */
.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(217, 119, 6, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 30% 20%, rgba(14, 165, 233, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 70% 30%, rgba(245, 230, 211, 0.03) 0%, transparent 40%),
    linear-gradient(180deg, var(--bg-primary) 0%, var(--navy-deep) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Floating particles / "hops" */
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--accent-amber);
  border-radius: 50%;
  opacity: 0;
  animation: float 8s infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; animation-delay: 1.5s; width: 4px; height: 4px; }
.particle:nth-child(3) { left: 45%; animation-delay: 3s; width: 8px; height: 8px; opacity: 0.1; }
.particle:nth-child(4) { left: 65%; animation-delay: 0.8s; }
.particle:nth-child(5) { left: 80%; animation-delay: 2.5s; width: 5px; height: 5px; }
.particle:nth-child(6) { left: 35%; animation-delay: 4s; width: 3px; height: 3px; }
.particle:nth-child(7) { left: 55%; animation-delay: 1.2s; }
.particle:nth-child(8) { left: 90%; animation-delay: 3.5s; width: 4px; height: 4px; }
.particle:nth-child(9) { left: 15%; animation-delay: 5s; width: 7px; height: 7px; opacity: 0.08; }
.particle:nth-child(10) { left: 72%; animation-delay: 2s; }

@keyframes float {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.3; }
  50% { opacity: 0.15; }
  90% { opacity: 0.05; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

/* Milwaukee Skyline SVG Silhouette */
.skyline-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.12;
}

.skyline-svg {
  width: 100%;
  height: 100%;
}

/* Grid overlay */
.hero-grid {
  position: absolute;
  inset: 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;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
}

.hero-content {
  max-width: 850px;
  position: relative;
  z-index: 1;
}

/* Made in Milwaukee badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(217, 119, 6, 0.1);
  color: var(--accent-amber-light);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  border: 1px solid rgba(217, 119, 6, 0.2);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-amber);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero h1 .highlight-amber {
  background: linear-gradient(135deg, var(--accent-amber-light), var(--accent-amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 .highlight-blue {
  background: linear-gradient(135deg, var(--accent-blue), var(--lake-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn {
  padding: 0.9rem 2.25rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  border: none;
  font-family: var(--font-sans);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-amber), var(--accent-amber-light));
  color: var(--bg-primary);
  box-shadow: 0 4px 25px rgba(217, 119, 6, 0.3);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(217, 119, 6, 0.4);
}

.btn-secondary {
  background: rgba(255,255,255,0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  border-color: var(--accent-amber);
  background: rgba(217, 119, 6, 0.08);
  transform: translateY(-3px);
}

/* ─── Section Styles ─── */
.section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-amber-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent-amber);
  opacity: 0.5;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section h2 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -1.5px;
  line-height: 1.15;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.7;
}

/* ─── Services Grid ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.25rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-amber), var(--accent-amber-light), var(--accent-blue));
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  border-color: rgba(217, 119, 6, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.12), rgba(217, 119, 6, 0.05));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(217, 119, 6, 0.1);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  margin: 1rem 0 1.25rem;
}

.feature-list li {
  padding: 0.35rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-list li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
}

.service-card .price-tag {
  display: inline-block;
  margin-top: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent-amber-light);
  background: rgba(217, 119, 6, 0.1);
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
}

/* ─── Trust Grid ─── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s;
  text-align: center;
}

.trust-card:hover {
  border-color: rgba(217, 119, 6, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.trust-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.trust-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.trust-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ─── About Section ─── */
.about-wrapper {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.about-text .lead {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 500;
  border-left: 3px solid var(--accent-amber);
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.stat-card:hover {
  border-color: rgba(217, 119, 6, 0.2);
  transform: translateY(-3px);
}

.stat-number {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-amber-light), var(--accent-amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-top: 0.35rem;
}

/* ─── Local Roots Banner ─── */
.local-banner {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.05), rgba(14, 165, 233, 0.05));
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.local-banner span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.local-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(217, 119, 6, 0.1);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--accent-amber-light);
  font-weight: 500;
}

/* ─── Contact Section ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-intro {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-item .icon-box {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-item .label {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.9rem;
}

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1.1rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-amber);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* ─── Footer ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
  background: var(--bg-secondary);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-tagline {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-amber-light);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

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

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  list-style: none;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

/* ─── Menu Toggle ─── */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* ─── Page Header (subpages) ─── */
.page-header {
  padding: 10rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 400px;
  background: 
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(217, 119, 6, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 30% 20%, rgba(14, 165, 233, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.page-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ─── Service Detail Cards ─── */
.service-detail {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.service-detail:hover {
  border-color: rgba(217, 119, 6, 0.2);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.service-detail h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.service-detail .best-for {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--accent-amber-light);
  background: rgba(217, 119, 6, 0.1);
  padding: 0.3rem 0.85rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.service-detail p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-detail ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.service-detail ul li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.service-detail ul li::before {
  content: '→';
  color: var(--accent-amber-light);
  font-family: var(--font-mono);
  font-weight: 700;
}

/* ─── CISSP Badge Section ─── */
.cissp-section {
    padding-top: 1rem;
}
.cissp-badge {
    display: inline-block;
    background: var(--bg-card);
    border: 1px solid var(--accent-amber);
    border-radius: 12px;
    padding: 2.5rem 3rem;
    margin-top: 1rem;
    max-width: 520px;
}
.cissp-badge .badge-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}
.cissp-badge .badge-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--accent-amber-light);
    letter-spacing: 0.02em;
}
.cissp-badge .badge-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ─── Pricing Cards ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border-color: var(--accent-amber);
  box-shadow: 0 0 40px rgba(217, 119, 6, 0.1), 0 8px 30px rgba(0,0,0,0.2);
  transform: scale(1.03);
}

.pricing-card.featured::before {
  content: '★ Most Popular';
  position: absolute;
  top: 12px;
  right: -30px;
  background: linear-gradient(135deg, var(--accent-amber), var(--accent-amber-light));
  color: var(--bg-primary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 2.5rem;
  transform: rotate(45deg);
  letter-spacing: 1px;
}

.pricing-card h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.pricing-card .price {
  font-family: var(--font-mono);
  font-size: 2.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-amber-light), var(--accent-amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.pricing-card .price-sub {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 1.5rem;
  text-align: left;
  display: inline-block;
}

.pricing-card ul li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.pricing-card ul li::before {
  content: '✓ ';
  color: var(--success);
  font-weight: 700;
}

/* ─── Service Area ─── */
.service-area {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0.3rem;
  transition: all 0.2s;
}

.service-area:hover {
  border-color: var(--accent-amber);
  color: var(--accent-amber-light);
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .about-content { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail ul { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(11, 14, 23, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem;
    gap: 1.25rem;
  }
  .hero h1 { font-size: 2.35rem; letter-spacing: -1px; }
  .hero p { font-size: 1rem; }
  .section { padding: 4rem 1.5rem; }
  .section h2 { font-size: 1.75rem; }
  .page-header h1 { font-size: 2rem; }
  .pricing-card.featured { transform: none; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.85rem; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}