@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.6;
  overflow-x: hidden;
}

/* ===== SECTION 1 - HERO ===== */
.services-hero {
  background-color: #0D3B3E;
  position: relative;
  padding: 120px 5% 100px;
  text-align: center;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-hero__glow {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 210, 90, 0.18) 0%, rgba(255, 210, 90, 0.05) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}

.services-hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.services-hero__h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: #FFD25A;
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.services-hero__subheadline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #FFF2B0;
  margin-bottom: 20px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  line-height: 1.7;
}

.services-hero__trust {
  font-size: 0.95rem;
  color: #E6B23A;
  font-style: italic;
  margin-bottom: 40px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.services-hero__cta {
  display: inline-block;
  background-color: #FFD25A;
  color: #0D3B3E;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 42px;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
  border: 2px solid #FFD25A;
  box-shadow: 0 4px 20px rgba(255, 210, 90, 0.3);
}

.services-hero__cta:hover {
  background-color: #E6B23A;
  border-color: #E6B23A;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 210, 90, 0.45);
  color: #0D3B3E;
}

/* ===== SECTION 2 - SERVICES INTRO ===== */
.services-intro {
  background-color: #1A5055;
  padding: 100px 5%;
}

.services-intro__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.services-intro__h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #FFD25A;
  margin-bottom: 24px;
}

.services-intro__desc {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #FFFFFF;
  max-width: 750px;
  margin: 0 auto 60px;
  line-height: 1.8;
  opacity: 0.92;
}

.services-intro__stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.services-intro__stat-card {
  background-color: #0D3B3E;
  border-radius: 16px;
  padding: 36px 44px;
  min-width: 200px;
  flex: 1;
  max-width: 280px;
  text-align: center;
  border: 1px solid rgba(255, 210, 90, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-intro__stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(255, 210, 90, 0.2);
}

.services-intro__stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #FFD25A;
  display: block;
  margin-bottom: 8px;
}

.services-intro__stat-label {
  font-size: 0.95rem;
  color: #FFF2B0;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ===== SECTION 3 - SERVICE DETAIL CARDS ===== */
.services-cards {
  background-color: #0D3B3E;
  padding: 100px 5%;
}

.services-cards__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-cards__h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #FFD25A;
  text-align: center;
  margin-bottom: 60px;
}

.services-cards__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.services-card {
  background-color: #1A5055;
  border-radius: 20px;
  padding: 40px 36px;
  border: 1px solid rgba(255, 210, 90, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.services-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 210, 90, 0.35);
}

.services-card__icon {
  font-size: 2.2rem;
  color: #FFD25A;
  display: block;
  margin-bottom: 6px;
}

.services-card__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFD25A;
}

.services-card__body {
  font-size: 0.97rem;
  color: #FFFFFF;
  line-height: 1.75;
  opacity: 0.9;
  flex: 1;
}

.services-card__link {
  display: inline-block;
  color: #E6B23A;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
  width: fit-content;
  margin-top: 4px;
}

.services-card__link:hover {
  border-bottom-color: #E6B23A;
  color: #FFD25A;
}

/* ===== SECTION 4 - PLATFORM REACH ===== */
.services-platforms {
  background: linear-gradient(135deg, #E6B23A 0%, #B7902A 100%);
  padding: 100px 5%;
}

.services-platforms__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.services-platforms__h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #0D3B3E;
  margin-bottom: 16px;
}

.services-platforms__subtext {
  font-size: 1rem;
  color: #0D3B3E;
  max-width: 600px;
  margin: 0 auto 50px;
  font-weight: 500;
  opacity: 0.85;
}

.services-platforms__scroll-wrapper {
  overflow-x: auto;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(13,59,62,0.4) transparent;
}

.services-platforms__scroll-wrapper::-webkit-scrollbar {
  height: 5px;
}

.services-platforms__scroll-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.services-platforms__scroll-wrapper::-webkit-scrollbar-thumb {
  background-color: rgba(13,59,62,0.35);
  border-radius: 10px;
}

.services-platforms__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  min-width: fit-content;
}

.services-platform-badge {
  background-color: #0D3B3E;
  color: #FFD25A;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  white-space: nowrap;
  transition: background-color 0.3s ease, transform 0.25s ease;
  border: 1.5px solid rgba(255, 210, 90, 0.25);
}

.services-platform-badge:hover {
  background-color: #1A5055;
  transform: translateY(-2px);
}

/* ===== SECTION 5 - HOW SERVICES COMBINE ===== */
.services-multichannel {
  background-color: #0D3B3E;
  padding: 100px 5%;
}

.services-multichannel__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.services-multichannel__h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #FFD25A;
  margin-bottom: 60px;
}

.services-multichannel__steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.services-mc-step {
  flex: 1;
  min-width: 240px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}

.services-mc-step__icon {
  font-size: 3rem;
  color: #FFD25A;
  background-color: rgba(255, 210, 90, 0.1);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 210, 90, 0.25);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.services-mc-step:hover .services-mc-step__icon {
  background-color: rgba(255, 210, 90, 0.2);
  transform: scale(1.08);
}

.services-mc-step__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFD25A;
}

.services-mc-step__arrow {
  font-size: 1.5rem;
  color: #E6B23A;
  align-self: center;
  margin-top: 0;
  opacity: 0.7;
}

.services-mc-step__desc {
  font-size: 0.97rem;
  color: #FFFFFF;
  line-height: 1.7;
  opacity: 0.88;
  text-align: center;
}

.services-mc-connector {
  display: flex;
  align-items: center;
  padding-top: 12px;
  color: #E6B23A;
  font-size: 2rem;
  opacity: 0.7;
}

/* ===== SECTION 6 - CTA ===== */
.services-cta {
  background-color: #FFD25A;
  padding: 100px 5%;
  text-align: center;
}

.services-cta__inner {
  max-width: 800px;
  margin: 0 auto;
}

.services-cta__h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #0D3B3E;
  margin-bottom: 18px;
  line-height: 1.2;
}

.services-cta__subtext {
  font-size: 1.05rem;
  color: #0D3B3E;
  margin-bottom: 44px;
  opacity: 0.85;
  font-weight: 500;
}

.services-cta__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.services-cta__btn {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 2px solid #0D3B3E;
}

.services-cta__btn--primary {
  background-color: #0D3B3E;
  color: #FFD25A;
}

.services-cta__btn--primary:hover {
  background-color: #1A5055;
  border-color: #1A5055;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(13, 59, 62, 0.35);
  color: #FFD25A;
}

.services-cta__btn--secondary {
  background-color: transparent;
  color: #0D3B3E;
  border: 2px solid #0D3B3E;
}

.services-cta__btn--secondary:hover {
  background-color: #0D3B3E;
  color: #FFD25A;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(13, 59, 62, 0.3);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeInUp 0.7s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.25s; }
.animate-delay-3 { animation-delay: 0.4s; }

.services-section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FFD25A, #E6B23A);
  margin: 0 auto 40px;
  border-radius: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .services-cards__grid {
    grid-template-columns: 1fr;
  }

  .services-multichannel__steps {
    flex-direction: column;
    align-items: center;
  }

  .services-mc-connector {
    transform: rotate(90deg);
    padding-top: 0;
  }

  .services-intro__stats {
    flex-direction: column;
    align-items: center;
  }

  .services-intro__stat-card {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .services-hero {
    padding: 100px 6% 80px;
  }

  .services-cards {
    padding: 70px 5%;
  }

  .services-card {
    padding: 32px 24px;
  }

  .services-cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .services-cta__btn {
    width: 100%;
    max-width: 340px;
    text-align: center;
  }

  .services-platforms__badges {
    justify-content: flex-start;
  }
}


    /* 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;
    }


    /* 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='comparison-table-section'] { width: 100%; background: linear-gradient(135deg, #0d1b2a 0%, #1a2e45 50%, #0d2137 100%); padding: 80px 20px; box-sizing: border-box; font-family: 'Inter', sans-serif; } [data-section-id='comparison-table-section'] .cts-container { max-width: 1100px; margin: 0 auto; } [data-section-id='comparison-table-section'] .cts-header { text-align: center; margin-bottom: 50px; } [data-section-id='comparison-table-section'] .cts-title { font-family: 'Poppins', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #ffffff; margin: 0 0 14px 0; letter-spacing: -0.5px; background: linear-gradient(90deg, #00d4ff, #7b5cfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } [data-section-id='comparison-table-section'] .cts-subtitle { font-family: 'Inter', sans-serif; font-size: 1.1rem; color: #a8c8e8; margin: 0; font-weight: 400; } [data-section-id='comparison-table-section'] .cts-table-wrapper { width: 100%; overflow-x: auto; border-radius: 16px; box-shadow: 0 25px 60px rgba(0,0,0,0.4); } [data-section-id='comparison-table-section'] .cts-table { width: 100%; border-collapse: collapse; background: #0f2035; border-radius: 16px; overflow: hidden; font-family: 'Inter', sans-serif; } [data-section-id='comparison-table-section'] .cts-table thead tr { background: linear-gradient(90deg, #1e3a5f, #2a4a6e); } [data-section-id='comparison-table-section'] .cts-table thead th { padding: 20px 24px; font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; color: #ffffff; text-align: center; letter-spacing: 0.5px; border-bottom: 2px solid #00d4ff; } [data-section-id='comparison-table-section'] .cts-table thead th.cts-col-feature { text-align: left; } [data-section-id='comparison-table-section'] .cts-table thead th.cts-col-premium { background: linear-gradient(135deg, rgba(0,212,255,0.15), rgba(123,92,250,0.15)); color: #00d4ff; } [data-section-id='comparison-table-section'] .cts-table thead th.cts-col-standard { color: #a8c8e8; } [data-section-id='comparison-table-section'] .cts-table tbody tr { border-bottom: 1px solid rgba(255,255,255,0.06); transition: background 0.2s ease; } [data-section-id='comparison-table-section'] .cts-table tbody tr:hover:not(.cts-section-header) { background: rgba(0, 212, 255, 0.05); } [data-section-id='comparison-table-section'] .cts-table tbody td { padding: 14px 24px; font-size: 0.92rem; color: #cde0f5; text-align: center; vertical-align: middle; } [data-section-id='comparison-table-section'] .cts-table tbody td:first-child { text-align: left; color: #e2f0ff; font-weight: 500; } [data-section-id='comparison-table-section'] .cts-table tbody tr.cts-section-header td { background: linear-gradient(90deg, #1a3554, #162d47); color: #00d4ff; font-family: 'Poppins', sans-serif; font-size: 0.88rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; padding: 12px 24px; text-align: left; border-top: 2px solid rgba(0,212,255,0.3); border-bottom: 1px solid rgba(0,212,255,0.2); } [data-section-id='comparison-table-section'] .cts-table tbody .cts-check { color: #22d46a; font-size: 1.2rem; font-weight: 700; } [data-section-id='comparison-table-section'] .cts-table tbody .cts-cross { color: #ff4d6d; font-size: 1.2rem; font-weight: 700; } [data-section-id='comparison-table-section'] .cts-table tbody .cts-note { color: #ffc107; font-size: 0.88rem; font-weight: 600; } [data-section-id='comparison-table-section'] .cts-table tbody .cts-footnote { color: #7fb3d3; font-size: 0.82rem; font-style: italic; text-align: left; padding: 10px 24px; background: rgba(0,212,255,0.04); } [data-section-id='comparison-table-section'] .cts-table tbody tr:last-child { border-bottom: none; } @media (max-width: 768px) { [data-section-id='comparison-table-section'] { padding: 50px 12px; } [data-section-id='comparison-table-section'] .cts-table thead th, [data-section-id='comparison-table-section'] .cts-table tbody td { padding: 12px 14px; font-size: 0.82rem; } [data-section-id='comparison-table-section'] .cts-title { font-size: 1.8rem; } } @media (max-width: 480px) { [data-section-id='comparison-table-section'] .cts-table thead th, [data-section-id='comparison-table-section'] .cts-table tbody td { padding: 10px 10px; font-size: 0.76rem; } }


    /* 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=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;}}
@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;}}