/* ===================================================================
   OPS INTEL — LANDING PAGE CSS
   Design system: dark navy / amber accent / sharp edges (0px radius)
   =================================================================== */

/* ── Reset & Base ── */

/* Prevent horizontal overflow on mobile — common cause of mobile score failures */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

::selection {
  background: rgba(245, 158, 11, 0.25);
  color: #fff;
}

/* ── Section Utilities ── */
.section {
  padding: 120px 32px;
}
.section-white  { background: #ffffff; }
.section-grey   { background: #f8fafc; }
.section-navy   { background: #0a1628; }

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

.section-label {
  font-size: 11px;
  font-weight: 700;
  color: #f59e0b;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
  text-align: center;
  display: block;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin: 0 0 16px;
  text-align: center;
}
.section-title.dark  { color: #0f172a; }
.section-title.light { color: #ffffff; }

.section-sub {
  font-size: 16px;
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-sub.dark { color: #64748b; }
.section-sub.light { color: #94a3b8; }

/* ── Buttons ── */
.btn-primary {
  background: #f59e0b;
  color: #0a1628;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  font-family: inherit;
  border-radius: 0;
}
.btn-primary:hover {
  background: #d97706;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
  color: #0a1628;
  text-decoration: none;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 15px;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  border-radius: 0;
}
.btn-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
  text-decoration: none;
}

.btn-outline-dark {
  background: transparent;
  color: #0f172a;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  border: 1px solid #0f172a;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  border-radius: 0;
}
.btn-outline-dark:hover {
  background: #0f172a;
  color: #fff;
  text-decoration: none;
}

/* ── HERO ── */
.hero {
  position: relative;
  background: #0a1628;
  padding: 200px 32px 120px;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  font-size: 11px;
  font-weight: 600;
  color: #f59e0b;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.badge-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f59e0b;
  display: inline-block;
  animation: badge-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes badge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero h1 {
  font-size: 80px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -3px;
  color: #ffffff;
  margin: 0 0 28px;
}

.hero h1 .amber {
  color: #f59e0b;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.8;
  color: #94a3b8;
  max-width: 660px;
  margin: 0 auto 44px;
}

.hero-sub strong {
  color: #e2e8f0;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-stat {
  text-align: center;
  padding: 0 52px;
}

.hero-stat strong {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: #f59e0b;
  margin-bottom: 6px;
  letter-spacing: -1px;
}

.hero-stat span {
  font-size: 11px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

/* ── AUTOMATIONS SECTION ── */
.automations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.auto-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-top: 3px solid #f59e0b;
  padding: 28px 24px;
  transition: all 0.2s ease;
}

.auto-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-color: #f59e0b;
  border-top-color: #f59e0b;
}

.auto-card-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
  line-height: 1;
}

.auto-card-count {
  font-size: 11px;
  font-weight: 700;
  color: #f59e0b;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: block;
}

.auto-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 14px;
  line-height: 1.3;
}

.auto-card-examples {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.auto-card-examples li {
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.auto-card-examples li::before {
  content: '→';
  color: #f59e0b;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}

.automations-cta {
  text-align: center;
  margin-top: 56px;
}

/* --- Pricing --- */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; align-items: start; margin-bottom: 40px;
}
.pricing-card {
  padding: 40px 36px;
  background: #fff; border: 1px solid #e2e8f0;
  position: relative; display: flex; flex-direction: column;
}
.pricing-card-featured {
  background: #f59e0b;
  border-color: #f59e0b;
  margin-top: -16px; margin-bottom: -16px;
  padding-top: 56px;
}
.pricing-popular {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: #0a1628; color: #fff;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; padding: 6px 20px; white-space: nowrap;
}
.pricing-tier-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: #64748b; margin-bottom: 16px;
}
.pricing-amount {
  font-size: 52px; font-weight: 800; color: #0f172a;
  line-height: 1; margin-bottom: 16px;
}
.pricing-period {
  font-size: 16px; font-weight: 400; color: #94a3b8;
}
.pricing-desc {
  font-size: 14px; color: #64748b; line-height: 1.7;
  margin: 0 0 28px; flex: 1;
}
.pricing-features {
  list-style: none; padding: 0; margin: 0 0 32px;
  border-top: 1px solid #e2e8f0; padding-top: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.pricing-features-light {
  border-color: rgba(10,22,40,0.15);
}
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: #475569; line-height: 1.5;
}
.pricing-features li::before {
  content: '✓'; color: #f59e0b; font-weight: 800;
  font-size: 14px; flex-shrink: 0; margin-top: 1px;
}
.pricing-card-featured .pricing-features li { color: #0a1628; }
.pricing-card-featured .pricing-features li::before { color: #0a1628; }
.pricing-note {
  font-size: 12px; color: #94a3b8; text-align: center;
  margin: 16px 0 0;
}
.btn-featured {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; background: #0a1628; color: #fff;
  font-size: 14px; font-weight: 700; text-decoration: none;
  border: none; cursor: pointer; transition: all 0.2s ease;
  text-align: center;
}
.btn-featured:hover { background: #0f2040; color: #fff; text-decoration: none; }
.pricing-oneoff {
  border: 1px solid #e2e8f0; background: #fff; margin-bottom: 32px;
}
.pricing-oneoff-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; padding: 32px 40px;
}
.pricing-oneoff h3 { font-size: 18px; font-weight: 700; color: #0f172a; margin: 0 0 8px; }
.pricing-oneoff p { font-size: 14px; color: #64748b; margin: 0; }
.pricing-guarantee {
  text-align: center; font-size: 14px; color: #64748b;
  padding: 20px; border-top: 1px solid #e2e8f0;
}
.pricing-guarantee strong { color: #0f172a; }

/* ── WHO WE WORK WITH ── */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.industry-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 32px 28px;
  transition: all 0.2s ease;
}

.industry-card:hover {
  border-color: #f59e0b;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.industry-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.industry-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px;
}

.industry-card p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* ── PROCESS ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-card {
  padding: 36px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  transition: all 0.2s ease;
}

.process-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(245, 158, 11, 0.3);
}

.process-number {
  font-size: 72px;
  font-weight: 800;
  color: rgba(245, 158, 11, 0.12);
  line-height: 1;
  margin-bottom: 16px;
  font-family: inherit;
}

.process-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
}

.process-card p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.7;
  margin: 0 0 10px;
}

.process-card p.process-detail {
  font-size: 13px;
  color: #64748b;
  font-style: italic;
}

.process-cta {
  text-align: center;
  margin-top: 56px;
}

/* ── WHY OPS INTEL ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 32px 28px;
  transition: all 0.2s ease;
}

.why-card:hover {
  border-color: #f59e0b;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.why-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.why-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px;
}

.why-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* ── ABOUT / MISSION ── */
.mission-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 72px;
  align-items: start;
}

.mission-text .section-label,
.mission-text .section-title {
  text-align: left;
}

.mission-author {
  margin-bottom: 28px;
}

.mission-author-name {
  font-size: 16px;
  font-weight: 700;
  color: #f59e0b;
  margin: 0 0 4px;
}

.mission-author-role {
  font-size: 12px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.mission-bio {
  margin-bottom: 36px;
}

.mission-bio p {
  font-size: 15px;
  line-height: 1.85;
  color: #94a3b8;
  margin: 0 0 16px;
}

.mission-bio p:last-child {
  margin-bottom: 0;
}

.mission-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mission-stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 20px;
  text-align: center;
}

.mission-stat-number {
  font-size: 38px;
  font-weight: 800;
  color: #f59e0b;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.mission-stat-label {
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
  display: block;
}

/* ── FINAL CTA ── */
.final-cta {
  text-align: center;
  padding: 120px 32px;
  background: #ffffff;
}

.final-cta-inner {
  max-width: 720px;
  margin: 0 auto;
}

.cta-reassurance {
  display: flex;
  gap: 36px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.cta-reassurance-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
}

.cta-reassurance-item::before {
  content: '✓';
  color: #f59e0b;
  font-weight: 800;
  font-size: 14px;
}

/* ── RESPONSIVE: Tablet ── */
@media (max-width: 1024px) {
  .hero h1 { font-size: 56px; }
  .automations-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-grid { grid-template-columns: 1fr; gap: 48px; }
  .mission-stats { grid-template-columns: repeat(4, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card-featured { margin: 0; padding-top: 56px; }
  .pricing-oneoff-inner { flex-direction: column; gap: 20px; text-align: center; }

  /* New sections */
  .testimonial-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .blog-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .intel-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ── RESPONSIVE: Mobile ── */
@media (max-width: 768px) {
  .hero { padding: 140px 20px 80px; }
  .hero h1 { font-size: 38px; letter-spacing: -1px; }
  .hero-sub { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .hero-stat { padding: 0; }
  .hero-stat-divider { width: 40px; height: 1px; }

  .section { padding: 80px 20px; }
  .section-title { font-size: 32px; letter-spacing: -0.5px; }
  .section-sub { margin-bottom: 40px; }

  .automations-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .mission-stats { grid-template-columns: 1fr 1fr; }

  .cta-reassurance { flex-direction: column; align-items: center; gap: 12px; }

  .final-cta { padding: 80px 20px; }

  .pricing-card { padding: 32px 24px; }
  .mission-grid { gap: 40px; }
  .pricing-oneoff-inner { padding: 24px 20px; }

  /* New sections — mobile */
  .testimonial-grid { max-width: 100%; }
  .blog-grid { max-width: 100%; }
  .intel-section { padding: 80px 20px; }
  .intel-grid { gap: 40px; }
  .intel-headline { font-size: 30px; letter-spacing: -0.5px; }
  .intel-features { grid-template-columns: 1fr; gap: 16px; }
  .intel-subtext { font-size: 15px; }
}

/* ── Legal pages (keep from old CSS) ── */
.legal-page {
  min-height: calc(100vh - 80px);
  padding: 80px 0 60px;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  color: #ccc;
  line-height: 1.8;
}

.legal-content h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}

.legal-updated {
  font-size: 0.875rem;
  color: #555;
  margin: 0 0 48px;
}

.legal-content h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #e0e0e0;
  margin: 36px 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.legal-content p { margin: 0 0 16px; }
.legal-content ul { margin: 0 0 16px; padding-left: 1.5rem; }
.legal-content ul li { margin-bottom: 8px; }
.legal-content a { color: #f59e0b; text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }
.legal-content h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #d0d0d0;
  margin: 24px 0 8px;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 20px;
  font-size: 0.875rem;
}
.legal-table th {
  background: #1a2840;
  color: #f59e0b;
  font-weight: 600;
  text-align: left;
  padding: 8px 12px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.legal-table td {
  padding: 8px 12px;
  border-bottom: 1px solid #1e2a3a;
  color: #aaa;
  vertical-align: top;
}
.legal-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }

/* ══════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-top: 3px solid #f59e0b;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}

.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.testimonial-stars {
  font-size: 15px;
  color: #f59e0b;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.75;
  color: #334155;
  flex: 1;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  border-top: 1px solid #e2e8f0;
  padding-top: 20px;
}

.testimonial-name {
  font-weight: 700;
  color: #0a1628;
  font-size: 14px;
}

.testimonial-role {
  font-size: 13px;
  color: #64748b;
  margin-top: 3px;
}

.testimonial-disclaimer {
  text-align: center;
  margin-top: 40px;
  font-size: 12px;
  color: #94a3b8;
}


/* ══════════════════════════════════════════════════════
   MARKETING INTELLIGENCE FEATURE SECTION
══════════════════════════════════════════════════════ */
.intel-section {
  background: #0a1628;
  padding: 120px 32px;
}

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

.intel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 0;
}

.intel-headline {
  font-size: 40px;
  font-weight: 800;
  color: #f8fafc;
  letter-spacing: -1.5px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.intel-subtext {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 36px;
}

.intel-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.intel-feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 24px;
  transition: background 0.2s, border-color 0.2s;
}

.intel-feature-card:hover {
  background: rgba(245,158,11,0.07);
  border-color: rgba(245,158,11,0.25);
}

.intel-feature-icon {
  font-size: 26px;
  display: block;
  margin-bottom: 12px;
}

.intel-feature-title {
  font-size: 14px;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 8px;
}

.intel-feature-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
}


/* ── Intel V2 — new 2-col layout with screenshot ── */
.intel-grid-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.intel-text-v2 {}

.intel-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.intel-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.intel-checklist li strong {
  color: #f8fafc;
}

.intel-check {
  color: #f59e0b;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.intel-screenshot-wrap {
  display: flex;
  justify-content: center;
}

.intel-screenshot-frame {
  position: relative;
  max-width: 480px;
  width: 100%;
}

.intel-screenshot-label {
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.3);
  color: #f59e0b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  padding: 8px 16px;
  text-align: center;
  margin-bottom: 0;
}

.intel-screenshot-img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255,255,255,0.08);
  border-top: none;
}

@media (max-width: 900px) {
  .intel-grid-v2 {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .intel-screenshot-wrap { display: none; }
}

@media (max-width: 600px) {
  .intel-checklist li { font-size: 0.875rem; }
}


/* ══════════════════════════════════════════════════════
   BLOG PREVIEW
══════════════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.blog-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.blog-card:hover {
  border-color: #f59e0b;
  box-shadow: 0 8px 24px rgba(245,158,11,0.1);
}

.blog-card-image {
  background: #0a1628;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f59e0b;
  margin-bottom: 10px;
}

.blog-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #0a1628;
  line-height: 1.4;
  margin-bottom: 12px;
}

.blog-card-excerpt {
  font-size: 14px;
  color: #64748b;
  line-height: 1.65;
  flex: 1;
}

.blog-card-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
  font-size: 12px;
  color: #94a3b8;
}

.blog-cta {
  text-align: center;
  margin-top: 48px;
}


/* ── Four-tier pricing grid ── */
.pricing-grid-4col {
  grid-template-columns: repeat(4, 1fr);
}
.pricing-card-enterprise {
  border: 2px solid #0a1628;
}
.pricing-amount-enterprise {
  font-size: 40px; font-weight: 800; color: #0f172a;
  line-height: 1; margin-bottom: 16px;
}
@media (max-width: 1200px) {
  .pricing-grid-4col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .pricing-grid-4col { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════
   TRUST TICKER
═══════════════════════════════════════════════════════ */
.trust-ticker {
  background: #0a1628;
  border-top: 1px solid rgba(245,158,11,0.2);
  border-bottom: 1px solid rgba(245,158,11,0.2);
  padding: 12px 0;
  overflow: hidden;
}
.trust-ticker-inner {
  overflow: hidden;
  white-space: nowrap;
}
.trust-ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  animation: ticker-scroll 40s linear infinite;
  will-change: transform;  /* promote to compositor layer — prevents layout/paint on each frame */
}
.trust-ticker-track span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
  white-space: nowrap;
}
.trust-ticker-track .trust-sep {
  color: #f59e0b;
  font-size: 10px;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trust-ticker:hover .trust-ticker-track {
  animation-play-state: paused;
}


/* ═══════════════════════════════════════════════════════
   ROTATING HERO TEXT
═══════════════════════════════════════════════════════ */
.hero-rotate-wrap {
  display: inline-block;
  min-width: 280px;
  text-align: left;
}
.hero-rotate {
  display: inline-block;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.hero-rotate.fade-out {
  opacity: 0;
  transform: translateY(-8px);
}
.hero-rotate.fade-in {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════════════════
   ANIMATED STAT COUNTERS
═══════════════════════════════════════════════════════ */
[data-counter] {
  display: inline-block;
}


/* ═══════════════════════════════════════════════════════
   TESTIMONIALS — avatar initials
═══════════════════════════════════════════════════════ */
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 0;
  background: #f59e0b;
  color: #0a1628;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.testimonial-location {
  font-size: 11px;
  color: #94a3b8;
  margin-top: 2px;
}


/* ═══════════════════════════════════════════════════════
   HERO — MOBILE FIXES FOR ROTATING TEXT
═══════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .hero-rotate-wrap {
    min-width: 160px;
  }
}

/* ── Small phone breakpoint (≤480px) ── */
@media (max-width: 480px) {
  .hero { padding: 120px 16px 60px; }
  .hero h1 { font-size: 32px; letter-spacing: -0.5px; }
  .hero-sub { font-size: 15px; }
  .hero-badge { font-size: 10px; padding: 6px 12px; }
  .hero-rotate-wrap { min-width: 120px; }
  .section { padding: 60px 16px; }
  .section-title { font-size: 26px; }
  .btn-lg { padding: 14px 20px; font-size: 13px; }
  .hero-actions { gap: 12px; }
  .hero-stats { gap: 16px; }
  .mission-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .pricing-card { padding: 24px 16px; }
  .intel-headline { font-size: 26px; }
  .products-grid { grid-template-columns: 1fr; }
  .product-card h3 { font-size: 18px; }
}


/* ═══════════════════════════════════════════════════════
   PLATFORM PRODUCTS SECTION
═══════════════════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.08);
}

.product-icon {
  width: 48px;
  height: 48px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.product-tag {
  font-size: 11px;
  font-weight: 700;
  color: #f59e0b;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.product-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin: 0 0 12px;
}

.product-card > p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
  margin: 0 0 20px;
}

.product-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}

.product-list li {
  font-size: 13px;
  color: #475569;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.product-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #f59e0b;
  font-weight: 700;
  font-size: 12px;
}

.product-cta {
  margin-top: auto;
}

@media (max-width: 1024px) {
  .products-grid { grid-template-columns: 1fr; max-width: 600px; margin-left: auto; margin-right: auto; }
}


/* ═══════════════════════════════════════════════════════
   ADVISORY SERVICES CALLOUT
   Three clickable service cards: AI Compliance, GEO, Intelligence
═══════════════════════════════════════════════════════ */
.services-callout {
  background: #0a1628;
  padding: 80px 24px;
}

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

.services-callout-header {
  text-align: center;
  margin-bottom: 48px;
}

.services-callout-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin: 12px 0 16px;
  letter-spacing: -0.02em;
}

.services-callout-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 32px 28px;
  text-decoration: none;
  color: #ffffff;
  position: relative;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.service-card:hover {
  border-color: #f59e0b;
  background: rgba(245,158,11,0.06);
  text-decoration: none;
}

.service-card:focus-visible {
  outline: 3px solid #f59e0b;
  outline-offset: 2px;
}

.service-card-featured {
  background: #f59e0b;
  border-color: #f59e0b;
  color: #0a1628;
}

.service-card-featured:hover {
  background: #fbbf24;
  border-color: #fbbf24;
}

.service-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #0a1628;
  color: #f59e0b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  text-transform: uppercase;
}

.service-card-icon {
  margin-bottom: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245,158,11,0.3);
  background: rgba(245,158,11,0.08);
}

.service-card-featured .service-card-icon {
  border-color: rgba(10,22,40,0.2);
  background: rgba(10,22,40,0.1);
}

.service-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f59e0b;
  margin-bottom: 8px;
}

.service-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  margin: 0 0 12px;
}

.service-card-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin: 0 0 24px;
  flex: 1;
}

.service-card-cta {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #f59e0b;
  border-top: 1px solid rgba(245,158,11,0.25);
  padding-top: 16px;
  margin-top: auto;
  display: block;
}

@media (max-width: 900px) {
  .services-callout-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .services-callout { padding: 56px 16px; }
  .service-card { padding: 24px 20px; }
}


/* ═══════════════════════════════════════════════════════
   SKIP-TO-CONTENT LINK (Accessibility — WCAG 2.4.1)
═══════════════════════════════════════════════════════ */
.skip-link {
  position: fixed;
  top: -120px;
  left: 16px;
  z-index: 9999;
  background: #f59e0b;
  color: #0a1628;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 0;
  transition: top 0.15s ease;
  border: 2px solid #0a1628;
}

.skip-link:focus {
  top: 16px;
  outline: 3px solid #0a1628;
  outline-offset: 2px;
}
