@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');

:root {
 
  --bg-primary: hsl(218, 35%, 97%);      
  --bg-card: hsl(0, 0%, 100%);           
  --primary: hsl(220, 50%, 18%);        
  --primary-light: hsl(220, 40%, 28%);   
  --accent: hsl(165, 60%, 38%);         
  --accent-hover: hsl(165, 60%, 30%);    
  --accent-light: hsl(165, 60%, 94%);    
  --text-dark: hsl(220, 25%, 15%);       
  --text-muted: hsl(220, 10%, 48%);    
  --border-color: hsl(220, 20%, 90%);    
  
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.03);
  --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.08);

  --font-sans: 'Inter', sans-serif;
  --font-title: 'Outfit', sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --container-max: 1200px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-height); 
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}

p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.logo svg {
  width: 28px;
  height: 28px;
  fill: var(--accent);
}

.menu-toggle {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 1rem;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--accent);
}

.nav-links a.active::after {
  width: 100%;
}

/* CTA Button in Nav */
.nav-cta {
  background: var(--primary);
  color: white !important;
  padding: 0.6rem 1.25rem !important;
  border-radius: 8px;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--primary-light) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger button */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

.hamburger-btn .bar {
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- Hero Layout --- */
.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 80px 24px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.65) 100%);
  z-index: 1;
}

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

.hero-content h1 {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
}

.hero-glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2.5rem;
  border-radius: 16px;
  margin-top: 2rem;
  text-align: left;
}

.hero-container-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-text-block {
  text-align: left;
}

.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(165, 60, 38, 0.15);
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: var(--font-title);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-text-block h1 {
  font-size: 3.8rem;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.hero-text-block p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-trust-indicators {
  display: flex;
  gap: 24px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: var(--font-title);
}

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

.glass-dashboard-card {
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.2rem;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  color: white;
  font-family: var(--font-sans);
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.dash-title {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.05rem;
}

.dash-status {
  background: var(--accent);
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}

.dash-stat {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 10px;
}

.stat-lbl {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.stat-val {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.dash-progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 25px;
}

.dash-progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
}

.dash-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.dash-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.feat-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.feat-bullet.cyber { background: #3b82f6; }
.feat-bullet.home { background: #ef4444; }
.feat-bullet.asset { background: var(--accent); }

.dash-footer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  text-align: center;
}

.why-choose-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-dark);
  width: 100%;
}

.why-choose-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(245, 247, 250, 0.92) 0%, rgba(245, 247, 250, 0.75) 100%);
  z-index: 1;
}

.why-choose-section .card {
  background-color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--text-dark);
}

.why-choose-section .card h3 {
  color: var(--primary);
}

.why-choose-section .card p {
  color: var(--text-muted);
}

.why-choose-section .card-icon {
  background: var(--accent-light);
  color: var(--accent);
}

.why-choose-section .card:hover {
  background-color: rgba(255, 255, 255, 0.95);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  gap: 8px;
}

.btn-primary {
  background-color: var(--accent);
  color: white;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(165, 60, 38, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

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

.btn-navy:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}

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

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

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

.card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(165, 60, 38, 0.2);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background-color: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.card-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-link {
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.card-link:hover {
  color: var(--accent-hover);
}

.card-inner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 1;
  transition: var(--transition);
}

.card:hover .card-inner-overlay {
  background-color: rgba(255, 255, 255, 0.82);
}

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

.section-header h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  margin-bottom: 1rem;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent);
  border-radius: 2px;
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-primary);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  background-color: white;
  box-shadow: 0 0 0 4px var(--accent-light);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.alert-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.alert-overlay:target {
  opacity: 1;
  pointer-events: auto;
}

.alert-box {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 500px;
  width: 90%;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid var(--border-color);
  position: relative;
}

.alert-overlay:target .alert-box {
  transform: translateY(0) scale(1);
}

.alert-icon {
  width: 72px;
  height: 72px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1.5rem;
  box-shadow: inset 0 0 0 2px var(--accent);
}

.alert-box h3 {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.alert-box p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.alert-close-btn {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 0.85rem 2.2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
}

.alert-close-btn:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-title);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

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

.testimonial-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.table-container {
  overflow-x: auto;
  background: var(--bg-card);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  margin: 3rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

th, td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

th {
  background-color: var(--primary);
  color: white;
  font-family: var(--font-title);
  font-weight: 600;
}

tr:nth-child(even) td {
  background-color: var(--bg-primary);
}

tr:hover td {
  background-color: var(--accent-light);
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-green {
  background-color: var(--accent-light);
  color: var(--accent);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
}

.sidebar {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  height: fit-content;
}

.sidebar-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-menu a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 500;
}

.sidebar-menu a:hover, .sidebar-menu a.active {
  background-color: var(--accent-light);
  color: var(--accent);
}

footer {
  background-color: var(--primary);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 40px;
  border-top: 4px solid var(--accent);
}

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

.footer-logo {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
}

.footer-logo span {
  color: var(--accent);
}

.footer-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.footer-heading {
  color: white;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-newsletter-form {
  display: flex;
  gap: 8px;
}

.footer-newsletter-form input {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 8px;
}

.footer-newsletter-form input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.15);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: var(--header-height);
  }

  .container {
    padding: 0 16px !important;
  }

  .section-padding {
    padding: 40px 0 !important;
  }

  .card, .testimonial-card, .solvency-box {
    padding: 1.5rem !important;
  }

  .sidebar {
    padding: 1.25rem !important;
  }
  
  .grid-2, .grid-3, .grid-4, .split-layout, .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-stats-grid {
    text-align: center;
  }

  .home-stats-grid > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hamburger-btn {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
    background-color: var(--bg-card);
    box-shadow: -10px 0 40px rgba(15, 23, 42, 0.15);
    padding: 100px 32px 40px 32px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
  }

  .menu-toggle:checked ~ .nav-links {
    transform: translateX(0);
  }

  .menu-toggle:checked ~ .hamburger-btn .line-1 {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--accent);
  }

  .menu-toggle:checked ~ .hamburger-btn .line-2 {
    opacity: 0;
  }

  .menu-toggle:checked ~ .hamburger-btn .line-3 {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--accent);
  }

  .hero-container-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .hero-text-block {
    text-align: center;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-text-block h1 {
    font-size: 2.5rem;
  }

  .hero-text-block p {
    font-size: 1.05rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust-indicators {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-content h1 {
    font-size: 2.25rem;
  }

  .hero-content p {
    font-size: 1.05rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }

  .table-container {
    margin: 1.5rem 0;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    padding: 8px !important;
  }
  th, td {
    padding: 0.5rem 0.4rem !important;
    font-size: 0.72rem !important;
    word-break: break-word !important;
  }

  .claims-audit-grid {
    text-align: center;
  }
  .claims-audit-grid > div {
    padding: 0 1.25rem !important;
  }
  .claims-audit-title {
    font-size: 1.8rem !important;
    margin-bottom: 1.1rem !important;
  }

  .about-intro-grid, .about-solvency-grid {
    text-align: center;
  }
  .about-intro-grid > div, .about-solvency-grid > div {
    padding: 0 1.25rem !important;
  }
  .about-intro-title, .about-solvency-title {
    font-size: 1.8rem !important;
    margin-bottom: 1.1rem !important;
  }
}

.claims-audit-title, .about-intro-title, .about-solvency-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 480px) {
  .nav-links {
    width: 70%; 
  }
  .alert-box {
    padding: 2rem 1.5rem;
  }
}

.accent-border-card {
  border-left: 4px solid var(--accent) !important;
}
.threat-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}
.threat-high { background-color: rgba(239, 68, 68, 0.15); color: #ef4444; }
.threat-moderate { background-color: rgba(245, 158, 11, 0.15); color: #f59e0b; }
.threat-low { background-color: var(--accent-light); color: var(--accent); }

.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  align-items: center;
  justify-items: center;
  padding: 2rem 0;
}
.partner-logo {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  padding: 1rem 2rem;
  border-radius: 8px;
  background: var(--bg-card);
  transition: var(--transition);
  text-align: center;
  width: 100%;
}
.partner-logo:hover {
  color: var(--primary);
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.checklist-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: var(--transition);
}
.checklist-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.checklist-checkbox {
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
  border-radius: 4px;
  cursor: pointer;
  margin-top: 2px;
}
.checklist-label {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
  cursor: pointer;
}
.checklist-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
  margin-bottom: 0;
}

.ledger-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ledger-row {
  display: grid;
  grid-template-columns: 100px 1.5fr 1fr 120px;
  align-items: center;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.95rem;
}
.ledger-time {
  font-weight: 600;
  color: var(--accent);
}
.ledger-title {
  font-weight: 700;
  color: var(--primary);
}
.ledger-amount {
  font-family: var(--font-title);
  font-weight: 800;
  color: var(--primary);
  text-align: right;
}
@media (max-width: 600px) {
  .ledger-row {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: left;
  }
  .ledger-amount {
    text-align: left;
  }
}

.solvency-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.solvency-meter-track {
  width: 100%;
  height: 12px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  overflow: hidden;
  margin: 1.5rem 0;
}
.solvency-meter-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, #10b981 100%);
  border-radius: 6px;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
  margin-top: 1rem;
}
.schedule-slot {
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  padding: 0.75rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}
.schedule-slot:hover {
  border-color: var(--accent);
  background: var(--accent-light);
  color: var(--accent);
}
.schedule-slot-radio {
  display: none;
}
.schedule-slot-radio:checked + .schedule-slot {
  border-color: var(--accent);
  background: var(--accent);
  color: white;
}

