/* ==========================================================================
   CatPate Hosting - Design System & Modern Stylesheet
   Version: 1.0 (2026)
   Theme: High-Tech Dark / Cyberpunk Refined / Developer-First
   ========================================================================== */

/* ----------------- CSS Custom Properties (Design Tokens) ----------------- */
:root {
  --bg-dark-900: #080A0E;
  --bg-dark-800: #0D1117;
  --bg-dark-700: #131722;
  --bg-dark-600: #1C2333;
  --bg-card: rgba(19, 23, 34, 0.75);
  --bg-card-hover: rgba(28, 35, 51, 0.85);

  --accent-pink: #FF4F79;
  --accent-pink-hover: #FF3366;
  --accent-pink-glow: rgba(255, 79, 121, 0.35);
  --accent-cyan: #38BDF8;
  --accent-cyan-glow: rgba(56, 189, 248, 0.3);
  --accent-green: #10B981;
  --accent-purple: #A855F7;

  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --text-inverse: #080A0E;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(255, 79, 121, 0.6);
  --border-card: rgba(255, 255, 255, 0.1);

  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 25px var(--accent-pink-glow);

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ----------------- Reset & Global Rules ----------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark-900);
  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: 40px 40px;
  background-position: center center;
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

/* Background Atmosphere Glows */
body::before {
  content: '';
  position: fixed;
  top: -20%;
  left: 15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 79, 121, 0.1) 0%, rgba(8, 10, 14, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  bottom: 5%;
  right: 5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.07) 0%, rgba(8, 10, 14, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

/* Technical Vector Icons & Glyphs */
.tech-icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tech-bullet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: rgba(255, 79, 121, 0.12);
  border: 1px solid rgba(255, 79, 121, 0.3);
  color: var(--accent-pink);
  font-size: 0.65rem;
  font-family: var(--font-mono);
  font-weight: 700;
  margin-top: 3px;
  flex-shrink: 0;
}

.tech-tag-mono {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ----------------- Header & Navbar ----------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 10, 14, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo-icon {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(255, 79, 121, 0.45));
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.brand-logo:hover .brand-logo-icon {
  transform: scale(1.08) rotate(-2deg);
}

.brand-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-primary);
}

.brand-title .brand-highlight {
  color: var(--accent-pink);
}

.brand-descriptor-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--accent-cyan);
  text-transform: uppercase;
  margin-top: 3px;
}

.brand-logo img,
.brand-logo-img {
  height: 40px;
  width: auto;
  max-width: 175px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(255, 79, 121, 0.35));
  transition: transform var(--transition-fast);
}

.brand-logo:hover img,
.brand-logo:hover .brand-logo-img {
  transform: scale(1.03);
}

.footer-descriptor {
  margin-top: 14px;
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.4;
}

.footer-descriptor em {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--accent-pink);
  font-style: normal;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.3vw, 20px);
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-pink);
  transition: width var(--transition-fast);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.25rem;
}

/* ----------------- Buttons & UI Elements ----------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-pink), #FF2A5B);
  color: #FFFFFF;
  box-shadow: 0 4px 18px var(--accent-pink-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FF668B, var(--accent-pink));
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 79, 121, 0.5);
}

.btn-secondary {
  background: var(--bg-dark-700);
  color: var(--text-primary);
  border-color: var(--border-subtle);
}

.btn-secondary:hover {
  background: var(--bg-dark-600);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-cpanel {
  background: rgba(255, 108, 47, 0.12);
  color: #FF7B42;
  border-color: rgba(255, 108, 47, 0.3);
}

.btn-cpanel:hover {
  background: rgba(255, 108, 47, 0.22);
  border-color: #FF7B42;
}

.btn-sm {
  padding: 8px 14px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-block {
  width: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}

.badge-pink {
  background: rgba(255, 79, 121, 0.15);
  border-color: rgba(255, 79, 121, 0.35);
  color: var(--accent-pink);
}

.badge-cyan {
  background: rgba(56, 189, 248, 0.15);
  border-color: rgba(56, 189, 248, 0.35);
  color: var(--accent-cyan);
}

.badge-green {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.35);
  color: var(--accent-green);
}

/* ----------------- Hero Section ----------------- */
.hero-section {
  padding: 80px 0 60px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: start;
}

.hero-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.hero-title {
  font-size: 3.25rem;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

/* ----------------- Studio Operations & Identity HUD Deck ----------------- */
.hero-hud-deck {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  width: 100%;
}

.studio-brand-hud-card {
  background: radial-gradient(circle at 50% 35%, rgba(255, 79, 121, 0.08) 0%, rgba(13, 17, 23, 0.85) 75%), var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 24px 28px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 42px -10px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 79, 121, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.studio-brand-hud-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-pink), var(--accent-cyan));
}

.studio-hud-logo-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 26px rgba(255, 79, 121, 0.45)) drop-shadow(0 2px 10px rgba(56, 189, 248, 0.35));
  transition: transform var(--transition-fast);
}

.studio-brand-hud-card:hover .studio-hud-logo-img {
  transform: scale(1.02);
}

.studio-hud-status-bar {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
}

.studio-hud-status-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.studio-hud-status-item .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 8px var(--accent-green);
}

.studio-hud-status-item .hud-tag-pink {
  color: var(--accent-pink);
}

.studio-hud-status-item .hud-tag-cyan {
  color: var(--accent-cyan);
}

/* ----------------- Hero Terminal & Watermark Glow ----------------- */
.hero-terminal-wrap {
  position: relative;
  width: 100%;
}

.hero-watermark-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.20;
  filter: drop-shadow(0 0 50px rgba(255, 79, 121, 0.5));
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-watermark-glow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: watermark-pulse 8s ease-in-out infinite alternate;
}

@keyframes watermark-pulse {
  0% { transform: scale(0.96); opacity: 0.16; }
  100% { transform: scale(1.04); opacity: 0.25; }
}

.hero-terminal-wrap .terminal-window {
  position: relative;
  z-index: 1;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #FFFFFF 30%, var(--accent-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.highlight-item i {
  color: var(--accent-green);
  font-size: 1.1rem;
}

/* ----------------- Terminal Window Emulator ----------------- */
.terminal-window {
  background: var(--bg-dark-800);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card), 0 0 35px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  font-family: var(--font-mono);
  position: relative;
}

.terminal-header {
  background: var(--bg-dark-700);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
}

.terminal-dots {
  display: flex;
  gap: 8px;
}

.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.terminal-dot.dot-red { background: #FF5F56; }
.terminal-dot.dot-yellow { background: #FFBD2E; }
.terminal-dot.dot-green { background: #27C93F; }

.terminal-title {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.terminal-body {
  padding: 24px;
  font-size: 0.88rem;
  line-height: 1.7;
  color: #E2E8F0;
  max-height: 380px;
  overflow-y: auto;
}

.terminal-line {
  margin-bottom: 8px;
  display: flex;
  gap: 10px;
}

.term-prompt {
  color: var(--accent-pink);
  user-select: none;
}

.term-cmd {
  color: #FFFFFF;
  font-weight: 600;
}

.term-success {
  color: var(--accent-green);
}

.term-info {
  color: var(--accent-cyan);
}

.term-muted {
  color: var(--text-muted);
}

/* ----------------- Section Commons ----------------- */
.section-py {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.section-tag {
  margin-bottom: 14px;
}

.section-title {
  font-size: 2.3rem;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

/* ----------------- Cards & Grids ----------------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 79, 121, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 12px 35px -10px rgba(0, 0, 0, 0.6), var(--shadow-glow);
}

.feature-icon-box {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: rgba(255, 79, 121, 0.1);
  border: 1px solid rgba(255, 79, 121, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-pink);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.feature-card.cyan .feature-icon-box {
  background: rgba(56, 189, 248, 0.1);
  border-color: rgba(56, 189, 248, 0.25);
  color: var(--accent-cyan);
}

.feature-card.green .feature-icon-box {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.25);
  color: var(--accent-green);
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* ----------------- Pricing Switcher & Cards ----------------- */
.billing-switcher-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 44px;
}

.billing-label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  user-select: none;
}

.billing-label.active {
  color: var(--text-primary);
  font-weight: 600;
}

.switch {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 30px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: var(--bg-dark-600);
  border: 1px solid var(--border-card);
  transition: .3s;
  border-radius: var(--radius-full);
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--accent-pink);
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
  backdrop-filter: blur(12px);
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.popular {
  border-color: var(--accent-pink);
  background: linear-gradient(180deg, rgba(255, 79, 121, 0.08) 0%, rgba(19, 23, 34, 0.85) 100%);
  box-shadow: 0 10px 35px -10px rgba(255, 79, 121, 0.35);
}

.popular-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-pink);
  color: white;
  padding: 4px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-header {
  margin-bottom: 24px;
}

.plan-name {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.plan-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  min-height: 42px;
}

.plan-price-wrap {
  margin: 20px 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.plan-currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.plan-amount {
  font-size: 2.8rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.plan-cycle {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.plan-saving-badge {
  font-size: 0.8rem;
  color: var(--accent-pink);
  background: rgba(255, 79, 121, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 79, 121, 0.2);
}

.plan-features-list {
  list-style: none;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
}

.plan-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.plan-features-list li i {
  color: var(--accent-pink);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ----------------- Consulting Services Section ----------------- */
.consulting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.consulting-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.consulting-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), var(--accent-cyan-glow);
}

.consulting-card.popular {
  border-color: var(--accent-cyan);
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.08) 0%, rgba(19, 23, 34, 0.85) 100%);
}

.consulting-price-tag {
  font-size: 1.8rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent-cyan);
  margin: 12px 0 4px;
}

.consulting-type {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

/* ----------------- Quick Deploy 3-Steps ----------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.step-card {
  background: var(--bg-dark-800);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-dark-700);
  border: 2px solid var(--accent-pink);
  color: var(--accent-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* ----------------- Interactive Plan Recommender (Wizard) ----------------- */
.recommender-box {
  background: linear-gradient(135deg, rgba(19, 23, 34, 0.9), rgba(13, 17, 23, 0.95));
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
  margin-top: 40px;
}

.wizard-questions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.wizard-field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.wizard-select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-dark-700);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  cursor: pointer;
  transition: border-color var(--transition-fast);
}

.wizard-select:focus {
  border-color: var(--accent-pink);
}

.wizard-result {
  background: rgba(255, 79, 121, 0.08);
  border: 1px dashed var(--accent-pink);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.wizard-result-text h4 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.wizard-result-text p {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

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

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: rgba(255, 79, 121, 0.4);
}

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

.faq-icon {
  font-size: 1.25rem;
  color: var(--accent-pink);
  transition: transform var(--transition-fast);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 24px;
}

.faq-answer-inner {
  padding-bottom: 22px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ----------------- CTA Section ----------------- */
.cta-box {
  background: radial-gradient(circle at center, rgba(255, 79, 121, 0.15) 0%, rgba(19, 23, 34, 0.95) 75%);
  border: 1px solid rgba(255, 79, 121, 0.3);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(255, 79, 121, 0.15);
}

.cta-box h2 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.cta-box p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 32px;
}

/* ----------------- Forms & Inputs ----------------- */
.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 13px 18px;
  background: var(--bg-dark-700);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent-pink);
  box-shadow: 0 0 0 3px rgba(255, 79, 121, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

/* ----------------- Tables ----------------- */
.table-responsive {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
  background: var(--bg-card);
}

.specs-table th, .specs-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.specs-table th {
  background: var(--bg-dark-700);
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-primary);
}

.specs-table tr:last-child td {
  border-bottom: none;
}

.specs-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

/* ----------------- Footer ----------------- */
.site-footer {
  background: var(--bg-dark-800);
  border-top: 1px solid var(--border-subtle);
  padding: 70px 0 30px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 320px;
}

.footer-title {
  font-size: 1rem;
  font-family: var(--font-heading);
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.footer-links a:hover {
  color: var(--accent-pink);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 8px var(--accent-green);
}

/* ----------------- Responsive Media Queries ----------------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .grid-3, .consulting-grid, .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .wizard-questions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar {
    height: 70px;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-dark-800);
    border-bottom: 1px solid var(--border-subtle);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .nav-actions .btn-cpanel {
    display: none;
  }

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

  .section-title {
    font-size: 1.85rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}

/* =====================================================
   ESTILOS DE CONSULTORÍA & SOPORTE DEV
   ===================================================== */
.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  padding: 10px 16px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* Workflow en 4 Fases */
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.workflow-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.workflow-step-card:hover {
  border-color: rgba(255, 79, 121, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.step-badge {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-pink);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.step-title {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.step-meta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent-cyan);
  border-top: 1px solid var(--border-subtle);
  padding-top: 12px;
}

/* Calculadora Interactiva */
.calc-container {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  margin-top: 36px;
  align-items: start;
}

.calc-form {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.calc-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calc-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.calc-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.calc-options-grid-2 {
  grid-template-columns: 1fr 1fr;
}

.calc-opt-btn {
  background: var(--bg-dark-800);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all var(--transition-fast);
  color: var(--text-primary);
}

.calc-opt-btn:hover {
  border-color: rgba(56, 189, 248, 0.4);
  background: rgba(56, 189, 248, 0.05);
}

.calc-opt-btn.active {
  border-color: var(--accent-pink);
  background: rgba(255, 79, 121, 0.08);
  box-shadow: 0 0 16px rgba(255, 79, 121, 0.15);
}

.calc-opt-btn .opt-name {
  font-size: 0.92rem;
  font-weight: 600;
}

.calc-opt-btn .opt-price {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-pink);
}

.calc-opt-btn .opt-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

.calc-tag-btn {
  background: var(--bg-dark-800);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
  user-select: none;
  transition: all var(--transition-fast);
}

.calc-tag-btn:hover {
  border-color: var(--accent-cyan);
  color: var(--text-primary);
}

.calc-tag-btn.active {
  background: rgba(56, 189, 248, 0.12);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  font-weight: 600;
}

/* Tarjeta Resumen de Calculadora */
.calc-summary-card {
  background: var(--bg-dark-800);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-card);
}

.summary-header {
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 18px;
  margin-bottom: 20px;
}

.summary-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.summary-key {
  color: var(--text-secondary);
}

.summary-val {
  font-weight: 600;
  color: var(--text-primary);
  text-align: right;
  max-width: 60%;
}

.summary-total-box {
  background: rgba(0, 0, 0, 0.35);
  border: 1px dashed var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.total-label {
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.total-amount {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--accent-pink);
}

/* Caja de Garantía */
.guarantee-box {
  background: var(--bg-card);
  border: 1px solid rgba(255, 79, 121, 0.3);
  border-radius: var(--radius-lg);
  padding: 34px 38px;
  display: flex;
  align-items: center;
  gap: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.guarantee-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 79, 121, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-pink);
  border: 1px solid rgba(255, 79, 121, 0.3);
}

@media (max-width: 992px) {
  .stats-bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .calc-container {
    grid-template-columns: 1fr;
  }

  .calc-summary-card {
    position: static;
  }
}

@media (max-width: 600px) {
  .stats-bar-grid {
    grid-template-columns: 1fr;
  }

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

  .calc-options-grid {
    grid-template-columns: 1fr;
  }

  .guarantee-box {
    flex-direction: column;
    text-align: center;
    padding: 26px 20px;
  }
}

/* =====================================================
   PÁGINAS DE ERROR (404 & 500)
   ===================================================== */
.error-page-section {
  padding: 100px 0 120px;
  background: radial-gradient(circle at 50% 30%, rgba(255, 79, 121, 0.08) 0%, transparent 70%);
  min-height: calc(100vh - 280px);
  display: flex;
  align-items: center;
}

.error-code-display {
  font-family: var(--font-heading);
  font-size: clamp(5.5rem, 16vw, 10rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -4px;
  background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  user-select: none;
}

.error-code-display.error-code-red {
  background: linear-gradient(135deg, #EF4444 0%, var(--accent-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =====================================================
   CREATIVE TECHNOLOGY STUDIO - REFACTOR COMPONENTS (2026)
   ===================================================== */

/* ----------------- Hero Sub-Pills ----------------- */
.hero-pillars-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 28px;
}

.hero-pillar-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(19, 23, 34, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.hero-pillar-tag:hover {
  border-color: var(--accent-pink);
  color: var(--text-primary);
  transform: translateY(-1px);
}

.hero-pillar-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-pink);
}

/* ----------------- Section 02: Studio Showcase & 5 Pillars ----------------- */
.studio-showcase-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 38px 42px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 45px -15px rgba(0, 0, 0, 0.7);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: stretch;
}

.studio-showcase-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-pink), var(--accent-cyan), var(--accent-green));
}

.studio-showcase-insignia {
  background: radial-gradient(circle at 50% 35%, rgba(255, 79, 121, 0.09) 0%, rgba(8, 10, 14, 0.95) 75%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
  height: 100%;
}

.studio-showcase-logo {
  width: 100%;
  max-width: 290px;
  max-height: 440px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(255, 79, 121, 0.35)) drop-shadow(0 2px 10px rgba(56, 189, 248, 0.25));
  transition: transform var(--transition-fast);
  margin: auto 0;
}

.studio-showcase-insignia:hover .studio-showcase-logo {
  transform: scale(1.02);
}

.studio-showcase-meta {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--text-secondary);
}

.studio-showcase-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.studio-showcase-title {
  font-size: 1.85rem;
  line-height: 1.28;
  letter-spacing: -0.5px;
  color: var(--text-primary);
}

.studio-showcase-desc {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.studio-methodology-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 6px;
}

.studio-methodology-chip {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.studio-methodology-chip strong {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.5px;
}

.studio-methodology-chip.chip-pink strong { color: var(--accent-pink); }
.studio-methodology-chip.chip-cyan strong { color: var(--accent-cyan); }
.studio-methodology-chip.chip-green strong { color: var(--accent-green); }
.studio-methodology-chip.chip-purple strong { color: var(--accent-purple); }

.studio-methodology-chip span {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 992px) {
  .studio-showcase-panel {
    grid-template-columns: 1fr;
    padding: 28px 20px;
    gap: 28px;
  }
  .studio-methodology-grid {
    grid-template-columns: 1fr;
  }
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillars-grid > :nth-child(4),
.pillars-grid > :nth-child(5) {
  /* Nicely balanced 3 top, 2 bottom centered or full */
}

@media (min-width: 993px) {
  .pillars-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .pillars-grid > :nth-child(1),
  .pillars-grid > :nth-child(2),
  .pillars-grid > :nth-child(3) {
    grid-column: span 2;
  }
  .pillars-grid > :nth-child(4) {
    grid-column: 2 / span 2;
  }
  .pillars-grid > :nth-child(5) {
    grid-column: 4 / span 2;
  }
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
  transition: all var(--transition-fast);
}

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

.pillar-card:hover::before {
  background: linear-gradient(90deg, var(--accent-pink), var(--accent-cyan));
}

.pillar-tag-mono {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: block;
}

.pillar-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(255, 79, 121, 0.1);
  border: 1px solid rgba(255, 79, 121, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-pink);
  margin-bottom: 20px;
  transition: all var(--transition-fast);
}

.pillar-card:nth-child(2) .pillar-icon-box {
  background: rgba(56, 189, 248, 0.1);
  border-color: rgba(56, 189, 248, 0.25);
  color: var(--accent-cyan);
}

.pillar-card:nth-child(3) .pillar-icon-box {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.25);
  color: var(--accent-green);
}

.pillar-card:nth-child(4) .pillar-icon-box {
  background: rgba(168, 85, 247, 0.1);
  border-color: rgba(168, 85, 247, 0.25);
  color: var(--accent-purple);
}

.pillar-card:nth-child(5) .pillar-icon-box {
  background: rgba(255, 123, 66, 0.1);
  border-color: rgba(255, 123, 66, 0.25);
  color: #FF7B42;
}

.pillar-card:hover .pillar-icon-box {
  transform: scale(1.08);
}

.pillar-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.pillar-desc {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.pillar-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-pink);
  transition: gap var(--transition-fast);
}

.pillar-card:nth-child(2) .pillar-link { color: var(--accent-cyan); }
.pillar-card:nth-child(3) .pillar-link { color: var(--accent-green); }
.pillar-card:nth-child(4) .pillar-link { color: var(--accent-purple); }
.pillar-card:nth-child(5) .pillar-link { color: #FF7B42; }

.pillar-link:hover {
  gap: 10px;
}

/* ----------------- Technical SEO & Cybersecurity Grids ----------------- */
.tech-spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.tech-spec-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.tech-spec-card:hover {
  border-color: var(--border-card);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.tech-spec-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}

.tech-spec-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-cyan);
}

.tech-spec-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
}

.tech-spec-body {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.tech-spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.spec-chip {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
}

/* ----------------- Section 06: Digital Audits Grid ----------------- */
.audits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 24px;
}

.audit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.audit-card:hover {
  border-color: rgba(168, 85, 247, 0.4);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px -10px rgba(168, 85, 247, 0.2);
}

.audit-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-purple);
  margin-bottom: 12px;
  display: inline-block;
}

.audit-deliverables {
  list-style: none;
  margin: 18px 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.audit-deliverables li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.audit-deliverables li span.tech-bullet {
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(168, 85, 247, 0.3);
  color: var(--accent-purple);
}

/* ----------------- Section 07: Technical Support ----------------- */
.support-tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.support-tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.support-tier-card.featured {
  border-color: rgba(255, 123, 66, 0.4);
  box-shadow: 0 8px 30px -10px rgba(255, 123, 66, 0.2);
}

.support-tier-price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 14px 0 6px;
}

.support-tier-cycle {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-bottom: 20px;
}

/* ----------------- Section 08: Interactive Operations Console ----------------- */
.ops-console-wrap {
  background: var(--bg-dark-800);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.7);
}

.ops-console-header {
  background: var(--bg-dark-700);
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.ops-cmd-tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.ops-tab-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  padding: 6px 14px;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.ops-tab-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
}

.ops-tab-btn.active {
  background: rgba(255, 79, 121, 0.15);
  border-color: var(--accent-pink);
  color: var(--accent-pink);
}

.ops-console-content {
  padding: 24px 28px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  line-height: 1.7;
  min-height: 220px;
}

.ops-pane {
  display: none;
}

.ops-pane.active {
  display: block;
}

.ops-prompt-line {
  color: var(--accent-pink);
  margin-bottom: 8px;
}

.ops-out-info { color: var(--accent-cyan); }
.ops-out-success { color: var(--accent-green); }
.ops-out-muted { color: var(--text-muted); }
.ops-out-accent { color: var(--accent-purple); }

.tech-ecosystem-strip {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.tech-ecosystem-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  background: rgba(19, 23, 34, 0.8);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tech-ecosystem-tag span {
  color: var(--accent-cyan);
}

/* ----------------- Mobile Responsive Adjustments ----------------- */
@media (max-width: 992px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pillars-grid > :nth-child(5) {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .pillars-grid > :nth-child(5) {
    grid-column: span 1;
  }
  .tech-spec-grid,
  .audits-grid,
  .support-tiers-grid {
    grid-template-columns: 1fr;
  }
  .ops-console-header {
    flex-direction: column;
    align-items: flex-start;
  }
}



