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

/* Color Variables & Design Tokens */
:root {
  /* Brand Blue Range (mapped to previous Teal variables) */
  --teal-50: #f0f7ff;
  --teal-100: #d2e9ff;
  --teal-200: #a3d3ff;
  --teal-500: #2793f2;
  --teal-600: #1273c5;
  --teal-700: #0b5797;
  --teal-800: #083d6a;
  --teal-900: #012a4a;
  
  /* Brand Orange/Gold Range (mapped to previous Gold variables) */
  --gold-50: #fff7eb;
  --gold-100: #ffeacc;
  --gold-200: #ffd199;
  --gold-500: #ffb042;
  --gold-600: #ff9a00;
  --gold-700: #d47f00;
  --gold-800: #a36200;
  --gold-900: #704300;
  
  /* Neutrals (mapped to Brand Blue-Grey) */
  --white: #ffffff;
  --slate-50: #ffffff; /* Clean white page background */
  --slate-100: #f4f8fc; /* Soft blue-grey alternative backgrounds */
  --slate-200: #e2effb; /* Soft blue-grey borders */
  --slate-300: #b3ccdf;
  --slate-400: #8faec7;
  --slate-600: #4b657a;
  --slate-700: #2a3d4c;
  --slate-800: #1a2732;
  --slate-900: #0b1a26; /* Dark navy text */
  --slate-950: #08121e; /* Deep dark blue background for legal/dark elements */
  --teal-400: #3f9ff7; /* Glowing brand blue */
  
  /* Alerts */
  --red-50: #fef2f2;
  --red-100: #fee2e2;
  --red-600: #dc2626;
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Outfit', var(--font-sans);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(15, 118, 110, 0.06), 0 4px 6px -4px rgba(15, 118, 110, 0.06);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.08);
  --shadow-gold: 0 10px 20px -3px rgba(212, 175, 55, 0.15);
  --shadow-teal: 0 10px 20px -3px rgba(13, 148, 136, 0.15);

  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
}

/* Global Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  color: var(--slate-700);
  background-color: var(--slate-50);
}

body {
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--slate-900);
  font-weight: 700;
  line-height: 1.25;
}

p {
  color: var(--slate-600);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

code {
  background: var(--slate-100);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
  font-family: monospace;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.grid {
  display: grid;
  gap: 32px;
}

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

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

@media (max-width: 992px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #012a4ad9, #2793f259);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

header.scrolled {
  background: linear-gradient(90deg, #012a4af2, #2793f273);
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.navbar {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 48px;
  margin: 0 auto;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.logo-icon, .logo-img {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-highlight {
  color: var(--teal-500);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

nav ul li a {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  opacity: 0.9;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

nav ul li a:hover {
  color: var(--gold-600);
  opacity: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  opacity: 0.9;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.btn-link:hover {
  color: var(--gold-600);
  opacity: 1;
}

.navbar .btn-primary {
  background: linear-gradient(90deg, #ff9a00, #ffb84d) !important;
  color: var(--white) !important;
  border-radius: 999px !important;
  box-shadow: 0 4px 14px rgba(255, 154, 0, 0.35) !important;
  border: none !important;
  padding: 8px 20px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  font-size: 13px !important;
  letter-spacing: 0.05em !important;
  transition: all 0.22s ease !important;
}

.navbar .btn-primary:hover {
  box-shadow: 0 6px 18px rgba(255, 154, 0, 0.5) !important;
  transform: translateY(-1px) !important;
}

/* Custom Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--border-radius-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--teal-700);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}

.btn-primary:hover {
  background-color: var(--teal-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.3);
  border-color: var(--gold-700);
}

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

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

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 4px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--slate-800);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .navbar {
    padding: 0 24px;
  }
}

/* Hero Section */
.hero {
  padding: 120px 0 100px 0;
  position: relative;
  background: linear-gradient(180deg, #071d33 0%, #0e3b63 50%, #0b2744 100%);
  color: var(--white);
}

.hero .hero-title {
  color: var(--white);
}

.hero .accent-teal {
  color: var(--teal-500);
}

.hero .hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.hero .tag-pill {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.hero .tag-pill:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.hero .btn-primary {
  background: linear-gradient(90deg, var(--gold-600) 0%, var(--gold-500) 100%);
  border: none;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255, 154, 0, 0.3);
}

.hero .btn-primary:hover {
  background: linear-gradient(90deg, var(--gold-700) 0%, var(--gold-600) 100%);
  box-shadow: 0 6px 18px rgba(255, 154, 0, 0.45);
  transform: translateY(-2px);
}

.hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
  background: transparent;
}

.hero .btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.hero::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(255,255,255,0) 70%);
  z-index: -1;
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--teal-50);
  border: 1px solid var(--teal-200);
  color: var(--teal-800);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  align-self: flex-start;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.tag-pill:hover {
  border-color: var(--gold-700);
  background-color: var(--gold-50);
  color: var(--gold-800);
}

.hero-title {
  font-size: 52px;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.accent-teal {
  color: var(--teal-700);
}

.hero-subtitle {
  font-size: 17px;
  color: var(--slate-600);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
}

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

.hero-stats .stat-item h4 {
  font-size: 20px;
  color: var(--teal-200);
  margin-bottom: 4px;
  font-weight: 700;
}

.hero-stats .stat-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

/* Live Overview Card */
.live-overview-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 24px;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 480px;
}

.live-overview-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-gold), var(--shadow-xl);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--slate-100);
  padding-bottom: 16px;
}

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

.window-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

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

.card-header-title {
  font-size: 13px;
  color: var(--slate-700);
  font-weight: 600;
}

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

.live-item {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--border-radius-md);
  padding: 16px;
  transition: all 0.3s ease;
}

.live-item:hover {
  border-color: var(--teal-200);
  box-shadow: var(--shadow-sm);
  transform: scale(1.02);
}

.live-item-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-400);
  margin-bottom: 8px;
}

.live-item-val {
  font-size: 18px;
  font-weight: 700;
  color: var(--teal-700);
}

.live-item-val.gold-text {
  color: var(--gold-700);
}

.live-item-full {
  grid-column: span 2;
  border-left: 4px solid var(--gold-700);
}

.pulse-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--teal-500);
  margin-right: 6px;
  animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(20, 184, 166, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(20, 184, 166, 0); }
}

/* Trust Section */
.trust-banner {
  padding: 40px 0;
  background-color: var(--white);
  border-top: 1px solid var(--slate-100);
  border-bottom: 1px solid var(--slate-100);
}

.trust-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-400);
  text-align: center;
  margin-bottom: 24px;
}

.trust-items {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  font-size: 15px;
  font-weight: 600;
  color: var(--slate-600);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.trust-item:hover {
  color: var(--teal-700);
  transform: translateY(-1px);
}

.trust-item::before {
  content: '✓';
  color: var(--gold-700);
  font-weight: bold;
}

/* Section Common Styling */
.section {
  padding: 70px 0;
}

.section-bg-alt {
  background-color: var(--slate-50);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 36px auto;
}

.section-header .tag-pill {
  align-self: center;
  display: inline-flex;
  margin-bottom: 16px;
}

.section-title {
  font-size: 38px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  color: var(--slate-900);
}

.section-subtitle {
  font-size: 16px;
  color: var(--slate-600);
}

/* Waste Minimization / Why Teams Switch Section */
.waste-table {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin: 0 auto 48px auto;
  max-width: 850px;
}

.waste-row {
  display: grid;
  grid-template-columns: 1fr 40px 1.2fr;
  align-items: center;
  padding: 16px 32px;
  border-bottom: 1px solid var(--slate-100);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .waste-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 24px;
    text-align: center;
  }
  .waste-problem {
    text-align: center !important;
  }
  .waste-fix {
    text-align: center !important;
  }
  .waste-arrow {
    transform: rotate(90deg);
    padding: 8px 0;
  }
}

.waste-row:last-child {
  border-bottom: none;
}

.waste-row:hover {
  background-color: var(--teal-50);
}

.waste-problem {
  color: var(--gold-700);
  font-weight: 600;
  font-size: 15px;
  text-align: left;
}

.waste-arrow {
  color: var(--teal-600);
  font-weight: bold;
  text-align: center;
  font-size: 18px;
}

.waste-fix {
  color: var(--slate-800);
  font-weight: 600;
  font-size: 15px;
}

.section-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 48px;
  flex-wrap: wrap;
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 800;
  color: var(--teal-700);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number.gold {
  color: var(--gold-700);
}

.stat-label {
  font-size: 14px;
  color: var(--slate-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Dark Platform Overview Section */
.dark-section {
  background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-800) 100%);
  color: var(--white);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.dark-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, rgba(255,255,255,0) 70%);
  z-index: 1;
  pointer-events: none;
}

.dark-section .section-title {
  color: var(--white);
}

.dark-section .section-subtitle {
  color: var(--slate-300);
}

.dark-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

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

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

.dark-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--border-radius-lg);
  padding: 32px 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
}

.dark-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--gold-700);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.1);
}

.dark-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dark-card-title::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--gold-700);
  border-radius: 50%;
}

.dark-card-desc {
  font-size: 14px;
  color: var(--slate-300);
  line-height: 1.6;
}

.dark-stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  position: relative;
  z-index: 2;
}

.dark-stat-item {
  text-align: center;
}

.dark-stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--gold-700);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.dark-stat-label {
  font-size: 13px;
  color: var(--slate-300);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Secure by Design Section */
.secure-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

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

.checklist {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.checklist-item {
  display: flex;
  gap: 16px;
}

.checklist-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: var(--teal-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-700);
  font-weight: bold;
  font-size: 12px;
  border: 1px solid var(--teal-100);
}

.checklist-content h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--slate-800);
}

.checklist-content p {
  font-size: 14px;
  color: var(--slate-600);
}

/* Policy Snapshot Card */
.policy-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  transition: all 0.3s ease;
}

.policy-card:hover {
  box-shadow: var(--shadow-gold), var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.3);
}

.policy-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 20px;
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.policy-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dashed var(--slate-100);
  padding-bottom: 12px;
}

.policy-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.policy-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-700);
}

.policy-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.badge-granted {
  background-color: var(--teal-50);
  color: var(--teal-800);
  border: 1px solid var(--teal-200);
}

.badge-optin {
  background-color: var(--gold-50);
  color: var(--gold-800);
  border: 1px solid var(--gold-200);
}

.badge-never {
  background-color: var(--slate-100);
  color: var(--slate-600);
  border: 1px solid var(--slate-200);
}

.badge-instant {
  background-color: var(--teal-100);
  color: var(--teal-800);
}

/* How It Works Steps Section */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

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

.step-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--border-radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold), var(--shadow-lg);
  border-color: var(--gold-700);
}

.step-number {
  width: 32px;
  height: 32px;
  background-color: var(--teal-700);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.step-card:hover .step-number {
  background-color: var(--gold-700);
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 14px;
  color: var(--slate-600);
  line-height: 1.6;
}

/* Capabilities Grid & Showcase Layout */
.capabilities-showcase {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.showcase-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}

.showcase-item.reverse {
  direction: rtl;
}

.showcase-item.reverse .showcase-text,
.showcase-item.reverse .showcase-visual {
  direction: ltr; /* Reset text direction for readability */
}

@media (max-width: 992px) {
  .showcase-item, .showcase-item.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: ltr;
  }
}

.showcase-text {
  display: flex;
  flex-direction: column;
}

.showcase-text .icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-md);
  background-color: var(--teal-50);
  border: 1px solid var(--teal-200);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-text .icon-box svg,
.showcase-text .icon-box img {
  width: 24px;
  height: 24px;
}

.showcase-text h3 {
  font-size: 26px;
  margin-bottom: 16px;
  color: var(--slate-900);
}

.showcase-text p {
  font-size: 15px;
  color: var(--slate-600);
  margin-bottom: 24px;
}

.showcase-visual {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  transition: all 0.3s ease;
  overflow-x: auto;
}

.showcase-visual:hover {
  box-shadow: var(--shadow-gold), var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

/* Modern Styled Tables */
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13px;
}

th {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-400);
  padding: 12px 16px;
  border-bottom: 2px solid var(--slate-100);
}

td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--slate-100);
  color: var(--slate-800);
}

tr:last-child td {
  border-bottom: none;
}

tr:hover td {
  background-color: var(--slate-50);
}

/* Specific Table styles & Text styles */
.text-running {
  background-color: var(--teal-50);
  color: var(--teal-800);
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
}

.text-stopped {
  background-color: var(--slate-100);
  color: var(--slate-500);
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
}

.impact-saving {
  color: var(--teal-600);
  font-weight: 700;
}

.impact-cost {
  color: var(--gold-800);
  font-weight: 700;
}

.badge-severity {
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
}

.badge-critical {
  background-color: var(--gold-100);
  color: var(--gold-800);
  border: 1px solid var(--gold-200);
}

.badge-high {
  background-color: var(--gold-50);
  color: var(--gold-800);
}

.badge-passed {
  background-color: var(--teal-50);
  color: var(--teal-800);
}

/* Footer Section */
footer {
  background: linear-gradient(180deg, #0b2744 0%, #012a4a 100%);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.footer-col h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h4::after {
  display: none;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-col ul li a:hover {
  color: var(--gold-600);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links a:hover {
  color: var(--gold-600);
}

/* Pricing Section Cards */
#pricing .container {
  max-width: 1550px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1550px;
  margin: 48px auto 0 auto;
  align-items: stretch;
}

@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }
}

@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
  }
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--border-radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold), var(--shadow-lg);
}

.pricing-card.popular {
  border-color: var(--teal-500);
  box-shadow: var(--shadow-teal), var(--shadow-lg);
}

.pricing-card.popular:hover {
  box-shadow: var(--shadow-gold), var(--shadow-teal), var(--shadow-lg);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--gold-600);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.pricing-title-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.pricing-desc {
  font-size: 13px;
  color: var(--slate-600);
  margin-bottom: 24px;
  font-weight: 500;
  line-height: 1.4;
  height: 36px; /* align descriptions */
}

.pricing-price {
  font-size: 44px;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1;
  margin-bottom: 6px;
  font-family: var(--font-display);
}

.pricing-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--slate-600);
}

.pricing-billing {
  font-size: 12px;
  font-weight: 500;
  color: var(--slate-600);
  margin-bottom: 16px;
}

.trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background-color: #eef7ee;
  color: #2e7d32;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 24px;
  align-self: flex-start;
}

.pricing-features-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-900);
  margin-bottom: 16px;
  border-top: 1px solid var(--slate-200);
  padding-top: 24px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
  flex-grow: 1;
}

.pricing-features li {
  font-size: 13px;
  color: var(--slate-700);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.pricing-features li::before {
  content: '✓';
  color: #2e7d32;
  font-weight: bold;
  font-size: 14px;
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
}

/* Footer Social Circles */
.social-circle {
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 700;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-circle:hover {
  background-color: var(--gold-600) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
}

/* CTA Outline Button Hover State */
.section-cta .btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: var(--white) !important;
}

/* Legal Pages Styles (Privacy Policy / Terms) - Light Theme */
.legal-section {
  padding: 80px 0;
  background-color: var(--white);
  color: var(--slate-700);
}

.legal-header {
  margin-bottom: 40px;
  border-bottom: 1px solid var(--slate-200);
  padding-bottom: 32px;
}

.legal-category {
  color: var(--teal-600);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.legal-title {
  font-size: 40px;
  font-family: 'Outfit', sans-serif;
  color: var(--teal-500);
  margin-bottom: 16px;
  font-weight: 700;
}

.legal-meta {
  font-size: 14px;
  color: var(--slate-600);
}

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

.legal-sidebar {
  position: sticky;
  top: 120px;
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  border-radius: var(--border-radius-lg);
  padding: 24px;
}

.sidebar-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--slate-600);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu li {
  margin-bottom: 12px;
}

.sidebar-menu a {
  color: var(--slate-600);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
  line-height: 1.4;
  display: block;
}

.sidebar-menu a:hover, .sidebar-menu a.active {
  color: var(--teal-600);
}

.legal-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--slate-800);
}

.legal-section-block {
  margin-bottom: 48px;
  scroll-margin-top: 120px;
}

.legal-section-block h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  color: var(--teal-900);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.legal-section-block h2 span {
  color: var(--teal-600);
  font-weight: 700;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
  border: 1px solid var(--slate-200);
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.legal-table th, .legal-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--slate-200);
}

.legal-table th {
  background: var(--slate-100);
  color: var(--slate-800);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.05em;
}

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

.legal-alert-box {
  border-left: 4px solid var(--teal-500);
  background: var(--teal-50);
  padding: 20px;
  border-radius: var(--border-radius-sm);
  margin: 24px 0;
  color: var(--slate-800);
}

@media (max-width: 992px) {
  .legal-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .legal-sidebar {
    position: static;
  }
}
