/* ============================================================
   TECHNOLOGY INNOVATIONS — Global Stylesheet
   Security · Connectivity · Intelligence
   ============================================================ */

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

:root {
  --red-core: #CC1021;
  --red-bright: #CC1021;
  --red-glow: rgba(204, 16, 33, 0.8);
  --red-deep: #8B0D17;
  --red-subtle: rgba(204, 16, 33, 0.15);
  --bg-black: #000000;
  --bg-dark: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1C1C1C;
  --border-dim: rgba(255,255,255,0.06);
  --border-red: rgba(204, 16, 33, 0.3);
  --text-primary: #F5F5F5;
  --text-secondary: #999999;
  --text-dim: #666666;
  --white: #FFFFFF;
  --font-heading: 'Orbitron', sans-serif;
  --font-body: 'Titillium Web', sans-serif;
  --font-mono: 'Titillium Web', sans-serif;
  --max-width: 1200px;
  --glow-sm: 0 0 10px rgba(204, 16, 33, 0.3);
  --glow-md: 0 0 20px rgba(204, 16, 33, 0.4), 0 0 40px rgba(204, 16, 33, 0.15);
  --glow-lg: 0 0 30px rgba(204, 16, 33, 0.5), 0 0 60px rgba(204, 16, 33, 0.2), 0 0 100px rgba(204, 16, 33, 0.1);
  --tier-essentials: #1E4D3A;
  --tier-advanced: #1A2E4A;
  --tier-complete: #6B4E0F;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-black);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--red-bright); text-decoration: none; transition: color 0.3s, text-shadow 0.3s; }
a:hover { color: var(--red-bright); text-shadow: 0 0 8px rgba(204, 16, 33, 0.4); }
img { max-width: 100%; display: block; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--white);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 0.75rem;
  display: block;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dim);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5), 0 1px 0 var(--border-red);
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img {
  width: 42px; height: 42px;
  filter: drop-shadow(0 0 6px rgba(204, 16, 33, 0.5));
  transition: filter 0.3s;
}
.nav-logo:hover img { filter: drop-shadow(0 0 12px rgba(204, 16, 33, 0.7)); }
.nav-logo-text {
  font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.1;
}
.nav-logo-text small {
  display: block; font-family: var(--font-body); font-size: 0.55rem; font-weight: 400;
  font-style: italic; letter-spacing: 0.2em; color: var(--red-bright); margin-top: 2px;
}
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-secondary);
  position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
  background: var(--red-bright); box-shadow: var(--glow-sm); transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); text-shadow: none; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--red-core); color: var(--white) !important;
  padding: 8px 20px; border-radius: 4px; font-size: 0.82rem !important;
  transition: background 0.3s, box-shadow 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--red-bright) !important;
  box-shadow: var(--glow-md) !important; text-shadow: none !important;
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text-primary); margin: 5px 0; transition: transform 0.3s, opacity 0.3s; }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(0, 0, 0, 0.98); flex-direction: column;
    padding: 2rem; gap: 1.5rem; transform: translateY(-110%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid var(--border-red);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding-top: 72px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(204, 16, 33, 0.12) 0%, transparent 70%),
    radial-gradient(circle at 20% 80%, rgba(204, 16, 33, 0.06) 0%, transparent 50%),
    var(--bg-black);
}
.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;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; padding: 2rem; }
.hero-logo {
  width: 140px; height: 140px; margin: 0 auto 2rem;
  filter: drop-shadow(0 0 30px rgba(204, 16, 33, 0.5)) drop-shadow(0 0 60px rgba(204, 16, 33, 0.2));
  animation: logoPulse 4s ease-in-out infinite;
}
@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 30px rgba(204, 16, 33, 0.5)) drop-shadow(0 0 60px rgba(204, 16, 33, 0.2)); }
  50% { filter: drop-shadow(0 0 40px rgba(204, 16, 33, 0.7)) drop-shadow(0 0 80px rgba(204, 16, 33, 0.35)); }
}
.hero h1 { margin-bottom: 1rem; }
.hero h1 .accent { color: var(--red-bright); }
.hero-tagline {
  font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 0.3em;
  color: var(--red-bright); text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-desc { font-size: 1.15rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto 2.5rem; line-height: 1.8; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 14px 32px; border-radius: 4px; border: none; cursor: pointer; transition: all 0.3s;
}
.btn-primary {
  background: var(--red-core); color: var(--white);
  box-shadow: 0 4px 15px rgba(204, 16, 33, 0.3);
}
.btn-primary:hover {
  background: var(--red-bright); color: var(--white);
  box-shadow: var(--glow-md); transform: translateY(-2px); text-shadow: none;
}
.btn-outline { background: transparent; color: var(--text-primary); border: 1px solid rgba(255,255,255,0.15); }
.btn-outline:hover {
  border-color: var(--red-bright); color: var(--white);
  box-shadow: var(--glow-sm); transform: translateY(-2px); text-shadow: none;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { border-top: 1px solid var(--border-dim); border-bottom: 1px solid var(--border-dim); background: var(--bg-dark); padding: 3rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item h3 { font-size: 2.4rem; color: var(--red-bright); font-weight: 700; line-height: 1; margin-bottom: 0.5rem; }
.stat-item p { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-dim); }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.service-card {
  background: var(--bg-card); border: 1px solid var(--border-dim); border-radius: 8px;
  padding: 2.5rem 2rem; position: relative; overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.3s;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red-deep), var(--red-bright), var(--red-deep));
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover { border-color: var(--border-red); box-shadow: 0 8px 40px rgba(204, 16, 33, 0.1); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }
.service-card-icon {
  width: 48px; height: 48px; border-radius: 8px; background: var(--red-subtle);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; font-size: 1.4rem;
}
.service-card h3 { margin-bottom: 0.75rem; }
.service-card p { color: var(--text-secondary); font-size: 0.95rem; }

/* ============================================================
   SERVICE LIST — editorial numbered layout (index.html)
   ============================================================ */
.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 3.5rem;
  border-top: 1px solid var(--border-dim);
}
.service-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.75rem;
  padding: 2.75rem 2.5rem 2.75rem 0;
  border-bottom: 1px solid var(--border-dim);
  border-right: 1px solid var(--border-dim);
  transition: background 0.35s;
  position: relative;
}
.service-item:nth-child(even) {
  border-right: none;
  padding-left: 2.5rem;
  padding-right: 0;
}
.service-item::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--red-core);
  opacity: 0;
  transition: opacity 0.35s;
}
.service-item:hover { background: rgba(204, 16, 33, 0.03); }
.service-item:hover::after { opacity: 1; }
.service-num {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--red-deep);
  opacity: 0.55;
  line-height: 1;
  padding-top: 0.1rem;
  letter-spacing: -0.02em;
  transition: opacity 0.35s;
}
.service-item:hover .service-num { opacity: 0.9; }
.service-body h3 { margin-bottom: 0.6rem; font-size: 1.2rem; line-height: 1.3; }
.service-body p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.75; }
@media (max-width: 768px) {
  .services-list { grid-template-columns: 1fr; }
  .service-item,
  .service-item:nth-child(even) { border-right: none; padding-left: 0; padding-right: 0; }
}

/* ============================================================
   PRICING TIERS
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border-dim); border-radius: 8px;
  padding: 2.5rem 2rem; position: relative; transition: border-color 0.4s, box-shadow 0.4s, transform 0.3s;
}
.pricing-card.featured { border-color: var(--red-core); box-shadow: 0 0 30px rgba(204, 16, 33, 0.15); }
.pricing-card.featured::before {
  content: 'MOST POPULAR'; position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  background: var(--red-core); color: var(--white); font-family: var(--font-mono);
  font-size: 0.65rem; letter-spacing: 0.15em; padding: 4px 16px; border-radius: 20px;
}
.pricing-card:hover { border-color: var(--border-red); transform: translateY(-4px); box-shadow: 0 8px 40px rgba(204, 16, 33, 0.12); }
.pricing-tier-name { font-family: var(--font-body); font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 0.25rem; }
.pricing-price .amount { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 700; color: var(--red-bright); line-height: 1; }
.pricing-price .period { font-size: 0.85rem; color: var(--text-dim); }
.pricing-unit { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 1.5rem; font-family: var(--font-mono); letter-spacing: 0.05em; }
.pricing-divider { height: 1px; background: var(--border-dim); margin: 1.5rem 0; }
.pricing-features { list-style: none; }
.pricing-features li {
  padding: 0.5rem 0; font-size: 0.9rem; color: var(--text-secondary);
  display: flex; align-items: flex-start; gap: 10px;
}
.pricing-features li::before { content: '✓'; color: var(--red-bright); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pricing-features li.disabled { color: var(--text-dim); opacity: 0.4; text-decoration: line-through; text-decoration-color: var(--text-dim); }
.pricing-features li.disabled::before { content: '✕'; color: var(--text-dim); }
.pricing-card .btn { width: 100%; justify-content: center; margin-top: 2rem; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison-table-wrap { overflow-x: auto; margin-top: 3rem; border: 1px solid var(--border-dim); border-radius: 8px; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.comparison-table thead th {
  background: var(--bg-card); font-family: var(--font-body); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; padding: 1rem 1.25rem;
  text-align: center; border-bottom: 2px solid var(--border-red); color: var(--white); font-size: 0.85rem;
}
.comparison-table thead th:first-child { text-align: left; }
.comparison-table tbody td { padding: 0.85rem 1.25rem; border-bottom: 1px solid var(--border-dim); text-align: center; color: var(--text-secondary); }
.comparison-table tbody td:first-child { text-align: left; color: var(--text-primary); font-weight: 500; }
.comparison-table tbody tr:hover { background: rgba(204, 16, 33, 0.04); }
.check { color: var(--red-bright); font-weight: 700; font-size: 1.1rem; }
.dash { color: var(--text-dim); opacity: 0.3; }

/* ============================================================
   ABOUT / WHY SECTION
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-top: 3rem; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 2rem; } }
.about-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.about-visual img { width: 280px; height: 280px; filter: drop-shadow(0 0 40px rgba(204, 16, 33, 0.4)); animation: logoPulse 5s ease-in-out infinite; }
.about-text p { color: var(--text-secondary); margin-bottom: 1.25rem; font-size: 1.05rem; }

.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.pillar {
  background: var(--bg-card); border: 1px solid var(--border-dim); border-radius: 8px;
  padding: 2rem; transition: border-color 0.3s, box-shadow 0.3s;
}
.pillar:hover { border-color: var(--border-red); box-shadow: 0 4px 20px rgba(204, 16, 33, 0.08); }
.pillar-number { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--red-deep); margin-bottom: 0.75rem; }
.pillar h3 { margin-bottom: 0.5rem; font-size: 1.15rem; }
.pillar p { color: var(--text-secondary); font-size: 0.9rem; }

/* ============================================================
   PROCESS / TIMELINE
   ============================================================ */
.process-steps { margin-top: 3rem; }
.process-step {
  display: grid; grid-template-columns: 80px 1fr; gap: 2rem;
  padding: 2rem 0; border-bottom: 1px solid var(--border-dim);
  transition: background 0.35s;
  position: relative;
}
.process-step::after {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--red-core); opacity: 0; transition: opacity 0.35s;
}
.process-step:last-child { border-bottom: none; }
.process-step:hover { background: rgba(204, 16, 33, 0.03); }
.process-step:hover::after { opacity: 1; }
.process-step-num {
  font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700;
  color: var(--red-deep); line-height: 1; padding-top: 0.25rem;
}
.process-step h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.process-step p { color: var(--text-secondary); font-size: 0.95rem; }
@media (max-width: 600px) {
  .process-step { grid-template-columns: 1fr; gap: 0.5rem; }
  .process-step-num { font-size: 1.5rem; }
}

/* ============================================================
   RESPONSE TIMES
   ============================================================ */
.response-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.response-card {
  background: var(--bg-card); border: 1px solid var(--border-dim); border-radius: 8px; padding: 2rem;
}
.response-card h3 { margin-bottom: 1rem; font-size: 1.1rem; }
.response-item { display: flex; justify-content: space-between; padding: 0.75rem 0; border-bottom: 1px solid var(--border-dim); }
.response-item:last-child { border-bottom: none; }
.response-item .label { color: var(--text-secondary); font-size: 0.9rem; }
.response-item .value { color: var(--red-bright); font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; }

/* ============================================================
   DISCLAIMER / NOTICES
   ============================================================ */
.disclaimer-banner {
  background: linear-gradient(135deg, rgba(204, 16, 33, 0.08), rgba(139, 13, 23, 0.08));
  border: 1px solid var(--border-red); border-radius: 8px; padding: 1.5rem 2rem;
  margin-top: 3rem; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7;
}
.disclaimer-banner strong { color: var(--red-bright); }

/* ============================================================
   ADDON CARD
   ============================================================ */
.addon-card {
  background: var(--bg-card); border: 1px solid var(--border-dim); border-radius: 8px;
  padding: 2.5rem; margin-top: 3rem; display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center;
}
@media (max-width: 768px) { .addon-card { grid-template-columns: 1fr; } }
.addon-card h3 { margin-bottom: 0.5rem; }
.addon-card p { color: var(--text-secondary); font-size: 0.95rem; }
.addon-price { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--red-bright); text-align: center; white-space: nowrap; }
.addon-price small { display: block; font-size: 0.75rem; color: var(--text-dim); font-weight: 400; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form .form-group { margin-bottom: 1.5rem; }
.contact-form label {
  display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 0.5rem;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%; padding: 12px 16px; background: var(--bg-card); border: 1px solid var(--border-dim);
  border-radius: 4px; color: var(--text-primary); font-family: var(--font-body); font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s; outline: none;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  border-color: var(--red-core); box-shadow: 0 0 0 3px rgba(204, 16, 33, 0.15);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-info-block { background: var(--bg-card); border: 1px solid var(--border-dim); border-radius: 8px; padding: 2.5rem 2rem; }
.contact-info-item { margin-bottom: 2rem; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item h4 { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red-bright); margin-bottom: 0.5rem; }
.contact-info-item p { color: var(--text-secondary); font-size: 1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--border-dim); background: var(--bg-dark); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { width: 50px; margin-bottom: 1rem; filter: drop-shadow(0 0 8px rgba(204, 16, 33, 0.4)); }
.footer-brand p { color: var(--text-dim); font-size: 0.85rem; line-height: 1.7; max-width: 300px; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--white); margin-bottom: 1rem; }
.footer-col a { display: block; color: var(--text-dim); font-size: 0.9rem; padding: 0.3rem 0; transition: color 0.3s; }
.footer-col a:hover { color: var(--red-bright); text-shadow: none; }
.footer-bottom { border-top: 1px solid var(--border-dim); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.78rem; color: var(--text-dim); }

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-header { padding: 10rem 0 4rem; position: relative; overflow: hidden; }
.page-header-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(204, 16, 33, 0.1) 0%, transparent 70%), var(--bg-black); }
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { margin-bottom: 1rem; }
.page-header p { color: var(--text-secondary); font-size: 1.1rem; max-width: 650px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

.scanlines::after {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.015) 2px, rgba(0, 0, 0, 0.015) 4px);
}

/* ============================================================
   TWO SERVICES SECTION (homepage)
   ============================================================ */
.two-services {
  padding: 5rem 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
}
.two-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 3rem;
  border: 1px solid var(--border-dim);
  border-radius: 8px;
  overflow: hidden;
}
.service-pillar {
  background: var(--bg-card);
  padding: 3rem 2.5rem;
  position: relative;
  transition: background 0.3s;
}
.service-pillar:hover { background: var(--bg-card-hover); }
.service-pillar-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: block;
}
.service-pillar h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}
.service-pillar p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.service-pillar-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red-bright);
  border: 1px solid var(--border-red);
  padding: 4px 10px;
  border-radius: 3px;
}
.service-pillar-divider {
  background: var(--bg-black);
  padding: 0;
  display: flex;
  align-items: stretch;
  width: 2px;
}
.bundle-callout {
  margin-top: 2rem;
  background: linear-gradient(135deg, rgba(204,16,33,0.08), rgba(139,21,32,0.05));
  border: 1px solid var(--border-red);
  border-radius: 8px;
  padding: 2rem 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
}
.bundle-callout-icon {
  font-size: 2rem;
  line-height: 1;
}
.bundle-callout h4 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: var(--white);
}
.bundle-callout p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .two-services-grid { grid-template-columns: 1fr; }
  .bundle-callout { grid-template-columns: 1fr; gap: 1rem; }
}

/* ============================================================
   UBIQUITI PLATFORM SECTION (redesigned)
   ============================================================ */
.platform-section {
  padding: 5rem 0;
  background: var(--bg-black);
  border-bottom: 1px solid var(--border-dim);
}
.platform-attribution {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-dim);
  border-left: 3px solid var(--red-deep);
  border-radius: 6px;
  padding: 1.25rem 1.75rem;
  margin-bottom: 3.5rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.platform-attribution-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.6;
}
.platform-attribution p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin: 0;
}
.platform-attribution strong {
  color: var(--text-secondary);
}
.platform-header {
  text-align: center;
  margin-bottom: 3rem;
}
.platform-header h2 span { color: var(--red-bright); }
.platform-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border-dim);
  border: 1px solid var(--border-dim);
  border-radius: 8px;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}
.platform-stat-card {
  background: var(--bg-card);
  padding: 2.25rem 1.5rem;
  text-align: center;
  transition: background 0.3s;
}
.platform-stat-card:hover { background: var(--bg-card-hover); }
.platform-stat-card--company .platform-stat-val { color: var(--text-primary); text-shadow: none; }
.platform-stats-divider {
  grid-column: 1 / -1;
  background: var(--bg-dark);
  padding: 0.65rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
}
.platform-stats-divider::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--red-core);
  flex-shrink: 0;
}
.platform-stats-divider span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.platform-stat-val {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 700;
  color: var(--red-bright);
  line-height: 1;
  margin-bottom: 0.6rem;
  text-shadow: var(--glow-sm);
}
.platform-stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  line-height: 1.5;
}
.platform-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 2rem;
  justify-content: center;
  margin-top: 1.75rem;
}
.platform-sources span {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.platform-sources a {
  color: var(--red-core);
  border-bottom: 1px dotted var(--border-red);
  font-size: 0.56rem;
}
.platform-sources a:hover { color: var(--red-bright); text-shadow: none; }
@media (max-width: 768px) {
  .platform-stats-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .platform-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   TESTIMONIALS PAGE
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red-deep), var(--red-bright), var(--red-deep));
  opacity: 0;
  transition: opacity 0.3s;
}
.review-card:hover {
  border-color: var(--border-red);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  transform: translateY(-3px);
}
.review-card:hover::before { opacity: 1; }
.review-stars {
  display: flex;
  gap: 3px;
}
.review-star {
  color: var(--red-bright);
  font-size: 0.9rem;
  text-shadow: var(--glow-sm);
}
.review-quote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-style: italic;
  flex-grow: 1;
}
.review-quote::before {
  content: '\201C';
  font-size: 2rem;
  color: var(--red-deep);
  font-style: normal;
  line-height: 0;
  vertical-align: -0.5rem;
  margin-right: 4px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border-dim);
  padding-top: 1.25rem;
}
.review-author-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-red);
  flex-shrink: 0;
}
.review-author-initials {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
  letter-spacing: 0.05em;
}
.review-author-info strong {
  display: block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
}
.review-author-info span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.review-source-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: var(--bg-black);
  border: 1px solid var(--border-dim);
  padding: 3px 8px;
  border-radius: 3px;
}

/* Work photo gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-dim);
  aspect-ratio: 4/3;
  position: relative;
  background: var(--bg-card);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.gallery-item:hover {
  border-color: var(--border-red);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 2rem 1rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-caption { opacity: 1; }
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.gallery-placeholder-icon { font-size: 2rem; opacity: 0.3; }

/* Leave a review CTA */
.review-cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.review-cta-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.review-cta-card:hover {
  border-color: var(--border-red);
  box-shadow: 0 4px 20px rgba(204,16,33,0.08);
}
.review-cta-card-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.review-cta-card h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.review-cta-card p { color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 1.5rem; }
