@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&family=Noto+Sans+Bengali:wght@400;500;600;700;800&display=swap');

/* ================================================================
   LOOKOUT RESILIENCE — Complete CSS
   Modern security company website design
   ================================================================ */

:root {
  --bg: #ffffff;
  --bg-soft: #fffaf6;
  --navy: #1a1a2e;
  --navy-2: #2d2d44;
  --slate: #3d3d56;
  --gray: #6b7280;
  --gray-light: #9ca3af;
  --border: #f0e6dc;
  --border-light: #fdf5ee;
  --teal: #e97316;
  --teal-bg: #fff7ed;
  --teal-border: #fed7aa;
  --teal-dark: #c2410c;
  --blue: #f59e0b;
  --blue-bg: #fffbeb;
  --blue-border: #fde68a;
  --red: #dc2626;
  --red-bg: #fef2f2;
  --emerald: #059669;
  --emerald-bg: #ecfdf5;
  --emerald-border: #a7f3d0;
  --amber: #ea580c;
  --amber-bg: #fff7ed;
  --amber-border: #fdba74;
  --purple: #d97706;
  --purple-bg: #fffbeb;
  --glow-teal: rgba(233, 115, 22, 0.35);
  --glow-blue: rgba(245, 158, 11, 0.25);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', 'Noto Sans Bengali', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--navy);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}


/* ================================================================
   BUTTONS
   ================================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
}

.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-3px);
  box-shadow:
    0 12px 32px rgba(233, 115, 22, 0.3),
    0 4px 12px rgba(233, 115, 22, 0.2);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-white {
  background: #fff;
  color: var(--navy);
}

.btn-white:hover {
  background: var(--bg-soft);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-bg);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: var(--bg-soft);
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 16px;
  border-radius: 14px;
  letter-spacing: 0.01em;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 13px;
  border-radius: 10px;
}


/* ================================================================
   NAVBAR
   ================================================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.88);
  border-bottom-color: rgba(226, 232, 240, 0.6);
  box-shadow: 0 1px 24px rgba(0, 0, 0, 0.04), 0 0 1px rgba(0, 0, 0, 0.06);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.2s;
}

.logo:hover {
  opacity: 0.8;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  letter-spacing: -0.5px;
}

.logo-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.3px;
}

.logo-name span {
  color: var(--teal);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
  transition: all 0.25s;
  padding: 8px 14px;
  border-radius: 8px;
  position: relative;
}

.nav-links a:hover {
  color: var(--navy);
  background: rgba(15, 23, 42, 0.04);
}

.nav-links a.active {
  color: var(--navy);
  font-weight: 600;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  border-radius: 6px;
  transition: background 0.2s;
}

.mobile-toggle:hover {
  background: rgba(15, 23, 42, 0.04);
}

.mobile-toggle span {
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 24px 32px;
  z-index: 999;
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu a {
  display: block;
  padding: 16px 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid var(--border-light);
  border-radius: 0;
  transition: all 0.2s;
}

.mobile-menu a:hover {
  background: var(--bg-soft);
  padding-left: 20px;
}

.mobile-menu .btn {
  margin-top: 20px;
  justify-content: center;
  border-bottom: none;
}


/* ================================================================
   HERO (HOMEPAGE)
   ================================================================ */

.hero {
  min-height: 100vh;
  background: #ffffff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 75% 30%, rgba(233, 115, 22, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 15% 85%, rgba(245, 158, 11, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(233, 115, 22, 0.03) 0%, transparent 70%),
    linear-gradient(180deg, #ffffff 0%, #fffaf6 30%, #ffffff 100%);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  padding: 140px 0 60px;
}

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

.hero-badge {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(233, 115, 22, 0.08);
  border: 1px solid rgba(233, 115, 22, 0.18);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
  font-weight: 600;
}

.hero-title {
  font-size: 62px;
  font-weight: 900;
  line-height: 1.04;
  color: var(--navy);
  letter-spacing: -2.5px;
  margin-bottom: 28px;
}

.hero-title em {
  font-style: normal;
  color: var(--teal);
  display: inline;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* Hero feature cards — floating glass panels */
.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-feature {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 28px 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.hero-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, transparent, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: background 0.4s;
  pointer-events: none;
}

.hero-feature:hover {
  background: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(233, 115, 22, 0.15);
}

.hero-feature:hover::before {
  background: linear-gradient(135deg, rgba(233, 115, 22, 0.4), rgba(245, 158, 11, 0.25));
}

.hero-feature-icon {
  font-size: 28px;
  margin-bottom: 16px;
  filter: saturate(0.8);
}

.hero-feature h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.hero-feature p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* Hero trust bar */
.hero-trust {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 40px 0 56px;
}

.hero-trust-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.trust-stat {
  text-align: center;
  flex: 1;
  max-width: 200px;
  padding: 0 24px;
}

.trust-stat-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 32px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.5px;
}

.trust-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray);
  margin-top: 6px;
  font-weight: 500;
}

.trust-stat-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, var(--border), transparent);
  flex-shrink: 0;
}


/* ================================================================
   PAGE HERO (INNER PAGES)
   ================================================================ */

.page-hero {
  background: var(--bg-soft);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(233, 115, 22, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(245, 158, 11, 0.04) 0%, transparent 55%),
    linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 50%, #ffffff 100%);
}

.page-hero .hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 10%, transparent 70%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero .section-tag {
  color: var(--teal);
}

.page-hero .section-tag::before {
  background: var(--teal);
}

.page-hero .section-title {
  color: var(--navy);
  font-size: 52px;
  letter-spacing: -1.5px;
}

.page-hero .section-subtitle {
  color: var(--gray);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero .section-header {
  margin-bottom: 0;
}


/* ================================================================
   SECTION BASICS
   ================================================================ */

.section {
  padding: 140px 0;
  position: relative;
}

.section-alt {
  background: var(--bg-soft);
}

/* Add subtle top-border accent to alternating sections */
.section-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 400px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.section-header {
  max-width: 640px;
  margin-bottom: 72px;
}

.section-header.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-tag::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-header.centered .section-tag {
  justify-content: center;
}

.section-header.centered .section-tag::before {
  display: none;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.75;
}


/* ================================================================
   SECTION CTA LINK
   ================================================================ */

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


/* ================================================================
   SERVICES GRID
   ================================================================ */

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

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

.service-card {
  padding: 36px 32px;
  border-radius: 16px;
  background: var(--bg);
  border: 1px solid var(--border-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, transparent, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: background 0.4s;
  pointer-events: none;
  z-index: 1;
}

.service-card::after {
  display: none;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(233, 115, 22, 0.12);
}

.service-card:hover::before {
  background: linear-gradient(135deg, rgba(233, 115, 22, 0.3), rgba(245, 158, 11, 0.2), rgba(233, 115, 22, 0.1));
}

.service-card:hover::after {
  display: none;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.service-icon.teal {
  background: var(--teal-bg);
}

.service-icon.blue {
  background: var(--blue-bg);
}

.service-icon.amber {
  background: var(--amber-bg);
}

.service-icon.purple {
  background: var(--purple-bg);
}

.service-icon.emerald {
  background: var(--emerald-bg);
}

.service-icon.red {
  background: var(--red-bg);
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
  position: relative;
  z-index: 2;
}

.service-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

/* Service detail list (services page) */
.service-detail-list {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  position: relative;
  z-index: 2;
}

.service-detail-list li {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.65;
  padding: 6px 0 6px 20px;
  position: relative;
}

.service-detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.35;
}


/* ================================================================
   PROBLEM STATEMENT (SPLIT SECTION)
   ================================================================ */

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse > * {
  direction: ltr;
}

.split-text .section-tag {
  margin-bottom: 16px;
}

.split-text h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.12;
  letter-spacing: -0.8px;
}

.split-text p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.split-text p strong {
  color: var(--navy);
  font-weight: 700;
}

.problem-list {
  margin-top: 24px;
}

.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  font-size: 15px;
  color: var(--slate);
  line-height: 1.55;
  border-bottom: 1px solid var(--border-light);
}

.problem-list li:last-child {
  border-bottom: none;
}

.problem-list .pi {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-top: 1px;
}

.problem-list .pi.risk {
  background: var(--red-bg);
}

.problem-list .pi.fix {
  background: var(--emerald-bg);
}

/* Visual card stack — dramatic overlapping cards with tilts and glows */
.visual-cards {
  position: relative;
  min-height: 480px;
  perspective: 1000px;
}

.v-card {
  position: absolute;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  width: 310px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.v-card:hover {
  z-index: 10;
  transform: rotate(0deg) scale(1.04) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.v-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.v-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.65;
}

.v-card-1 {
  top: 0;
  left: 10px;
  transform: rotate(-2deg);
}

.v-card-2 {
  top: 110px;
  right: -10px;
  transform: rotate(1.5deg);
}

.v-card-3 {
  top: 240px;
  left: 30px;
  transform: rotate(-1deg);
}

.v-card-4 {
  top: 360px;
  right: 10px;
  transform: rotate(2deg);
}

.v-card .v-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
}

.v-tag.critical {
  background: var(--red-bg);
  color: var(--red);
}

.v-tag.high {
  background: var(--amber-bg);
  color: var(--amber);
}

.v-tag.medium {
  background: var(--blue-bg);
  color: var(--blue);
}


/* ================================================================
   PROTECTION TABS
   ================================================================ */

.protect-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  background: var(--bg);
  padding: 6px;
  border-radius: 16px;
  border: 1px solid var(--border);
  width: fit-content;
}

.protect-tab {
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--gray);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  position: relative;
}

.protect-tab:hover {
  color: var(--navy);
  background: var(--bg-soft);
}

.protect-tab.active {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 4px 16px rgba(233, 115, 22, 0.25);
}

.protect-tab.active::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--teal);
}

.protect-panel {
  display: none;
}

.protect-panel.active {
  display: block;
  animation: fadeInUp 0.4s ease;
}

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

.protect-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.protect-col {
  background: var(--bg);
  border-radius: 16px;
  padding: 36px;
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.protect-col.risk {
  background: linear-gradient(180deg, #fef8f8, var(--bg));
}

.protect-col.fix {
  background: linear-gradient(180deg, #f0fdf6, var(--bg));
}

.protect-col h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.protect-col h3.risk {
  color: var(--red);
}

.protect-col h3.fix {
  color: var(--emerald);
}

.protect-col h3 .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.protect-col h3.risk .dot {
  background: var(--red);
}

.protect-col h3.fix .dot {
  background: var(--emerald);
}

.protect-col ul li {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.65;
  padding: 12px 0 12px 22px;
  position: relative;
  border-bottom: 1px solid var(--border-light);
}

.protect-col ul li:last-child {
  border-bottom: none;
}

.protect-col ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.protect-col.risk ul li::before {
  background: var(--red);
  opacity: 0.25;
}

.protect-col.fix ul li::before {
  background: var(--emerald);
  opacity: 0.35;
}


/* ================================================================
   FORTRESS PACKAGE
   ================================================================ */

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

.fo-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: 16px;
  background: var(--bg);
  border: 1px solid var(--border-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.fo-card::before {
  display: none;
}

.fo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.06);
  border-color: transparent;
}

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

.fo-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.fo-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
}

.fo-label {
  font-size: 13px;
  color: var(--gray);
  margin-top: 6px;
  letter-spacing: 0.3px;
}


/* ================================================================
   TABLES (PACKAGE PAGE)
   ================================================================ */

.service-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 32px;
  background: var(--bg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.service-table thead th {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-dark);
  font-weight: 600;
  text-align: left;
  padding: 18px 28px;
  background: linear-gradient(135deg, var(--teal-bg), rgba(255, 247, 237, 0.5));
  border-bottom: 1px solid var(--teal-border);
}

.service-table tbody td {
  font-size: 14.5px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--border-light);
  color: var(--slate);
  line-height: 1.6;
  transition: background 0.2s;
}

.service-table tbody tr:hover td {
  background: rgba(248, 250, 252, 0.7);
}

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

.service-table .td-label {
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  position: relative;
  padding-left: 40px;
}

.service-table .td-label::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
}


/* ================================================================
   TIMELINE
   ================================================================ */

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.timeline-grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 12%;
  right: 12%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--purple));
  border-radius: 3px;
  opacity: 0.6;
}

.tl-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.tl-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 4px solid var(--teal);
  margin: 20px auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(233, 115, 22, 0.12);
  transition: all 0.3s;
}

.tl-step:hover .tl-dot {
  background: var(--teal);
  box-shadow: 0 0 0 8px rgba(233, 115, 22, 0.15), 0 0 20px rgba(233, 115, 22, 0.2);
  transform: scale(1.15);
}

.tl-week {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
}

.tl-step h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.tl-step p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}


/* ================================================================
   WHY US CARDS
   ================================================================ */

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

.why-card {
  padding: 40px 36px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  background: var(--bg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.why-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(233, 115, 22, 0.03) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.06);
  border-color: transparent;
}

.why-card:hover::after {
  opacity: 1;
}

.why-card-bar {
  display: none;
}

.why-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  margin-top: 0;
  letter-spacing: -0.3px;
}

.why-card ul li {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.65;
  padding: 8px 0 8px 22px;
  position: relative;
}

.why-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.4;
}


/* ================================================================
   CTA SECTION
   ================================================================ */

.cta-section {
  padding: 160px 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 110%, rgba(233, 115, 22, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 20%, rgba(245, 158, 11, 0.04) 0%, transparent 50%),
    var(--bg-soft);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.015) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 10%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-size: 48px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.cta-inner p {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 44px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 56px;
}

.cta-contacts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 20px;
  text-align: left;
  transition: all 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.cta-contact-item:hover {
  background: var(--teal-bg);
  border-color: var(--teal-border);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.cta-contact-icon {
  font-size: 18px;
  width: 32px;
  text-align: center;
  flex-shrink: 0;
}

.cta-contact-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-light);
}

.cta-contact-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.cta-nda {
  margin-top: 48px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray-light);
  opacity: 0.4;
}


/* ================================================================
   CONTACT PAGE
   ================================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  margin-bottom: 100px;
}

.contact-main-card {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 56px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.contact-main-card::before {
  display: none;
}

.contact-main-card h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.contact-main-card p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 16px;
}

.contact-main-actions {
  margin-top: 36px;
}

.contact-details-card {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 56px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.contact-details-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
  letter-spacing: -0.3px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg-soft);
  border-radius: 14px;
  border: 1px solid var(--border-light);
  transition: all 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.contact-item:hover {
  border-color: var(--teal-border);
  background: var(--teal-bg);
  transform: translateX(4px);
}

.contact-item-icon {
  font-size: 22px;
  width: 40px;
  text-align: center;
  flex-shrink: 0;
}

.contact-item-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}

.contact-item-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.contact-item-sub {
  font-size: 12px;
  color: var(--gray);
  font-weight: 400;
}

/* Process steps (contact page) */
.contact-process {
  margin-bottom: 100px;
}

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

.process-step {
  text-align: center;
  padding: 36px 24px;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.process-step::before {
  display: none;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.06);
  border-color: transparent;
}

.process-step:hover::before {
  opacity: 1;
}

.process-step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 32px;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 18px;
  opacity: 0.8;
}

.process-step h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.process-step p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* NDA notice (contact page) */
.contact-nda-notice {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 36px 40px;
  background: linear-gradient(135deg, var(--teal-bg), rgba(255, 247, 237, 0.3));
  border: 1px solid var(--teal-border);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-nda-notice::before {
  display: none;
}

.nda-icon {
  font-size: 32px;
  flex-shrink: 0;
  margin-top: 2px;
}

.nda-text h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.nda-text p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}


/* ================================================================
   QUALIFICATIONS GRID (ABOUT PAGE)
   ================================================================ */

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

.qual-card {
  padding: 40px 36px;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.qual-card::before {
  display: none;
}

.qual-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.06);
  border-color: transparent;
}

.qual-card:hover::before {
  display: none;
}

.qual-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.qual-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.qual-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}


/* ================================================================
   FOOTER
   ================================================================ */

.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 64px 0 40px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 600px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233, 115, 22, 0.3), transparent);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: start;
}

.footer .logo-icon {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer .logo-name {
  color: #fff;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-light);
  transition: all 0.25s;
  padding: 6px 14px;
  border-radius: 8px;
}

.footer-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.footer-right {
  text-align: right;
}

.footer-right p {
  font-size: 12px;
  color: var(--gray-light);
  line-height: 1.6;
}

.footer-right .foot-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 6px;
}


/* ================================================================
   ANIMATIONS
   ================================================================ */

[data-animate] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="delay-1"] {
  transition-delay: 0.08s;
}

[data-animate="delay-2"] {
  transition-delay: 0.16s;
}

[data-animate="delay-3"] {
  transition-delay: 0.24s;
}


/* ================================================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ================================================================ */

@media (max-width: 1024px) {
  /* The seven nav labels plus the logo and the "Get Protected" button
     need about 940px of navbar to sit on one line. Below that they
     overflow the bar and the last items are pushed out of sight, so
     the hamburger has to take over here rather than at 768px. */
  .nav-links, .nav-cta .btn {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .container {
    padding: 0 32px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 56px;
  }

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

  .hero-features {
    grid-template-columns: 1fr 1fr;
  }

  .hero-title {
    font-size: 48px;
  }

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

  .services-grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .split-section.reverse {
    direction: ltr;
  }

  .visual-cards {
    min-height: auto;
    position: relative;
  }

  .v-card {
    position: relative;
    width: 100%;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    margin-bottom: 14px;
    transform: none !important;
  }

  .v-card:hover {
    transform: translateY(-2px) !important;
  }

  .fortress-overview {
    grid-template-columns: 1fr 1fr;
  }

  .timeline-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .timeline-grid::before {
    display: none;
  }

  .tl-dot {
    margin: 0 auto 16px;
  }

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

  .why-card:last-child {
    grid-column: 1 / -1;
  }

  .section-title {
    font-size: 36px;
    letter-spacing: -0.8px;
  }

  .page-hero .section-title {
    font-size: 40px;
  }

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

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

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

  .cta-inner h2 {
    font-size: 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer-right {
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}


/* ================================================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ================================================================ */

@media (max-width: 768px) {
  .section {
    padding: 100px 0;
  }

  .section-header {
    margin-bottom: 56px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 120px 0 48px;
  }

  .hero-title {
    font-size: 38px;
    letter-spacing: -1.5px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

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

  .hero-actions .btn {
    justify-content: center;
    width: 100%;
  }

  .hero-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-feature {
    padding: 24px 20px;
  }

  .hero-trust-inner {
    flex-wrap: wrap;
    gap: 28px;
  }

  .trust-stat-divider {
    display: none;
  }

  .trust-stat {
    flex: 0 0 42%;
  }

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

  .services-grid-3 {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 30px;
    letter-spacing: -0.5px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .split-text h2 {
    font-size: 28px;
  }

  .protect-tabs {
    width: 100%;
  }

  .protect-tab {
    padding: 10px 16px;
    font-size: 12px;
    flex: 1;
    text-align: center;
    min-width: 0;
  }

  .protect-tab.active::after {
    display: none;
  }

  .protect-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .protect-col {
    padding: 28px;
  }

  .fortress-overview {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .why-card:last-child {
    grid-column: auto;
  }

  .why-card {
    padding: 36px 32px;
  }

  .cta-section {
    padding: 100px 0;
  }

  .cta-inner h2 {
    font-size: 32px;
    letter-spacing: -0.8px;
  }

  .cta-inner p {
    font-size: 16px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-contacts {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 48px 0 32px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    justify-items: center;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .footer-right {
    text-align: center;
  }

  .page-hero {
    padding: 130px 0 72px;
  }

  .page-hero .section-title {
    font-size: 32px;
  }

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

  .contact-main-card {
    padding: 36px;
  }

  .contact-details-card {
    padding: 36px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

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

  .contact-nda-notice {
    flex-direction: column;
    gap: 16px;
    padding: 28px 32px;
  }

  .contact-process {
    margin-bottom: 64px;
  }

  .contact-grid {
    margin-bottom: 64px;
  }
}


/* ================================================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ================================================================ */

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .navbar-inner {
    padding: 0 20px;
  }

  .section {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 44px;
  }

  .hero-content {
    padding: 110px 0 40px;
  }

  .hero-title {
    font-size: 30px;
    letter-spacing: -1px;
  }

  .hero-badge {
    font-size: 9px;
    padding: 6px 14px;
  }

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

  .page-hero {
    padding: 120px 0 60px;
  }

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

  .fortress-overview {
    grid-template-columns: 1fr;
  }

  .fo-card {
    padding: 28px 20px;
  }

  .contact-main-card {
    padding: 28px;
  }

  .contact-details-card {
    padding: 28px;
  }

  .protect-tabs {
    flex-direction: column;
    gap: 4px;
  }

  .protect-tab {
    text-align: center;
  }

  .trust-stat {
    flex: 0 0 100%;
  }

  .cta-inner h2 {
    font-size: 28px;
  }

  .cta-section {
    padding: 80px 0;
  }

  .why-card {
    padding: 32px 24px;
  }

  .service-card {
    padding: 32px 28px;
  }

  .btn-lg {
    padding: 16px 28px;
    font-size: 15px;
  }
}


/* ================================================================
   FOCUS / ACCESSIBILITY
   ================================================================ */

.btn:focus-visible,
.protect-tab:focus-visible,
.nav-links a:focus-visible,
.mobile-toggle:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ================================================================
   BLOG — index list, filter pills, and article pages
   ================================================================ */

/* The post list sits directly under the page header. */
.blog-list {
  padding-top: 72px;
}

/* ── Tag filter pills ── */
.blog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
}

.filter-pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  transition: all 0.25s;
}

.filter-pill:hover {
  color: var(--navy);
  border-color: var(--teal-border);
}

.filter-pill.active {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.filter-pill:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/* ── Post cards ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.post-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  background: var(--bg);
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: inherit;
  text-decoration: none;
}

.post-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(233, 115, 22, 0.12);
  border-color: transparent;
}

.post-card-media {
  aspect-ratio: 1200 / 630;
  overflow: hidden;
  background: var(--navy);
}

.post-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.post-card:hover .post-card-media img {
  transform: scale(1.04);
}

.post-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 26px 28px 26px;
}

.post-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.post-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--teal-bg);
  border: 1px solid var(--teal-border);
  border-radius: 999px;
  padding: 5px 11px;
}

.post-date {
  font-size: 12px;
  color: var(--gray-light);
  white-space: nowrap;
}

.post-card-title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 12px;
}

.post-card-excerpt {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 22px;
}

.post-card-more {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-dark);
  transition: transform 0.25s;
}

.post-card:hover .post-card-more {
  color: var(--teal);
}

.blog-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--gray);
  font-size: 15px;
  padding: 40px 0;
}

/* ── Article header ── */
.article-hero {
  padding: 104px 0 56px;
}

.article-hero .article-head {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.article-back {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 26px;
  transition: color 0.25s;
}

.article-back:hover {
  color: var(--teal-dark);
}

.article-hero .section-tag {
  display: inline-flex;
  margin-bottom: 20px;
}

.article-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 24px;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--gray);
}

.article-meta-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gray-light);
}

/* ── Article body ── */
.article-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.78;
  color: var(--slate);
}

.article-body > * + * {
  margin-top: 24px;
}

.article-lead {
  font-size: 20px;
  line-height: 1.65;
  color: var(--navy-2);
  padding-bottom: 8px;
}

.article-body h2 {
  font-size: 27px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-top: 52px;
}

.article-body h3 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--navy);
  margin-top: 36px;
}

.article-body h3 + p {
  margin-top: 12px;
}

/* The global reset sets ul { list-style: none }, so article prose has to
   ask for its markers back. */
.article-body ul {
  list-style: disc outside;
  padding-left: 24px;
}

.article-body ol {
  list-style: decimal outside;
  padding-left: 24px;
}

.article-body ul ul {
  list-style: circle outside;
  margin-top: 10px;
}

.article-body li {
  margin-bottom: 10px;
}

.article-body li::marker {
  color: var(--teal);
}

.article-body a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-body a:hover {
  color: var(--teal);
}

.article-body strong {
  color: var(--navy);
  font-weight: 650;
}

.article-body code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.88em;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 2px 6px;
}

.article-body blockquote {
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 4px 0 4px 28px;
  border-left: 3px solid var(--teal);
  font-size: 19px;
  line-height: 1.6;
  font-style: italic;
  color: var(--navy-2);
}

.article-body img {
  border-radius: 14px;
  margin-top: 36px;
  margin-bottom: 36px;
}

/* ── Blog responsive ── */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

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

  .article-body {
    font-size: 16.5px;
  }

  .article-lead {
    font-size: 18px;
  }

  .article-body h2 {
    font-size: 23px;
    margin-top: 42px;
  }

  .article-body blockquote {
    font-size: 17px;
    padding-left: 20px;
  }
}

@media (max-width: 480px) {
  .article-title {
    font-size: 25px;
  }

  .post-card-body {
    padding: 24px 22px;
  }
}

/* The article body follows straight on from the header — no 140px gap. */
.article-hero + .section {
  padding-top: 8px;
}

/* ── Article cover image ──
   Sits at the top of the article header, above the title, so it is in
   view without scrolling. */
.article-cover {
  margin: 0 auto 36px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.10);
}

.article-back {
  text-align: left;
}

.article-cover img {
  width: 100%;
  height: auto;
}

/* ── Share row ── */
.share-row {
  max-width: 720px;
  margin: 56px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.share-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.share-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--slate);
  cursor: pointer;
  transition: all 0.25s;
  padding: 0;
}

.share-btn svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.share-btn:hover {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-2px);
}

.share-btn:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.share-x:hover        { background: #000;     border-color: #000; }
.share-facebook:hover { background: #1877f2;  border-color: #1877f2; }
.share-linkedin:hover { background: #0a66c2;  border-color: #0a66c2; }
.share-whatsapp:hover { background: #25d366;  border-color: #25d366; }
.share-copy:hover,
.share-native:hover   { background: var(--teal); border-color: var(--teal); }

.share-toast {
  font-size: 13px;
  font-weight: 600;
  color: var(--emerald);
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s;
}

.share-toast.visible {
  opacity: 1;
  transform: none;
}


/* ── In-article statistics ── */
.article-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 40px 0 44px;
}

.stat-tile {
  padding: 26px 20px;
  border-radius: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  text-align: center;
}

.stat-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--teal-dark);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 13px;
  line-height: 1.55;
  color: var(--gray);
}

/* ── Source list and footnote references ── */
.article-body sup a {
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  color: var(--teal-dark);
  background: var(--teal-bg);
  border: 1px solid var(--teal-border);
  border-radius: 5px;
  padding: 1px 5px;
  margin-left: 3px;
}

.article-body sup a:hover {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
}

.article-sources {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--gray);
}

.article-sources li {
  margin-bottom: 12px;
  scroll-margin-top: 100px;
}

.article-sources li:target {
  background: var(--teal-bg);
  border-radius: 6px;
  padding: 4px 8px;
  margin-left: -8px;
}

.article-note {
  font-size: 13.5px;
  color: var(--gray-light);
  font-style: italic;
}

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

@media (max-width: 480px) {
  .article-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stat-num {
    font-size: 26px;
  }
}

/* ================================================================
   ARTICLE DATA COMPONENTS
   ================================================================
   Stat cards, tables, bar charts and callouts for reported pieces.
   Everything is scoped under .article-body so prose-only posts are
   untouched. Wide elements break the 720px measure on desktop only;
   below that they stay inside it and scroll horizontally.
   ================================================================ */

.article-body [lang="bn"],
[lang="bn"] .article-body {
  line-height: 1.9;
}

@media (min-width: 1080px) {
  .article-body .wide {
    width: calc(100% + 160px);
    margin-left: -80px;
    margin-right: -80px;
  }
}

/* ── Stat cards ── */
.article-body .stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.article-body .stat-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
}

.article-body .stat-value {
  display: block;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--teal-dark);
}

.article-body .stat-label {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray);
}

/* ── Tables ── */
.article-body .table-wrap {
  margin-top: 36px;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow-x: auto;
}

.article-body table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.55;
}

.article-body caption {
  caption-side: top;
  text-align: left;
  padding: 16px 18px 13px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.article-body th {
  padding: 11px 18px;
  text-align: left;
  font-size: 13.5px;
  font-weight: 650;
  color: var(--navy);
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.article-body td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border-light);
  vertical-align: top;
}

.article-body tbody tr:last-child td {
  border-bottom: none;
}

.article-body td.num {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.article-body tfoot td {
  font-weight: 700;
  color: var(--navy);
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: none;
}

.article-body .table-note {
  margin-top: 12px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--gray);
}

/* ── Bar charts ── */
.article-body .bars {
  margin-top: 36px;
  padding: 24px 26px 26px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.article-body .bars h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}

.article-body .bars .bars-sub {
  margin-top: 8px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--gray);
}

.article-body .bar-row {
  margin-top: 20px;
}

.article-body .bar-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 8px;
  font-size: 14px;
}

.article-body .bar-head b {
  font-weight: 650;
  color: var(--navy);
}

.article-body .bar-head span {
  color: var(--gray);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.article-body .bar-track {
  height: 13px;
  border-radius: 999px;
  background: var(--teal-border);
  overflow: hidden;
}

.article-body .bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal-dark), var(--teal));
}

.article-body .bar-fill.neg {
  background: linear-gradient(90deg, var(--red), #f87171);
}

.article-body .bars.negative .bar-track {
  background: var(--border);
}

.article-body .bar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
  font-size: 13px;
  color: var(--gray);
}

.article-body .bar-legend i {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 7px;
  border-radius: 3px;
  vertical-align: -1px;
}

.article-body .bar-legend i.fill {
  background: var(--teal);
}

.article-body .bar-legend i.rest {
  background: var(--teal-border);
}

.article-body .bars .table-note {
  margin-top: 18px;
}

/* ── Callouts ── */
.article-body .callout {
  margin-top: 36px;
  padding: 22px 26px 24px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: 0 14px 14px 0;
}

.article-body .callout > * + * {
  margin-top: 12px;
}

.article-body .callout-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-dark);
}

.article-body .callout h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--navy);
}

.article-body .callout p,
.article-body .callout li {
  font-size: 16px;
}

.article-body .callout ul,
.article-body .callout ol {
  padding-left: 22px;
}

.article-body .callout.warn {
  border-left-color: var(--red);
  background: var(--red-bg);
  border-color: #fecaca;
}

.article-body .callout.warn .callout-tag {
  color: var(--red);
}

/* ── Quote attribution ── */
.article-body blockquote cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--gray);
}

/* ── Source list ── */
.article-body .sources {
  font-size: 14.5px;
  line-height: 1.7;
}

.article-body .sources li {
  margin-bottom: 14px;
}

@media (max-width: 640px) {
  .article-body .stat-value {
    font-size: 26px;
  }

  .article-body .bars,
  .article-body .callout {
    padding-left: 18px;
    padding-right: 18px;
  }

  .article-body table {
    font-size: 14px;
  }
}
