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

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

:root {
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --navy: #0f172a;
  --navy-2: #1e293b;
  --slate: #334155;
  --gray: #64748b;
  --gray-light: #94a3b8;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --teal: #0d9488;
  --teal-bg: #f0fdfa;
  --teal-border: #ccfbf1;
  --teal-dark: #0f766e;
  --blue: #2563eb;
  --blue-bg: #eff6ff;
  --blue-border: #dbeafe;
  --red: #dc2626;
  --red-bg: #fef2f2;
  --emerald: #059669;
  --emerald-bg: #ecfdf5;
  --emerald-border: #a7f3d0;
  --amber: #d97706;
  --amber-bg: #fffbeb;
  --amber-border: #fde68a;
  --purple: #7c3aed;
  --purple-bg: #f5f3ff;
  --glow-teal: rgba(13, 148, 136, 0.35);
  --glow-blue: rgba(37, 99, 235, 0.25);
}

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

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

body {
  font-family: 'Inter', -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(13, 148, 136, 0.3),
    0 4px 12px rgba(13, 148, 136, 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: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  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: var(--navy);
  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(13, 148, 136, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 15% 85%, rgba(37, 99, 235, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(13, 148, 136, 0.05) 0%, transparent 70%),
    linear-gradient(180deg, #0d1425 0%, var(--navy) 30%, #0a1020 100%);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 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(13, 148, 136, 0.08);
  border: 1px solid rgba(13, 148, 136, 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: #fff;
  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-light);
  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: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 28px 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.hero-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0), rgba(13, 148, 136, 0));
  -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: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 0 40px rgba(13, 148, 136, 0.08);
}

.hero-feature:hover::before {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.5), rgba(37, 99, 235, 0.3));
}

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

.hero-feature h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

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

/* Hero trust bar */
.hero-trust {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  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: #fff;
  letter-spacing: -0.5px;
}

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

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


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

.page-hero {
  background: var(--navy);
  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(13, 148, 136, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(37, 99, 235, 0.08) 0%, transparent 55%),
    linear-gradient(180deg, #0d1425 0%, var(--navy) 50%, #0c1222 100%);
}

.page-hero .hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 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: #fff;
  font-size: 52px;
  letter-spacing: -1.5px;
}

.page-hero .section-subtitle {
  color: var(--gray-light);
  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: 40px 36px;
  border-radius: 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  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.05);
}

.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 {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  opacity: 0;
  transition: opacity 0.4s;
}

.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(13, 148, 136, 0.1);
}

.service-card:hover::before {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.3), rgba(37, 99, 235, 0.2), rgba(13, 148, 136, 0.1));
}

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

.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);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  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);
  border-left: 3px solid var(--red);
}

.v-card-2 {
  top: 110px;
  right: -10px;
  transform: rotate(1.5deg);
  border-left: 3px solid var(--red);
}

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

.v-card-4 {
  top: 360px;
  right: 10px;
  transform: rotate(2deg);
  border-left: 3px solid var(--blue);
}

.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(--navy);
  color: #fff;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.2);
}

.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(--navy);
}

.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: 20px;
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.protect-col.risk {
  border-top: 3px solid var(--red);
}

.protect-col.fix {
  border-top: 3px solid var(--emerald);
}

.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);
  box-shadow: 0 0 12px rgba(220, 38, 38, 0.3);
}

.protect-col h3.fix .dot {
  background: var(--emerald);
  box-shadow: 0 0 12px rgba(5, 150, 105, 0.3);
}

.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: 40px 24px;
  border-radius: 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  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.05);
}

.fo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  opacity: 0;
  transition: opacity 0.3s;
}

.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);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
  background: var(--bg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.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(240, 253, 250, 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(13, 148, 136, 0.12);
  transition: all 0.3s;
}

.tl-step:hover .tl-dot {
  background: var(--teal);
  box-shadow: 0 0 0 8px rgba(13, 148, 136, 0.15), 0 0 20px rgba(13, 148, 136, 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: 44px 40px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--bg);
  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.05);
}

.why-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(13, 148, 136, 0.02) 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 {
  width: 100%;
  height: 4px;
  border-radius: 4px 4px 0 0;
  margin-bottom: 28px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.why-card-bar.teal {
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
}

.why-card-bar.blue {
  background: linear-gradient(90deg, var(--blue), #1d4ed8);
}

.why-card-bar.purple {
  background: linear-gradient(90deg, var(--purple), #6d28d9);
}

.why-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  margin-top: 8px;
  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(13, 148, 136, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 20%, rgba(37, 99, 235, 0.06) 0%, transparent 50%),
    var(--navy);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 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: #fff;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.cta-inner p {
  font-size: 18px;
  color: var(--gray-light);
  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: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 16px 20px;
  text-align: left;
  transition: all 0.3s;
}

.cta-contact-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
}

.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: #fff;
}

.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);
  border-radius: 24px;
  padding: 56px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-main-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
}

.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);
  border-radius: 24px;
  padding: 56px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.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: 40px 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  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.05);
}

.process-step::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  opacity: 0;
  transition: opacity 0.3s;
}

.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(240, 253, 250, 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 {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--teal);
}

.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: 44px 40px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  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.05);
}

.qual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--teal), var(--blue));
  opacity: 0;
  transition: opacity 0.3s;
}

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

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

.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(13, 148, 136, 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(32px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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


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

@media (max-width: 1024px) {
  .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;
  }

  .nav-links, .nav-cta .btn {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .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;
  }
}
