@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0D3B3E;
  color: #ffffff;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===================== SECTION 1 - HERO ===================== */
.wim-hero {
  background-color: #0D3B3E;
  padding: 120px 40px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.wim-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 210, 90, 0.06);
  pointer-events: none;
}

.wim-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 210, 90, 0.05);
  pointer-events: none;
}

.wim-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.wim-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #FFD25A;
  line-height: 1.2;
  margin-bottom: 28px;
}

.wim-hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #FFF2B0;
  max-width: 720px;
  margin: 0 auto 44px;
  font-weight: 400;
}

.wim-btn-ghost {
  display: inline-block;
  padding: 14px 36px;
  border: 2px solid #FFD25A;
  color: #FFD25A;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  background: transparent;
}

.wim-btn-ghost:hover {
  background: #FFD25A;
  color: #0D3B3E;
  transform: translateY(-2px);
}

/* ===================== SECTION 2 - BRAND DISCOVERY ===================== */
.wim-discovery {
  background-color: #1A5055;
  padding: 100px 40px;
}

.wim-discovery-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.wim-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #FFD25A;
  margin-bottom: 60px;
  text-align: center;
}

.wim-discovery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.wim-discovery-card {
  background: #0D3B3E;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 210, 90, 0.1);
}

.wim-discovery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.wim-discovery-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
  display: block;
  color: #FFD25A;
}

.wim-discovery-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFD25A;
  margin-bottom: 14px;
}

.wim-discovery-card p {
  color: #ffffff;
  font-size: 0.97rem;
  line-height: 1.7;
}

/* ===================== SECTION 3 - AI AUTHORITY CRISIS ===================== */
.wim-ai-crisis {
  background: linear-gradient(135deg, #FFD25A 0%, #E6B23A 100%);
  padding: 100px 40px;
}

.wim-ai-crisis-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.wim-ai-crisis h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #0D3B3E;
  margin-bottom: 50px;
  text-align: center;
}

.wim-ai-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}

.wim-ai-panel {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid rgba(13, 59, 62, 0.1);
}

.wim-ai-panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 45px rgba(0,0,0,0.18);
}

.wim-ai-panel-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.wim-ai-panel-content {
  padding: 24px 22px 28px;
}

.wim-ai-panel-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0D3B3E;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wim-ai-panel-content p {
  font-size: 0.94rem;
  color: #1A3A3C;
  line-height: 1.7;
}

.wim-pull-quote {
  background: rgba(13, 59, 62, 0.08);
  border-left: 5px solid #0D3B3E;
  border-radius: 8px;
  padding: 30px 36px;
  margin: 0 0 40px;
  text-align: center;
}

.wim-pull-quote p {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-style: italic;
  font-weight: 700;
  color: #0D3B3E;
  line-height: 1.4;
}

.wim-ai-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.wim-ai-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(13, 59, 62, 0.12);
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #0D3B3E;
}

.wim-ai-bullet span.wim-bullet-icon {
  font-size: 1.1rem;
}

/* ===================== SECTION 4 - GOOGLE TRUST SIGNALS ===================== */
.wim-google-trust {
  background-color: #0D3B3E;
  padding: 100px 40px;
}

.wim-google-trust-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.wim-google-trust h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #FFD25A;
  margin-bottom: 60px;
  text-align: center;
}

.wim-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.wim-trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.wim-trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.6;
}

.wim-trust-check {
  color: #FFD25A;
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 700;
}

.wim-trust-card {
  background: #1A5055;
  border-radius: 14px;
  padding: 40px 35px;
  border: 1px solid rgba(255, 210, 90, 0.2);
  text-align: center;
}

.wim-trust-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFD25A;
  margin-bottom: 24px;
}

.wim-da-label {
  font-size: 0.9rem;
  color: #FFF2B0;
  margin-bottom: 8px;
  text-align: left;
}

.wim-da-bar-container {
  background: rgba(255,255,255,0.12);
  border-radius: 50px;
  height: 14px;
  overflow: hidden;
  margin-bottom: 20px;
}

.wim-da-bar {
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg, #FFD25A, #E6B23A);
  width: 0%;
  transition: width 1.5s ease;
}

.wim-da-score {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #FFD25A;
  display: block;
  margin-bottom: 6px;
}

.wim-da-sublabel {
  font-size: 0.88rem;
  color: #FFF2B0;
}

.wim-trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

.wim-trust-logo-badge {
  background: rgba(255, 210, 90, 0.15);
  border: 1px solid rgba(255, 210, 90, 0.35);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #FFD25A;
  white-space: nowrap;
}

/* ===================== SECTION 5 - COST OF INVISIBILITY ===================== */
.wim-invisibility {
  background-color: #1A5055;
  padding: 100px 40px;
}

.wim-invisibility-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.wim-invisibility h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #FFD25A;
  margin-bottom: 60px;
  text-align: center;
}

.wim-impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.wim-impact-tile {
  background: #0D3B3E;
  border-radius: 14px;
  padding: 38px 34px;
  border: 1px solid rgba(255, 210, 90, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wim-impact-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.3);
}

.wim-impact-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
  color: #FFD25A;
}

.wim-impact-tile h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFF2B0;
  margin-bottom: 12px;
}

.wim-impact-tile p {
  color: #ffffff;
  font-size: 0.97rem;
  line-height: 1.7;
}

/* ===================== SECTION 6 - COMPARISON ===================== */
.wim-comparison {
  background: linear-gradient(135deg, #B7902A 0%, #E6B23A 100%);
  padding: 100px 40px;
}

.wim-comparison-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.wim-comparison h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #0D3B3E;
  margin-bottom: 50px;
  text-align: center;
}

.wim-compare-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 50px;
}

.wim-compare-col {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.14);
}

.wim-compare-header {
  padding: 20px 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
}

.wim-compare-col--old .wim-compare-header {
  background: #888888;
  color: #ffffff;
}

.wim-compare-col--new .wim-compare-header {
  background: #0D3B3E;
  color: #FFD25A;
}

.wim-compare-body {
  padding: 28px;
}

.wim-compare-col--old .wim-compare-body {
  background: #e8e8e8;
}

.wim-compare-col--new .wim-compare-body {
  background: #ffffff;
}

.wim-compare-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 0.96rem;
}

.wim-compare-item:last-child {
  border-bottom: none;
}

.wim-compare-col--old .wim-compare-item {
  color: #555555;
}

.wim-compare-col--new .wim-compare-item {
  color: #0D3B3E;
  font-weight: 500;
}

.wim-compare-icon-old {
  color: #999999;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.wim-compare-icon-new {
  color: #E6B23A;
  font-size: 1.1rem;
  flex-shrink: 0;
  font-weight: 700;
}

.wim-compare-timeline {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 18px;
  border-radius: 50px;
  display: inline-block;
  margin-top: 10px;
}

.wim-compare-col--old .wim-compare-timeline {
  background: #cccccc;
  color: #555;
}

.wim-compare-col--new .wim-compare-timeline {
  background: #0D3B3E;
  color: #FFD25A;
}

.wim-compare-cta {
  text-align: center;
}

.wim-btn-dark {
  display: inline-block;
  padding: 16px 44px;
  background: #0D3B3E;
  color: #FFD25A;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: none;
}

.wim-btn-dark:hover {
  background: #0a2d30;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.2);
}

/* ===================== SECTION 7 - TRUST ECONOMY ===================== */
.wim-trust-economy {
  background-color: #0D3B3E;
  padding: 100px 40px;
}

.wim-trust-economy-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.wim-formula {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #FFD25A;
  margin-bottom: 36px;
  letter-spacing: 0.5px;
}

.wim-trust-economy-body {
  font-size: 1.05rem;
  color: #ffffff;
  max-width: 780px;
  margin: 0 auto 60px;
  line-height: 1.8;
}

.wim-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.wim-stat-callout {
  background: #1A5055;
  border-radius: 14px;
  padding: 40px 28px;
  border: 1px solid rgba(255, 210, 90, 0.15);
  transition: transform 0.3s ease;
}

.wim-stat-callout:hover {
  transform: translateY(-4px);
}

.wim-stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #FFD25A;
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}

.wim-stat-label {
  font-size: 0.95rem;
  color: #FFF2B0;
  line-height: 1.5;
}

/* ===================== SECTION 8 - CTA ===================== */
.wim-final-cta {
  background: #FFD25A;
  padding: 100px 40px;
  text-align: center;
}

.wim-final-cta-inner {
  max-width: 800px;
  margin: 0 auto;
}

.wim-final-cta h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 800;
  color: #0D3B3E;
  margin-bottom: 22px;
  line-height: 1.25;
}

.wim-final-cta-sub {
  font-size: 1.1rem;
  color: #0D3B3E;
  margin-bottom: 44px;
  font-weight: 500;
}

.wim-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.wim-btn-cta-primary {
  display: inline-block;
  padding: 16px 40px;
  background: #0D3B3E;
  color: #FFD25A;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: none;
}

.wim-btn-cta-primary:hover {
  background: #0a2d30;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.2);
}

.wim-btn-cta-secondary {
  display: inline-block;
  padding: 16px 40px;
  background: transparent;
  color: #0D3B3E;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid #0D3B3E;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.wim-btn-cta-secondary:hover {
  background: #0D3B3E;
  color: #FFD25A;
  transform: translateY(-3px);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .wim-discovery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .wim-ai-panels {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .wim-hero {
    padding: 80px 24px 70px;
  }
  .wim-discovery,
  .wim-ai-crisis,
  .wim-google-trust,
  .wim-invisibility,
  .wim-comparison,
  .wim-trust-economy,
  .wim-final-cta {
    padding: 70px 24px;
  }
  .wim-discovery-grid {
    grid-template-columns: 1fr;
  }
  .wim-ai-panels {
    grid-template-columns: 1fr;
  }
  .wim-trust-grid {
    grid-template-columns: 1fr;
  }
  .wim-impact-grid {
    grid-template-columns: 1fr;
  }
  .wim-compare-table {
    grid-template-columns: 1fr;
  }
  .wim-stats-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .wim-hero h1 {
    font-size: 1.8rem;
  }
  .wim-formula {
    font-size: 1.2rem;
  }
  .wim-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Stat counter animation */
.wim-stat-number.wim-counted {
  animation: wim-countup 0.1s ease;
}

@keyframes wim-countup {
  from { opacity: 0.7; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}

/* DA bar animation trigger */
.wim-da-bar.wim-animated {
  width: 88%;
}


    /* Editable elements styling - HIGHEST PRIORITY */
    .editable:hover:not(.editor-tool):not([data-editor-tool]) {
      outline: 2px dashed #ff9800 !important;
      outline-offset: 2px !important;
      cursor: pointer !important;
      z-index: 999999 !important;
    }
    .selected-editable:not(.editor-tool):not([data-editor-tool]) {
      outline: 3px solid #ff9800 !important;
      outline-offset: 2px !important;
      box-shadow: 0 0 8px 2px #ff980033 !important;
      z-index: 999999 !important;
    }
    /* Prevent editor tools from having editor styles */
    .editor-tool,
    [data-editor-tool] {
      outline: none !important;
      cursor: default !important;
    }
    /* Drag and drop styles */
    .dragging {
      opacity: 0.5 !important;
    }
    .drag-over {
      border-top: 3px solid #4CAF50 !important;
    }


    /* Editable elements styling - HIGHEST PRIORITY */
    .editable:hover:not(.editor-tool):not([data-editor-tool]) {
      outline: 2px dashed #ff9800 !important;
      outline-offset: 2px !important;
      cursor: pointer !important;
      z-index: 999999 !important;
    }
    .selected-editable:not(.editor-tool):not([data-editor-tool]) {
      outline: 3px solid #ff9800 !important;
      outline-offset: 2px !important;
      box-shadow: 0 0 8px 2px #ff980033 !important;
      z-index: 999999 !important;
    }
    /* Prevent editor tools from having editor styles */
    .editor-tool,
    [data-editor-tool] {
      outline: none !important;
      cursor: default !important;
    }
    /* Drag and drop styles */
    .dragging {
      opacity: 0.5 !important;
    }
    .drag-over {
      border-top: 3px solid #4CAF50 !important;
    }


    /* Editable elements styling - HIGHEST PRIORITY */
    .editable:hover:not(.editor-tool):not([data-editor-tool]) {
      outline: 2px dashed #ff9800 !important;
      outline-offset: 2px !important;
      cursor: pointer !important;
      z-index: 999999 !important;
    }
    .selected-editable:not(.editor-tool):not([data-editor-tool]) {
      outline: 3px solid #ff9800 !important;
      outline-offset: 2px !important;
      box-shadow: 0 0 8px 2px #ff980033 !important;
      z-index: 999999 !important;
    }
    /* Prevent editor tools from having editor styles */
    .editor-tool,
    [data-editor-tool] {
      outline: none !important;
      cursor: default !important;
    }
    /* Drag and drop styles */
    .dragging {
      opacity: 0.5 !important;
    }
    .drag-over {
      border-top: 3px solid #4CAF50 !important;
    }
  
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@600;700;800&display=swap');

[data-section-id='omnipresence-trust-001'] {
  width: 100%;
  background: linear-gradient(135deg, #0d1b2a 0%, #1a2f4a 50%, #0d2233 100%);
  padding: 90px 20px;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
  position: relative;
}

[data-section-id='omnipresence-trust-001']::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 168, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

[data-section-id='omnipresence-trust-001']::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

[data-section-id='omnipresence-trust-001'] .otp-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

[data-section-id='omnipresence-trust-001'] .otp-header {
  text-align: center;
  margin-bottom: 60px;
}

[data-section-id='omnipresence-trust-001'] .otp-flow-label {
  display: inline-block;
  background: rgba(0, 168, 255, 0.15);
  border: 1px solid rgba(0, 168, 255, 0.4);
  color: #00a8ff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 22px;
}

[data-section-id='omnipresence-trust-001'] .otp-main-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 18px 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
  background: linear-gradient(90deg, #ffffff 0%, #00c6ff 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-section-id='omnipresence-trust-001'] .otp-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.75);
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.7;
}

[data-section-id='omnipresence-trust-001'] .otp-panels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

[data-section-id='omnipresence-trust-001'] .otp-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

[data-section-id='omnipresence-trust-001'] .otp-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00a8ff, #00e5ff);
  opacity: 0;
  transition: opacity 0.3s ease;
}

[data-section-id='omnipresence-trust-001'] .otp-panel:hover {
  transform: translateY(-8px);
  background: rgba(0, 168, 255, 0.08);
  border-color: rgba(0, 168, 255, 0.35);
  box-shadow: 0 20px 50px rgba(0, 168, 255, 0.15);
}

[data-section-id='omnipresence-trust-001'] .otp-panel:hover::before {
  opacity: 1;
}

[data-section-id='omnipresence-trust-001'] .otp-panel-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 168, 255, 0.2), rgba(0, 229, 255, 0.1));
  border: 1px solid rgba(0, 168, 255, 0.3);
  margin: 0 auto 20px auto;
  transition: transform 0.3s ease;
}

[data-section-id='omnipresence-trust-001'] .otp-panel:hover .otp-panel-icon-wrap {
  transform: scale(1.1);
}

[data-section-id='omnipresence-trust-001'] .otp-panel-icon {
  font-size: 28px;
  line-height: 1;
}

[data-section-id='omnipresence-trust-001'] .otp-panel-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 14px 0;
}

[data-section-id='omnipresence-trust-001'] .otp-panel-body {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin: 0;
}

[data-section-id='omnipresence-trust-001'] .otp-quote-block {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 193, 7, 0.25);
  border-left: 4px solid #ffc107;
  border-radius: 12px;
  padding: 36px 44px;
  position: relative;
  text-align: center;
}

[data-section-id='omnipresence-trust-001'] .otp-quote-icon {
  font-family: 'Poppins', sans-serif;
  font-size: 72px;
  color: #ffc107;
  line-height: 0.6;
  display: block;
  margin-bottom: 16px;
  opacity: 0.6;
}

[data-section-id='omnipresence-trust-001'] .otp-quote-text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 2vw, 19px);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin: 0;
  font-style: italic;
  font-weight: 500;
  max-width: 860px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  [data-section-id='omnipresence-trust-001'] .otp-panels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  [data-section-id='omnipresence-trust-001'] {
    padding: 60px 16px;
  }
  [data-section-id='omnipresence-trust-001'] .otp-panels-grid {
    grid-template-columns: 1fr;
  }
  [data-section-id='omnipresence-trust-001'] .otp-quote-block {
    padding: 28px 22px;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@600;700;800&display=swap');

[data-section-id="google-trust-panels"] {
  width: 100%;
  background: linear-gradient(135deg, #0a0e1a 0%, #0d1b2a 40%, #0f2340 100%);
  padding: 90px 20px;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
  position: relative;
}

[data-section-id="google-trust-panels"]::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
  pointer-events: none;
}

[data-section-id="google-trust-panels"]::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, transparent 70%);
  pointer-events: none;
}

[data-section-id="google-trust-panels"] .gtpp-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

[data-section-id="google-trust-panels"] .gtpp-header {
  text-align: center;
  margin-bottom: 60px;
}

[data-section-id="google-trust-panels"] .gtpp-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #10b981;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

[data-section-id="google-trust-panels"] .gtpp-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 18px 0;
  background: linear-gradient(135deg, #ffffff 0%, #c7d2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-section-id="google-trust-panels"] .gtpp-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: rgba(199,210,254,0.75);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

[data-section-id="google-trust-panels"] .gtpp-panels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

[data-section-id="google-trust-panels"] .gtpp-panel {
  background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 36px 28px 30px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

[data-section-id="google-trust-panels"] .gtpp-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #10b981);
  opacity: 0;
  transition: opacity 0.3s ease;
}

[data-section-id="google-trust-panels"] .gtpp-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(99,102,241,0.4);
  box-shadow: 0 20px 60px rgba(99,102,241,0.2);
}

[data-section-id="google-trust-panels"] .gtpp-panel:hover::before {
  opacity: 1;
}

[data-section-id="google-trust-panels"] .gtpp-panel-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(99,102,241,0.25) 0%, rgba(16,185,129,0.15) 100%);
  border: 1px solid rgba(99,102,241,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

[data-section-id="google-trust-panels"] .gtpp-panel-icon {
  font-size: 26px;
  line-height: 1;
}

[data-section-id="google-trust-panels"] .gtpp-panel-check {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(16,185,129,0.4);
}

[data-section-id="google-trust-panels"] .gtpp-panel-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

[data-section-id="google-trust-panels"] .gtpp-panel-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(199,210,254,0.8);
  line-height: 1.7;
  margin: 0 0 18px 0;
}

[data-section-id="google-trust-panels"] .gtpp-panel-desc strong {
  color: #c7d2fe;
  font-weight: 600;
}

[data-section-id="google-trust-panels"] .gtpp-panel-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

[data-section-id="google-trust-panels"] .gtpp-badge {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #a5b4fc;
  background: rgba(99,102,241,0.15);
  border: 1px solid rgba(99,102,241,0.3);
  padding: 4px 10px;
  border-radius: 30px;
  letter-spacing: 0.3px;
}

[data-section-id="google-trust-panels"] .gtpp-panel-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding: 12px 16px;
  background: rgba(99,102,241,0.1);
  border-radius: 12px;
  border: 1px solid rgba(99,102,241,0.2);
}

[data-section-id="google-trust-panels"] .gtpp-stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #10b981;
  line-height: 1;
}

[data-section-id="google-trust-panels"] .gtpp-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(199,210,254,0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

[data-section-id="google-trust-panels"] .gtpp-bottom-cta {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, rgba(99,102,241,0.1) 0%, rgba(16,185,129,0.08) 100%);
  border-radius: 20px;
  border: 1px solid rgba(99,102,241,0.2);
}

[data-section-id="google-trust-panels"] .gtpp-bottom-cta p {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #e0e7ff;
  margin: 0 0 24px 0;
}

[data-section-id="google-trust-panels"] .gtpp-cta-btn {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  padding: 16px 44px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 8px 30px rgba(99,102,241,0.4);
  letter-spacing: 0.3px;
}

[data-section-id="google-trust-panels"] .gtpp-cta-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #818cf8 0%, #6366f1 100%);
  box-shadow: 0 14px 40px rgba(99,102,241,0.55);
}

@media (max-width: 1024px) {
  [data-section-id="google-trust-panels"] .gtpp-panels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  [data-section-id="google-trust-panels"] .gtpp-panels-grid {
    grid-template-columns: 1fr;
  }
  [data-section-id="google-trust-panels"] .gtpp-panel {
    padding: 28px 20px 22px;
  }
  [data-section-id="google-trust-panels"] {
    padding: 60px 16px;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700;800&display=swap');

[data-section-id='domains-publish-section'] {
  width: 100%;
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1b3e 50%, #0a1628 100%);
  padding: 80px 0;
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

[data-section-id='domains-publish-section']::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 20% 50%, rgba(0,112,255,0.08) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(99,0,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}

[data-section-id='domains-publish-section'] .domains-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

[data-section-id='domains-publish-section'] .domains-header {
  text-align: center;
  margin-bottom: 50px;
}

[data-section-id='domains-publish-section'] .domains-eyebrow {
  display: inline-block;
  background: linear-gradient(90deg, #0070ff, #a855f7);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 18px;
}

[data-section-id='domains-publish-section'] .domains-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px 0;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

[data-section-id='domains-publish-section'] .domains-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: #a0b4cc;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

[data-section-id='domains-publish-section'] .domains-da-banner {
  background: linear-gradient(135deg, #0070ff 0%, #4f46e5 100%);
  border-radius: 20px;
  padding: 36px 40px;
  margin-bottom: 50px;
  box-shadow: 0 20px 60px rgba(0,112,255,0.3);
  position: relative;
  overflow: hidden;
}

[data-section-id='domains-publish-section'] .domains-da-banner::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  pointer-events: none;
}

[data-section-id='domains-publish-section'] .da-banner-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

[data-section-id='domains-publish-section'] .da-icon-wrap {
  background: rgba(255,255,255,0.15);
  border-radius: 16px;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

[data-section-id='domains-publish-section'] .da-icon {
  font-size: 36px;
  line-height: 1;
}

[data-section-id='domains-publish-section'] .da-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 200px;
}

[data-section-id='domains-publish-section'] .da-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

[data-section-id='domains-publish-section'] .da-score {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -1px;
}

[data-section-id='domains-publish-section'] .da-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

[data-section-id='domains-publish-section'] .da-meter-wrap {
  flex: 1;
  min-width: 220px;
}

[data-section-id='domains-publish-section'] .da-meter-track {
  background: rgba(255,255,255,0.2);
  border-radius: 50px;
  height: 14px;
  width: 100%;
  overflow: hidden;
  margin-bottom: 8px;
}

[data-section-id='domains-publish-section'] .da-meter-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ffd700, #ffffff);
  border-radius: 50px;
  transition: width 1.6s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 0 12px rgba(255,215,0,0.5);
}

[data-section-id='domains-publish-section'] .da-meter-labels {
  display: flex;
  justify-content: space-between;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}

[data-section-id='domains-publish-section'] .domains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

[data-section-id='domains-publish-section'] .domain-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

[data-section-id='domains-publish-section'] .domain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0070ff, #a855f7);
  opacity: 0;
  transition: opacity 0.3s ease;
}

[data-section-id='domains-publish-section'] .domain-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,112,255,0.2);
  border-color: rgba(0,112,255,0.4);
  background: rgba(255,255,255,0.07);
}

[data-section-id='domains-publish-section'] .domain-card:hover::before {
  opacity: 1;
}

[data-section-id='domains-publish-section'] .domain-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

[data-section-id='domains-publish-section'] .domain-logo-wrap {
  background: #ffffff;
  border-radius: 10px;
  width: 80px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

[data-section-id='domains-publish-section'] .domain-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
  box-sizing: border-box;
}

[data-section-id='domains-publish-section'] .domain-badge-da {
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  color: #0a0f1e;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(255,215,0,0.3);
}

[data-section-id='domains-publish-section'] .domain-name {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

[data-section-id='domains-publish-section'] .domain-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #8ea8c3;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

[data-section-id='domains-publish-section'] .domain-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

[data-section-id='domains-publish-section'] .domain-tag {
  background: rgba(0,112,255,0.12);
  color: #60a5fa;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(0,112,255,0.2);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

[data-section-id='domains-publish-section'] .domain-card:hover .domain-tag {
  background: rgba(0,112,255,0.25);
  color: #93c5fd;
}

[data-section-id='domains-publish-section'] .domains-stats-row {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

[data-section-id='domains-publish-section'] .domains-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 140px;
  text-align: center;
}

[data-section-id='domains-publish-section'] .stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  background: linear-gradient(90deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-section-id='domains-publish-section'] .stat-lbl {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #7a9ab5;
  font-weight: 500;
  letter-spacing: 0.3px;
}

[data-section-id='domains-publish-section'] .domains-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  [data-section-id='domains-publish-section'] .domains-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  [data-section-id='domains-publish-section'] {
    padding: 60px 0;
  }
  [data-section-id='domains-publish-section'] .domains-grid {
    grid-template-columns: 1fr;
  }
  [data-section-id='domains-publish-section'] .da-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  [data-section-id='domains-publish-section'] .da-meter-wrap {
    width: 100%;
  }
  [data-section-id='domains-publish-section'] .domains-da-banner {
    padding: 28px 24px;
  }
  [data-section-id='domains-publish-section'] .domains-stats-row {
    flex-direction: column;
    padding: 28px 24px;
  }
  [data-section-id='domains-publish-section'] .domains-stat-divider {
    width: 60px;
    height: 1px;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@600;700;800&display=swap');

[data-section-id='stats-infographic-2024'] {
  width: 100%;
  background: linear-gradient(135deg, #0d1b2a 0%, #1a2a4a 60%, #0d1b2a 100%);
  padding: 90px 20px;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
  position: relative;
}

[data-section-id='stats-infographic-2024']::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(108,99,255,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

[data-section-id='stats-infographic-2024']::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(56,239,125,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

[data-section-id='stats-infographic-2024'] .stats-infographic-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

[data-section-id='stats-infographic-2024'] .stats-infographic-header {
  text-align: center;
  margin-bottom: 60px;
}

[data-section-id='stats-infographic-2024'] .stats-infographic-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #48c6ef;
  background: rgba(72,198,239,0.1);
  border: 1px solid rgba(72,198,239,0.3);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

[data-section-id='stats-infographic-2024'] .stats-infographic-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 18px 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

[data-section-id='stats-infographic-2024'] .stats-infographic-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.8vw, 18px);
  color: #a8bbd0;
  margin: 0 auto;
  max-width: 560px;
  line-height: 1.7;
}

[data-section-id='stats-infographic-2024'] .stats-infographic-panels {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  align-items: stretch;
}

[data-section-id='stats-infographic-2024'] .stats-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 44px 36px 40px;
  flex: 1 1 280px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.32s cubic-bezier(.22,.97,.58,1.2), box-shadow 0.32s ease, border-color 0.28s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

[data-section-id='stats-infographic-2024'] .stats-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6c63ff, #48c6ef);
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

[data-section-id='stats-infographic-2024'] .stats-panel:nth-child(2)::before {
  background: linear-gradient(90deg, #f7971e, #ffd200);
}

[data-section-id='stats-infographic-2024'] .stats-panel:nth-child(3)::before {
  background: linear-gradient(90deg, #11998e, #38ef7d);
}

[data-section-id='stats-infographic-2024'] .stats-panel:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 24px 60px rgba(72,198,239,0.15), 0 8px 24px rgba(0,0,0,0.35);
  border-color: rgba(108,99,255,0.4);
}

[data-section-id='stats-infographic-2024'] .stats-panel:hover::before {
  opacity: 1;
}

[data-section-id='stats-infographic-2024'] .stats-panel-icon-wrap {
  width: 80px;
  height: 80px;
  margin-bottom: 28px;
  flex-shrink: 0;
  filter: drop-shadow(0 6px 18px rgba(72,198,239,0.25));
  transition: filter 0.3s ease, transform 0.3s ease;
}

[data-section-id='stats-infographic-2024'] .stats-panel:hover .stats-panel-icon-wrap {
  filter: drop-shadow(0 10px 28px rgba(108,99,255,0.4));
  transform: scale(1.08) rotate(-3deg);
}

[data-section-id='stats-infographic-2024'] .stats-panel-icon {
  width: 80px;
  height: 80px;
  display: block;
}

[data-section-id='stats-infographic-2024'] .stats-panel-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

[data-section-id='stats-infographic-2024'] .stats-panel-num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #ffffff 30%, #48c6ef 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-section-id='stats-infographic-2024'] .stats-panel:nth-child(2) .stats-panel-num {
  background: linear-gradient(135deg, #ffffff 30%, #ffd200 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-section-id='stats-infographic-2024'] .stats-panel:nth-child(3) .stats-panel-num {
  background: linear-gradient(135deg, #ffffff 30%, #38ef7d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-section-id='stats-infographic-2024'] .stats-panel-label {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 700;
  color: #e8f0fe;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

[data-section-id='stats-infographic-2024'] .stats-panel-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #8fa8bf;
  line-height: 1.7;
  margin: 8px 0 0 0;
  max-width: 260px;
}

@media (max-width: 900px) {
  [data-section-id='stats-infographic-2024'] .stats-infographic-panels {
    flex-direction: column;
    align-items: center;
  }
  [data-section-id='stats-infographic-2024'] .stats-panel {
    max-width: 480px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  [data-section-id='stats-infographic-2024'] {
    padding: 60px 16px;
  }
  [data-section-id='stats-infographic-2024'] .stats-infographic-header {
    margin-bottom: 40px;
  }
  [data-section-id='stats-infographic-2024'] .stats-panel {
    padding: 36px 24px 32px;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');#footer{background:#0d1b2a;color:#ffffff;font-family:'Poppins',sans-serif;padding:60px 0 0 0;width:100%;box-sizing:border-box;}#footer *{box-sizing:border-box;}#footer .footer-container{max-width:1200px;margin:0 auto;padding:0 24px;}#footer .footer-top{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:40px;padding-bottom:48px;}#footer .footer-brand{}#footer .footer-logo{font-size:1.4rem;font-weight:700;color:#ffffff;letter-spacing:-0.5px;margin-bottom:12px;display:block;}#footer .footer-logo span{color:#4f9cf9;}#footer .footer-tagline{font-size:0.875rem;color:#a0aec0;line-height:1.7;margin:0 0 24px 0;max-width:260px;}#footer .footer-social{display:flex;gap:12px;margin-top:8px;}#footer .footer-social a{display:flex;align-items:center;justify-content:center;width:38px;height:38px;border-radius:50%;background:rgba(255,255,255,0.08);color:#ffffff;text-decoration:none;transition:background 0.3s ease,transform 0.2s ease;font-size:0.85rem;}#footer .footer-social a:hover{background:#4f9cf9;transform:translateY(-2px);}#footer .footer-col-title{font-size:0.8rem;font-weight:600;text-transform:uppercase;letter-spacing:1.5px;color:#4f9cf9;margin-bottom:20px;}#footer .footer-links{list-style:none;margin:0;padding:0;}#footer .footer-links li{margin-bottom:10px;}#footer .footer-links a{color:#a0aec0;text-decoration:none;font-size:0.875rem;font-weight:400;transition:color 0.25s ease,padding-left 0.25s ease;display:inline-block;}#footer .footer-links a:hover{color:#ffffff;padding-left:6px;}#footer .footer-divider{border:none;border-top:1px solid rgba(255,255,255,0.08);margin:0;}#footer .footer-bottom{display:flex;align-items:center;justify-content:space-between;padding:22px 24px;max-width:1200px;margin:0 auto;flex-wrap:wrap;gap:12px;}#footer .footer-copy{font-size:0.8rem;color:#718096;margin:0;}#footer .footer-copy a{color:#4f9cf9;text-decoration:none;}#footer .footer-copy a:hover{text-decoration:underline;}#footer .footer-legal{display:flex;gap:20px;flex-wrap:wrap;}#footer .footer-legal a{font-size:0.8rem;color:#718096;text-decoration:none;transition:color 0.25s ease;}#footer .footer-legal a:hover{color:#ffffff;}@media(max-width:900px){#footer .footer-top{grid-template-columns:1fr 1fr;gap:32px;}}@media(max-width:580px){#footer .footer-top{grid-template-columns:1fr;gap:28px;}#footer .footer-bottom{flex-direction:column;align-items:flex-start;text-align:left;}#footer .footer-legal{gap:14px;}}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');#footer{background:#0d1b2a;color:#ffffff;font-family:'Poppins',sans-serif;padding:60px 0 0 0;width:100%;box-sizing:border-box;}#footer *{box-sizing:border-box;}#footer .footer-container{max-width:1200px;margin:0 auto;padding:0 24px;}#footer .footer-top{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:40px;padding-bottom:48px;}#footer .footer-brand{}#footer .footer-logo{font-size:1.4rem;font-weight:700;color:#ffffff;letter-spacing:-0.5px;margin-bottom:12px;display:block;}#footer .footer-logo span{color:#4f9cf9;}#footer .footer-tagline{font-size:0.875rem;color:#a0aec0;line-height:1.7;margin:0 0 24px 0;max-width:260px;}#footer .footer-social{display:flex;gap:12px;margin-top:8px;}#footer .footer-social a{display:flex;align-items:center;justify-content:center;width:38px;height:38px;border-radius:50%;background:rgba(255,255,255,0.08);color:#ffffff;text-decoration:none;transition:background 0.3s ease,transform 0.2s ease;font-size:0.85rem;}#footer .footer-social a:hover{background:#4f9cf9;transform:translateY(-2px);}#footer .footer-col-title{font-size:0.8rem;font-weight:600;text-transform:uppercase;letter-spacing:1.5px;color:#4f9cf9;margin-bottom:20px;}#footer .footer-links{list-style:none;margin:0;padding:0;}#footer .footer-links li{margin-bottom:10px;}#footer .footer-links a{color:#a0aec0;text-decoration:none;font-size:0.875rem;font-weight:400;transition:color 0.25s ease,padding-left 0.25s ease;display:inline-block;}#footer .footer-links a:hover{color:#ffffff;padding-left:6px;}#footer .footer-divider{border:none;border-top:1px solid rgba(255,255,255,0.08);margin:0;}#footer .footer-bottom{display:flex;align-items:center;justify-content:space-between;padding:22px 24px;max-width:1200px;margin:0 auto;flex-wrap:wrap;gap:12px;}#footer .footer-copy{font-size:0.8rem;color:#718096;margin:0;}#footer .footer-copy a{color:#4f9cf9;text-decoration:none;}#footer .footer-copy a:hover{text-decoration:underline;}#footer .footer-legal{display:flex;gap:20px;flex-wrap:wrap;}#footer .footer-legal a{font-size:0.8rem;color:#718096;text-decoration:none;transition:color 0.25s ease;}#footer .footer-legal a:hover{color:#ffffff;}@media(max-width:900px){#footer .footer-top{grid-template-columns:1fr 1fr;gap:32px;}}@media(max-width:580px){#footer .footer-top{grid-template-columns:1fr;gap:28px;}#footer .footer-bottom{flex-direction:column;align-items:flex-start;text-align:left;}#footer .footer-legal{gap:14px;}}