/* ==========================================================================
   Prowl Cybersecurity — style.css
   Design system for prowlsec.com (dark-themed cybersecurity marketing site)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Reset & Base
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&display=swap');

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: #060a14;
  color: #e2e8f0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   2. Nav
   -------------------------------------------------------------------------- */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 64px;
  background: rgba(6, 10, 20, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  height: 80px;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 16px;
  color: #d1d5db;
  align-items: center;
  letter-spacing: 0.5px;
}

.nav-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a.active {
  color: #fff;
}

.nav-phone {
  font-size: 15px;
  color: #94a3b8;
  letter-spacing: 0.5px;
}

.nav-phone strong {
  color: #dc2626;
}

.nav-cta {
  background: #dc2626;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.2s;
}

.nav-cta:hover {
  background: #ef4444;
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #d1d5db;
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  font-size: 24px;
  color: #d1d5db;
  line-height: 1;
}

/* --------------------------------------------------------------------------
   3. Buttons
   -------------------------------------------------------------------------- */
.btn-primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #fff !important;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 0 24px rgba(220, 38, 38, 0.3);
  text-decoration: none !important;
  transition: all 0.2s;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  box-shadow: 0 0 32px rgba(220, 38, 38, 0.5);
  transform: translateY(-1px);
}

.btn-secondary {
  border: 1px solid #374151;
  color: #d1d5db;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
  background: transparent;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: #6b7280;
  color: #fff;
}

/* --------------------------------------------------------------------------
   4. Hero
   -------------------------------------------------------------------------- */
.hero {
  padding: 80px 64px 72px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0a0e1a 0%, #110a18 40%, #0f172a 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-watermark {
  position: absolute;
  right: -40px;
  top: -40px;
  width: 380px;
  height: 380px;
  opacity: 0.03;
}

.hero-watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(2);
}

.hero-glow {
  position: absolute;
  right: 80px;
  top: 40px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.08), transparent 60%);
}

.hero-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 380px;
}

.hero-text {
  max-width: 480px;
  flex-shrink: 0;
}

.hero-badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #dc2626;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-headline {
  font-size: 48px;
  font-weight: 900;
  color: #f8fafc;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero-headline .red {
  color: #dc2626;
}

.hero-terminal {
  margin-top: 24px;
}

.hero-terminal span {
  font-family: 'JetBrains Mono', 'Courier New', Courier, monospace;
  font-size: 20px;
  font-weight: 700;
  color: #dc2626;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: rgba(220, 38, 38, 0.08);
  padding: 10px 18px;
  border-left: 3px solid #dc2626;
  display: inline-block;
  white-space: nowrap;
  min-width: 18px;
}

.hero-terminal span::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 0.9em;
  background: #dc2626;
  margin-left: 6px;
  vertical-align: middle;
  opacity: 1;
}

.hero-terminal span.cursor-off::after {
  opacity: 0;
}

.hero-terminal span.cursor-hidden::after {
  content: none;
}

.hero-terminal span.cursor-blink::after {
  animation: cursorBlink 0.6s step-end infinite;
}

@keyframes cursorBlink {
  50% { opacity: 0; }
}

.hero-sub {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.8;
  margin-top: 24px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-top: 32px;
}

/* --------------------------------------------------------------------------
   5. Hero Stats
   -------------------------------------------------------------------------- */
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 200px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: border-color 0.2s;
}

.stat-card:hover {
  border-color: rgba(220, 38, 38, 0.2);
}

.stat-number {
  font-size: 40px;
  font-weight: 900;
  color: #dc2626;
}

.stat-label {
  font-size: 13px;
  color: #6b7280;
  margin-top: 6px;
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   6. Chevrons
   -------------------------------------------------------------------------- */
.chevron-row {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0;
  z-index: 10;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.chevron-row.visible {
  opacity: 1;
}

.chevron-row.fade-out {
  opacity: 0;
}

.chevron {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 12px solid #dc2626;
  opacity: 0;
  transform: translateX(-8px);
}

.chevron-row.animate .chevron {
  animation: chevronPulse 0.8s ease forwards;
}

.chevron:nth-child(1) { animation-delay: 0s; }
.chevron:nth-child(2) { animation-delay: 0.12s; }
.chevron:nth-child(3) { animation-delay: 0.24s; }
.chevron:nth-child(4) { animation-delay: 0.36s; }
.chevron:nth-child(5) { animation-delay: 0.48s; }

@keyframes chevronPulse {
  0%  { opacity: 0;    transform: translateX(-8px); }
  30% { opacity: 0.9;  transform: translateX(0); }
  60% { opacity: 0.6; }
  100%{ opacity: 0.15; transform: translateX(4px); }
}

/* --------------------------------------------------------------------------
   7. Terminal
   -------------------------------------------------------------------------- */
.term-window {
  position: absolute;
  width: 480px;
  background: #0c0c0c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  height: 0;
  opacity: 0;
  z-index: 8;
  transition:
    height 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
}

.term-window.visible {
  height: 220px;
  opacity: 1;
}

.term-window.faded {
  opacity: 0.4;
  transition: opacity 1.5s ease;
}

.term-header {
  background: #1a1a1a;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.term-dots {
  display: flex;
  gap: 6px;
}

.dot-red,
.dot-yellow,
.dot-green {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red    { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green  { background: #27c93f; }

.term-title {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 11px;
  color: #6b7280;
}

.term-body {
  padding: 14px 16px;
  height: 180px;
  overflow: hidden;
}

.term-body pre {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 12px;
  line-height: 1.7;
  margin: 0;
  white-space: pre-wrap;
  color: #9ca3af;
}

/* Syntax highlight classes */
.t-green  { color: #27c93f; }
.t-red    { color: #dc2626; }
.t-yellow { color: #ffbd2e; }
.t-cyan   { color: #22d3ee; }
.t-white  { color: #e2e8f0; }
.t-gray   { color: #4b5563; }
.t-purple { color: #a78bfa; }
.t-orange { color: #fb923c; }

.cursor-term {
  animation: cursorBlink 0.8s step-end infinite;
}

/* --------------------------------------------------------------------------
   8. Trust Bar
   -------------------------------------------------------------------------- */
.trust-bar {
  display: flex;
  gap: 36px;
  padding: 28px 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #080d19;
  justify-content: center;
}

.trust-item {
  text-align: center;
}

.trust-name {
  font-size: 22px;
  font-weight: 800;
  color: #dc2626;
  text-align: center;
}

.trust-sub {
  font-size: 11px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 2px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   9. Sections (reusable)
   -------------------------------------------------------------------------- */
.section {
  padding: 80px 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #dc2626;
  font-weight: 600;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: #f1f5f9;
  margin-top: 10px;
  text-align: center;
}

.section-sub {
  font-size: 16px;
  color: #64748b;
  margin-top: 12px;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   10. Services Grid
   -------------------------------------------------------------------------- */
.services-bg {
  background: #080d19;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

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

.service-card {
  padding: 32px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}

.service-card:hover {
  border-color: rgba(220, 38, 38, 0.2);
  background: rgba(220, 38, 38, 0.03);
  transform: translateY(-2px);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
}

.service-name {
  font-size: 18px;
  font-weight: 700;
  color: #e2e8f0;
}

.service-desc {
  font-size: 14px;
  color: #64748b;
  margin-top: 8px;
  line-height: 1.6;
}

.service-link {
  font-size: 13px;
  color: #dc2626;
  margin-top: 12px;
  display: inline-block;
  font-weight: 600;
  transition: color 0.2s;
}

.service-link:hover {
  color: #ef4444;
}

/* --------------------------------------------------------------------------
   11. Why Prowl
   -------------------------------------------------------------------------- */
.why-bg {
  background: linear-gradient(180deg, #080d19, #0a0e1a);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

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

.why-card {
  padding: 32px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.015);
  transition: all 0.3s;
}

.why-card:hover {
  border-color: rgba(220, 38, 38, 0.15);
}

.why-number {
  font-size: 48px;
  font-weight: 900;
  color: rgba(220, 38, 38, 0.15);
  margin-bottom: 12px;
}

.why-title {
  font-size: 18px;
  font-weight: 700;
  color: #e2e8f0;
}

.why-text {
  font-size: 15px;
  color: #64748b;
  margin-top: 10px;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   12. Social Proof
   -------------------------------------------------------------------------- */
.proof-bg {
  background: #0a0e1a;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.proof-content {
  text-align: center;
  padding: 48px 64px;
}

.proof-quote {
  font-size: 24px;
  font-weight: 300;
  color: #94a3b8;
  font-style: italic;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.proof-quote strong {
  color: #dc2626;
  font-weight: 600;
  font-style: normal;
}

.proof-stat-row {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 48px;
}

.proof-stat {
  text-align: center;
}

.proof-stat-num {
  font-size: 36px;
  font-weight: 900;
  color: #dc2626;
}

.proof-stat-label {
  font-size: 13px;
  color: #6b7280;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   13. CTA
   -------------------------------------------------------------------------- */
.cta-bg {
  background: linear-gradient(180deg, #0a0e1a, #120818);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(220, 38, 38, 0.06), transparent 70%);
}

.cta-content {
  text-align: center;
  padding: 80px 64px;
  position: relative;
}

.cta-title {
  font-size: 36px;
  font-weight: 900;
  color: #f1f5f9;
}

.cta-sub {
  font-size: 16px;
  color: #64748b;
  margin-top: 12px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 32px;
}

.cta-phone {
  font-size: 14px;
  color: #9ca3af;
  margin-top: 20px;
}

.cta-phone strong {
  color: #dc2626;
}

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: #04060e;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 48px 64px 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 36px;
}

.footer-logo {
  height: 48px;
}

.footer-tagline {
  font-size: 14px;
  color: #4b5563;
  margin-top: 12px;
  max-width: 320px;
  line-height: 1.6;
}

.footer-cols {
  display: flex;
  gap: 64px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: #4b5563;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #dc2626;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #2d3748;
}

.footer-bottom a {
  color: #2d3748;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: #6b7280;
}

/* --------------------------------------------------------------------------
   15. Page Header (inner pages)
   -------------------------------------------------------------------------- */
.page-header {
  padding: 80px 64px 48px;
  text-align: center;
  background: linear-gradient(160deg, #0a0e1a 0%, #110a18 40%, #0f172a 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.page-header .hero-grid {
  position: absolute;
  inset: 0;
}

.page-header-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.page-header .section-label {
  margin-bottom: 12px;
}

.page-header-title {
  font-size: 42px;
  font-weight: 900;
  color: #f8fafc;
  letter-spacing: -1px;
  line-height: 1.1;
}

.page-header-sub {
  font-size: 16px;
  color: #94a3b8;
  margin-top: 16px;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 24px;
}

.breadcrumb a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #dc2626;
}

.breadcrumb span {
  margin: 0 8px;
  color: #374151;
}

/* --------------------------------------------------------------------------
   16. Content Sections (inner page body text)
   -------------------------------------------------------------------------- */
.content-section {
  padding: 64px;
  max-width: 900px;
  margin: 0 auto;
}

.content-section h2 {
  font-size: 28px;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.content-section h3 {
  font-size: 20px;
  font-weight: 700;
  color: #e2e8f0;
  margin-top: 32px;
  margin-bottom: 12px;
}

.content-section p {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 20px;
}

.content-section ul,
.content-section ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.content-section ul {
  list-style: disc;
}

.content-section ol {
  list-style: decimal;
}

.content-section li {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 8px;
}

.content-section li::marker {
  color: #dc2626;
}

.content-section strong {
  color: #e2e8f0;
  font-weight: 600;
}

.content-section a {
  color: #dc2626;
  text-decoration: none;
  transition: color 0.2s;
}

.content-section a:hover {
  color: #ef4444;
}

.content-section blockquote {
  border-left: 3px solid #dc2626;
  padding: 16px 24px;
  margin: 24px 0;
  background: rgba(220, 38, 38, 0.03);
  border-radius: 0 8px 8px 0;
}

.content-section blockquote p {
  color: #e2e8f0;
  font-style: italic;
  margin-bottom: 0;
}

.content-section hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin: 40px 0;
}

/* --------------------------------------------------------------------------
   17. Contact Form
   -------------------------------------------------------------------------- */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #e2e8f0;
  font-size: 14px;
  transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #4b5563;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(220, 38, 38, 0.4);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M1.4 0L6 4.6 10.6 0 12 1.4l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-submit {
  margin-top: 8px;
}

.form-note {
  font-size: 12px;
  color: #4b5563;
  margin-top: 12px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   18. Article Cards (resources page)
   -------------------------------------------------------------------------- */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.article-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: all 0.3s;
}

.article-card:hover {
  border-color: rgba(220, 38, 38, 0.2);
  transform: translateY(-2px);
}

.article-card-image {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #0f172a, #1e1b4b);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card-body {
  padding: 24px;
}

.article-card-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #dc2626;
  font-weight: 600;
  margin-bottom: 10px;
}

.article-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #e2e8f0;
  line-height: 1.4;
  margin-bottom: 8px;
}

.article-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.article-card-title a:hover {
  color: #dc2626;
}

.article-card-excerpt {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 16px;
}

.article-card-meta {
  font-size: 11px;
  color: #4b5563;
}

.article-card-meta span {
  margin-right: 12px;
}

/* --------------------------------------------------------------------------
   19. Article Content (individual article pages)
   -------------------------------------------------------------------------- */
.article-header {
  padding: 80px 64px 48px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.article-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #dc2626;
  font-weight: 600;
  margin-bottom: 16px;
}

.article-title {
  font-size: 36px;
  font-weight: 900;
  color: #f8fafc;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.article-meta {
  font-size: 13px;
  color: #64748b;
  margin-top: 16px;
}

.article-meta span {
  margin: 0 8px;
  color: #374151;
}

.article-body {
  padding: 0 64px 80px;
  max-width: 780px;
  margin: 0 auto;
}

.article-body p {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.9;
  margin-bottom: 24px;
}

.article-body h2 {
  font-size: 24px;
  font-weight: 800;
  color: #f1f5f9;
  margin-top: 48px;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.article-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #e2e8f0;
  margin-top: 32px;
  margin-bottom: 12px;
}

.article-body ul,
.article-body ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.article-body ul {
  list-style: disc;
}

.article-body ol {
  list-style: decimal;
}

.article-body li {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 8px;
}

.article-body li::marker {
  color: #dc2626;
}

.article-body a {
  color: #dc2626;
  text-decoration: underline;
  text-decoration-color: rgba(220, 38, 38, 0.3);
  transition: text-decoration-color 0.2s;
}

.article-body a:hover {
  text-decoration-color: #dc2626;
}

.article-body img {
  border-radius: 10px;
  margin: 32px 0;
}

.article-body code {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 8px;
  border-radius: 4px;
  color: #e2e8f0;
}

.article-body pre {
  background: #0c0c0c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 20px 24px;
  margin: 24px 0;
  overflow-x: auto;
}

.article-body pre code {
  background: none;
  padding: 0;
  font-size: 13px;
  line-height: 1.7;
}

.article-body blockquote {
  border-left: 3px solid #dc2626;
  padding: 16px 24px;
  margin: 24px 0;
  background: rgba(220, 38, 38, 0.03);
  border-radius: 0 8px 8px 0;
}

.article-body blockquote p {
  color: #e2e8f0;
  font-style: italic;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   20. Paw Watermark
   -------------------------------------------------------------------------- */
.paw-watermark {
  position: absolute;
  pointer-events: none;
  opacity: 0.02;
  z-index: 0;
}

.paw-watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(2);
}

.paw-watermark--hero {
  right: -40px;
  top: -40px;
  width: 380px;
  height: 380px;
}

.paw-watermark--section {
  right: -60px;
  bottom: -60px;
  width: 300px;
  height: 300px;
}

.paw-watermark--footer {
  left: -40px;
  bottom: -40px;
  width: 200px;
  height: 200px;
  opacity: 0.015;
}

/* --------------------------------------------------------------------------
   21. Responsive
   -------------------------------------------------------------------------- */

/* ---- 1024px: Tablet / small desktop ---- */
@media (max-width: 1024px) {
  .nav {
    padding: 16px 32px;
  }

  .hero {
    padding: 60px 32px 56px;
  }

  .hero-content {
    min-height: auto;
  }

  .hero-text {
    max-width: 520px;
  }

  /* Terminal: in-flow on tablet */
  .term-window {
    position: static;
    width: 100%;
    margin-top: 16px;
  }
  .term-window.visible {
    height: 200px;
  }

  .chevron-row {
    position: static;
    margin-top: 12px;
    display: flex;
  }

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

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

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

  .section {
    padding: 64px 32px;
  }

  .trust-bar {
    padding: 24px 32px;
    gap: 24px;
    flex-wrap: wrap;
  }

  .proof-content {
    padding: 48px 32px;
  }

  .cta-content {
    padding: 64px 32px;
  }

  .footer {
    padding: 40px 32px 28px;
  }

  .footer-cols {
    gap: 40px;
  }

  .page-header {
    padding: 60px 32px 40px;
  }

  .content-section {
    padding: 48px 32px;
  }

  .article-header {
    padding: 60px 32px 40px;
  }

  .article-body {
    padding: 0 32px 64px;
  }
}

/* ---- 768px: Mobile ---- */
@media (max-width: 768px) {
  /* Mobile nav */
  .nav {
    padding: 14px 20px;
  }

  .nav-toggle,
  .nav-logo {
    height: 70px;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(6, 10, 20, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
  }

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

  .nav-phone {
    display: none;
  }

  /* Hero mobile */
  .hero {
    padding: 48px 20px 40px;
  }

  .hero-content {
    flex-direction: column;
    gap: 40px;
    min-height: auto;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-headline {
    font-size: 32px;
    letter-spacing: -0.5px;
  }

  .hero-terminal span {
    font-size: 16px;
    letter-spacing: 2px;
    padding: 8px 14px;
  }

  .hero-sub {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    text-align: center;
    width: 100%;
  }

  .hero-stats {
    flex-direction: row;
    gap: 12px;
    min-width: 0;
  }

  .stat-card {
    padding: 16px;
    flex: 1;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 10px;
  }

  /* Terminal: in-flow on mobile, compact */
  .term-window {
    position: static;
    width: 100%;
    margin-top: 12px;
    font-size: 10px;
  }
  .term-window.visible {
    height: 160px;
  }
  .term-body {
    height: 130px;
    padding: 10px 12px;
  }
  .term-body pre {
    font-size: 10px;
    line-height: 1.5;
  }
  .term-header {
    padding: 6px 10px;
  }
  .dot-red, .dot-yellow, .dot-green {
    width: 8px;
    height: 8px;
  }
  .term-title {
    font-size: 9px;
  }

  .chevron-row {
    position: static;
    margin-top: 10px;
    display: flex;
  }
  .chevron {
    border-top-width: 7px;
    border-bottom-width: 7px;
    border-left-width: 9px;
  }

  /* Trust bar */
  .trust-bar {
    padding: 20px;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .trust-name {
    font-size: 16px;
  }

  /* Sections */
  .section {
    padding: 48px 20px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-sub {
    font-size: 14px;
  }

  /* Grids single col */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .articles-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Social Proof */
  .proof-content {
    padding: 40px 20px;
  }

  .proof-quote {
    font-size: 18px;
  }

  .proof-stat-row {
    flex-direction: column;
    gap: 24px;
  }

  .proof-stat-num {
    font-size: 28px;
  }

  /* CTA */
  .cta-content {
    padding: 56px 20px;
  }

  .cta-title {
    font-size: 26px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  /* Footer */
  .footer {
    padding: 32px 20px 24px;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-cols {
    flex-direction: column;
    gap: 28px;
  }

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

  /* Page header */
  .page-header {
    padding: 48px 20px 32px;
  }

  .page-header-title {
    font-size: 28px;
  }

  .page-header-sub {
    font-size: 14px;
  }

  /* Content */
  .content-section {
    padding: 32px 20px;
  }

  .content-section h2 {
    font-size: 22px;
  }

  .content-section h3 {
    font-size: 17px;
  }

  /* Article */
  .article-header {
    padding: 48px 20px 32px;
  }

  .article-title {
    font-size: 26px;
  }

  .article-body {
    padding: 0 20px 48px;
  }

  .article-body p {
    font-size: 15px;
  }

  .article-body h2 {
    font-size: 20px;
  }

  /* Buttons */
  .btn-primary {
    padding: 12px 24px;
    font-size: 13px;
  }

  .btn-secondary {
    padding: 12px 20px;
    font-size: 13px;
  }
}

/* ---- 480px: Small mobile ---- */
@media (max-width: 480px) {
  .hero-headline {
    font-size: 26px;
  }

  .hero-terminal span {
    font-size: 14px;
    letter-spacing: 1px;
  }

  .hero-stats {
    flex-direction: column;
  }

  .stat-card {
    padding: 14px;
  }

  .stat-number {
    font-size: 24px;
  }

  .section-title {
    font-size: 20px;
  }

  .page-header-title {
    font-size: 24px;
  }

  .cta-title {
    font-size: 22px;
  }

  .proof-quote {
    font-size: 16px;
  }

  .article-title {
    font-size: 22px;
  }

  .trust-name {
    font-size: 14px;
  }
}
