/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #374151;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Utility Classes */
.text-pink {
  color: #ec4899;
}

.text-white {
  color: white;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.btn-primary {
  background-color: #ec4899;
  color: white;
}

.btn-primary:hover {
  background-color: #be185d;
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  color: #374151;
  border: 1px solid #d1d5db;
}

.btn-outline:hover {
  background-color: #f9fafb;
}

.btn-white {
  background-color: white;
  color: #ec4899;
}

.btn-white:hover {
  background-color: #f9fafb;
}

.btn-outline-white {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}
.header.scrolled {
  background: rgba(255,255,255,0.98) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07) !important;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo-img {
  height: 3rem;
  width: auto;
}

.nav-desktop {
  display: none;
  gap: 1.5rem;
}

.nav-link {
  background: none;
  border: none;
  color: #374151;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ec4899;
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 20px;
  height: 2px;
  background-color: #374151;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background-color: white;
  border-top: 1px solid #e5e7eb;
}

.nav-mobile.active {
  display: flex;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(135, 206, 235, 0.4);
  backdrop-filter: blur(1px);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding-top: 4rem;
}

.hero-text {
  max-width: 64rem;
  margin: 0 auto;
}

.hero-title {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.hero-subtitle {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 3rem;
}

.hero-cta {
  padding-top: 1.5rem;
}

.play-btn {
  background-color: white;
  border: none;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
  animation: bounce-slow 3s infinite;
  font-family: sans-serif;
  text-decoration: none;
}

.play-btn:hover {
  background-color: #f9fafb;
  transform: scale(1.1);
}

.play-icon {
  width: 2rem;
  height: 2rem;
  color: #ec4899;
  fill: #ec4899;
}

.play-text {
  color: white;
  margin-top: 0.75rem;
  font-weight: 500;
}

.dashboard-preview {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 80rem;
  padding: 0 1rem;
  z-index: 20;
}

.dashboard-container {
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  border-radius: 0.75rem 0.75rem 0 0;
  overflow: hidden;
  border: 8px solid white;
}

.dashboard-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Animations */
@keyframes bounce-slow {
  0%,
  20%,
  53%,
  80%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    transform: translate3d(0, -8px, 0);
  }
  70% {
    transform: translate3d(0, -4px, 0);
  }
  90% {
    transform: translate3d(0, -2px, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.fade-in-image {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.fade-in-image.visible {
  opacity: 1;
}

/* Features Section */
.features {
  padding: 8rem 0 10rem;
  background-color: white;
  scroll-margin-top: 4rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 48rem;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.feature-card {
  background-color: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background-color: #fdf2f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: rotate(12deg);
}

.feature-number {
  color: #ec4899;
  font-size: 1.25rem;
  font-weight: bold;
}

.feature-title {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}

.feature-description {
  color: #6b7280;
  font-size: 0.875rem;
}

/* Key Features */
.key-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.key-features-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.key-features-description {
  color: #6b7280;
  margin-bottom: 2rem;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.benefit-icon {
  width: 1.5rem;
  height: 1.5rem;
  background-color: #fdf2f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.benefit-icon svg {
  width: 1rem;
  height: 1rem;
  color: #ec4899;
}

.key-features-image {
  position: relative;
}

.image-container {
  max-width: 100%;
  width: 100%;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-radius: 0.75rem;
  overflow: hidden;
  border: 8px solid white;
}

.image-container img {
  width: 115%;
  height: auto;
  display: block;
}

/* Three Column Features */
.three-column-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.column-feature {
  text-align: center;
  padding: 2rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.column-feature:hover {
  transform: scale(1.05);
}

.column-feature:nth-child(1) {
  background: linear-gradient(135deg, #fdf2f8, #f3e8ff);
}

.column-feature:nth-child(2) {
  background: linear-gradient(135deg, #eff6ff, #e0e7ff);
}

.column-feature:nth-child(3) {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.column-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.column-feature:hover .column-icon {
  transform: rotate(12deg);
}

.column-icon.pink {
  background-color: #ec4899;
}

.column-icon.blue {
  background-color: #2563eb;
}

.column-icon.green {
  background-color: #059669;
}

.column-icon svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.column-feature h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.column-feature p {
  color: #6b7280;
}

/* Reports Section */
.reports {
  padding: 5rem 0;
  background-color: #f9fafb;
  scroll-margin-top: 4rem;
}

.reports-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.reports-image {
  position: relative;
  
  margin-left: -200px;
}

.reports-image .image-container {
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-radius: 0.75rem;
  overflow: hidden;
  border: 8px solid white;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.floating-circle.pink {
  width: 8rem;
  height: 8rem;
  background-color: #ec4899;
  bottom: -1.5rem;
  right: -1.5rem;
}

.floating-circle.blue {
  width: 8rem;
  height: 8rem;
  background-color: #3b82f6;
  bottom: -1.5rem;
  right: -1.5rem;
}

.floating-circle-small.pink {
  width: 5rem;
  height: 5rem;
  background-color: #ec4899;
  top: -1.5rem;
  left: -1.5rem;
}

.reports-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.reports-description {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

.reports-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.report-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.report-feature-number {
  width: 2rem;
  height: 2rem;
  background-color: #fdf2f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ec4899;
  font-weight: bold;
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.report-feature-content h4 {
  font-weight: bold;
  color: #111827;
  margin-bottom: 0.25rem;
}

.report-feature-content p {
  color: #6b7280;
}

/* Advanced Features Section */
.advanced-features {
  padding: 5rem 0;
  background-color: white;
}

.advanced-features-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.advanced-features-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.advanced-features-description {
  color: #6b7280;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

/* Comparison Section */
.comparison {
  padding: 5rem 0;
  background-color: #f9fafb;
  scroll-margin-top: 4rem;
}

.comparison-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.comparison-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.comparison-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.comparison-card.recommended {
  border: 2px solid #ec4899;
  transform: scale(1.05);
}

.recommended-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ec4899;
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.card-header {
  text-align: center;
  margin-bottom: 1rem;
}

.card-header h3 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 0.25rem;
}

.price-note {
  font-size: 0.875rem;
  color: #6b7280;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  position: relative;
  padding-left: 1rem;
}

.feature-item::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #9ca3af;
}

.feature-item.active::before {
  background-color: #10b981;
}

.comparison-card.recommended .feature-item {
  color: #374151;
}

/* Comparison Table */
.comparison-table {
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 2rem;
}

.table-header {
  background-color: #f3f4f6;
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.table-header h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
}

.table-container {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

th {
  background-color: #f9fafb;
  font-weight: 500;
  color: #374151;
  min-width: 120px;
}

th:first-child {
  min-width: 250px;
}

.simplicity-col {
  color: #ec4899;
}

td {
  text-align: center;
}

td:first-child {
  text-align: left;
  font-weight: 500;
  color: #111827;
}

.feature-full .check-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #10b981;
}

.feature-none .x-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #ef4444;
}

.partial-dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #f59e0b;
  margin: 0 auto;
}

.basic-dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #f97316;
  margin: 0 auto;
}

tr:hover {
  background-color: #f9fafb;
}

/* Legend */
.comparison-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.legend-item .check-icon,
.legend-item .x-icon {
  width: 1rem;
  height: 1rem;
}

.legend-item .check-icon {
  color: #10b981;
}

.legend-item .x-icon {
  color: #ef4444;
}

.comparison-cta {
  text-align: center;
}

.comparison-cta p {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* CTA Section */
.cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  color: white;
  scroll-margin-top: 4rem;
}

.cta-content {
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.cta-description {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 32rem;
  margin: 0 auto 2.5rem;
}

/* Footer */
.footer {
  padding: 3rem 0;
  background-color: #111827;
  color: white;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  height: 2.5rem;
  width: auto;
  margin-bottom: 1rem;
}

.footer-description {
  color: #9ca3af;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column h3 {
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

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

.footer-column a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Responsive Design */
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 4rem;
  }

  .section-title {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 1.875rem;
  }

  .hero-subtitle {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .key-features {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .reports-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .advanced-features-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .three-column-features {
    grid-template-columns: 1fr;
  }

  .comparison-cards {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-preview {
    bottom: -50px;
  }

  .features {
    padding: 6rem 0 8rem;
  }
}

.reports-img-large {
  width: 100%;
  max-width: 1000px;
  min-width: 300px;
  height: auto;
  display: block;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border-radius: 12px;
  object-fit: cover;
}

.image-container {
  max-width: 140%;
  width: 140%;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-radius: 0.75rem;
  overflow: hidden;
  border: 8px solid white;
}

.reports-image,
.advanced-features-image {
  width: 100%;
  max-width: 100vw;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.75);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.modal-overlay.active {
  display: flex;
}
.modal-content {
  background: #111;
  border-radius: 16px;
  max-width: 800px;
  width: 95vw;
  max-height: 90vh;
  margin: auto;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
}
.modal-close {
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  position: absolute;
  top: 12px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}
.modal-video {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}
.modal-video iframe {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  border: none;
  border-radius: 0 0 16px 16px;
}

/* Custom Hero Section Styles */
.custom-hero-section {
  min-height: 100vh;
  height: 100vh;
}
.custom-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100%;
  background: url('images/background-a.webp') center center/cover no-repeat;
  z-index: 1;
  opacity: 0.6;
}
.custom-hero-title {
  color: #fff;
  font-size: 2.3rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.18;
  margin-bottom: 32px;
}
.custom-hero-content {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.custom-play-btn {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  cursor: pointer;
  transition: background 0.2s;
  font-size: 2.5rem;
  text-decoration: none;
}
.custom-play-btn:hover {
  background: #f3f3f3;
}
.custom-play-icon {
  color: #0178ab;
  font-size: 2.5rem;
  margin-left: 6px;
  text-decoration: none;
}
.custom-watch-text {
  margin-top: -15px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
}
.custom-floating-card {
  position: absolute;
  left: 50%;
  bottom: -120px;
  transform: translateX(-50%);
  z-index: 3;
  box-shadow: 0 12px 48px 0 rgba(44,62,80,0.22), 0 2px 8px 0 rgba(44,62,80,0.10);
  border-radius: 24px;
  background: #eeeff2;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 6px solid #eeeff2;
  overflow: visible;
}
.custom-floating-card-img {
  width: 950px;
  max-width: 98vw;
  border-radius: 0px;
  display: block;
}

.custom-floating-card::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%) rotate(-8deg);
  width: 90%;
  height: 60%;
  background: rgba(44, 62, 80, 0.18); /* dark, semi-transparent */
  filter: blur(18px);
  border-radius: 32px;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .custom-floating-card-img {
    width: 90vw;
    max-width: 98vw;
  }
  .custom-floating-card {
    bottom: -80px;
  }
}
@media (max-width: 800px) {
  .custom-floating-card-img {
    width: 98vw;
    max-width: 98vw;
  }
  .custom-floating-card {
    bottom: -40px;
  }
}
.custom-book-meeting {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 100;
  background: #b388ff;
  color: #fff;
  padding: 18px 32px;
  border-radius: 18px;
  font-size: 1.15rem;
  font-weight: 600;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  text-decoration: none;
  transition: background 0.2s;
}
.custom-book-meeting:hover {
  background: #7c43bd;
}
/* Modal Styles */
.custom-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.65);
  align-items: center;
  justify-content: center;
}
.custom-modal-content {
  background: #222;
  margin: auto;
  padding: 0;
  border-radius: 16px;
  width: 90vw;
  max-width: 700px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.custom-modal-close {
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  position: absolute;
  top: 12px;
  right: 24px;
  cursor: pointer;
  z-index: 10;
}
.custom-modal-video-wrapper {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}
.custom-modal-video-wrapper iframe {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  border: none;
  border-radius: 0 0 16px 16px;
}
@media (max-width: 800px) {
  .custom-floating-card-img {
    width: 98vw;
    max-width: 98vw;
  }
  .custom-modal-content {
    max-width: 98vw;
  }
}

.features-section {
  padding: 10rem 0 2rem 0;
}

.feature-highlight {
  background: #fafbfc;
  padding: 4rem 0 2rem 0;
}
.feature-highlight-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}
.feature-highlight-text h2 {
  font-size: 2.1rem;
  font-weight: 400;
  color: #a3a3a3;
  line-height: 1.3;
  max-width: 600px;
  margin: 0;
}
.feature-highlight-image img {
  width: 420px;
  max-width: 40vw;
  height: auto;
  display: block;
  opacity: 0.7;
}

.document-management {
  background: #fff;
  padding: 4rem 0 2rem 0;
}
.document-management-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}
.document-management-text {
  max-width: 600px;
}
.doc-title {
  font-size: 3rem;
  font-weight: 900;
  color: #ffd600;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}
.doc-desc {
  font-size: 1.15rem;
  color: #a3a3a3;
  line-height: 1.5;
}
.document-management-image img {
  width: 420px;
  max-width: 40vw;
  height: auto;
  display: block;
  opacity: 0.8;
}

.feature-bank-feed, .feature-calculator {
  background: #fafbfc;
  padding: 4rem 0 2rem 0;
}
.feature-bank-feed-content, .feature-calculator-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}
.feature-bank-feed-text h2, .feature-calculator-text h2 {
  font-size: 2.1rem;
  font-weight: 700;
  color: #0178ab;
  margin-bottom: 1rem;
}
.feature-bank-feed-text p, .feature-calculator-text p {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.5;
}
.feature-bank-feed-image img, .feature-calculator-image img {
  width: 340px;
  max-width: 40vw;
  height: auto;
  display: block;
  opacity: 0.9;
}
@media (max-width: 900px) {
  .feature-bank-feed-content, .feature-calculator-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
  }
  .feature-bank-feed-image img, .feature-calculator-image img {
    width: 100%;
    max-width: 100vw;
  }
}

@media (max-width: 900px) {
  .feature-highlight-content,
  .document-management-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
  }
  .feature-highlight-image img,
  .document-management-image img {
    width: 100%;
    max-width: 100vw;
  }
}

/* About Us Page Styles */

/* About Hero Section */
.about-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  color: white;
  text-align: center;
}

.about-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* About Story Section */
.about-story {
  padding: 5rem 0;
  background-color: white;
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
}

.story-block {
  margin-bottom: 3rem;
}

.story-block h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
}

.story-block p {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.7;
}

/* Mission & Values Section */
.mission-values {
  padding: 5rem 0;
  background-color: #f9fafb;
}

.mission-content {
  max-width: 1000px;
  margin: 0 auto;
}

.mission-block {
  text-align: center;
  margin-bottom: 4rem;
}

.mission-block h3 {
  font-size: 2rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1.5rem;
}

.mission-block p {
  font-size: 1.25rem;
  color: #6b7280;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  background-color: white;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.value-icon {
  width: 4rem;
  height: 4rem;
  background-color: #fdf2f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.value-icon svg {
  width: 2rem;
  height: 2rem;
  color: #ec4899;
}

.value-card h4 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
}

.value-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Accounting Revolution Section */
.accounting-revolution {
  padding: 5rem 0;
  background-color: white;
}

.revolution-content {
  max-width: 800px;
  margin: 0 auto;
}

.revolution-block {
  margin-bottom: 3rem;
}

.revolution-block h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
}

.revolution-block p {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.7;
}

/* Different Section */
.different-section {
  padding: 5rem 0;
  background-color: #f9fafb;
}

.different-content {
  max-width: 800px;
  margin: 0 auto;
}

.different-block {
  margin-bottom: 3rem;
}

.different-block h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
}

.different-block p {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.5rem 0;
  color: #6b7280;
  position: relative;
  padding-left: 1.5rem;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ec4899;
  font-weight: bold;
}

/* Vision Section */
.vision-section {
  padding: 5rem 0;
  background-color: white;
}

.vision-content {
  max-width: 800px;
  margin: 0 auto;
}

.vision-block {
  margin-bottom: 3rem;
}

.vision-block h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
}

.vision-block p {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.7;
}

/* About CTA Section */
.about-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  color: white;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
  .about-hero-title {
    font-size: 2rem;
  }
  
  .about-hero-subtitle {
    font-size: 1.125rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .story-block h3,
  .revolution-block h3,
  .different-block h3,
  .vision-block h3 {
    font-size: 1.25rem;
  }
  
  .story-block p,
  .revolution-block p,
  .different-block p,
  .vision-block p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-hero-title {
    font-size: 1.75rem;
  }
  
  .about-hero {
    padding: 6rem 0 3rem;
  }
  
  .about-story,
  .mission-values,
  .accounting-revolution,
  .different-section,
  .vision-section {
    padding: 3rem 0;
  }
}

/* Integrations Page Styles */

/* Integrations Hero Section */
.integrations-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #1e293b, #334155);
  color: white;
  text-align: center;
}

.integrations-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.integrations-hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.integrations-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Why Integrate Section */
.why-integrate {
  padding: 5rem 0;
  background-color: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background-color: #f9fafb;
  padding: 2rem;
  border-radius: 0.75rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #ec4899;
}

.benefit-card .benefit-icon {
  width: 4rem;
  height: 4rem;
  background-color: #fdf2f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.benefit-card .benefit-icon svg {
  width: 2rem;
  height: 2rem;
  color: #ec4899;
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
}

.benefit-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* API Features Section */
.api-features {
  padding: 5rem 0;
  background-color: #f9fafb;
}

.api-content {
  max-width: 900px;
  margin: 0 auto;
}

.api-block {
  margin-bottom: 3rem;
  background-color: white;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.api-block h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
}

.api-block p {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Integration Examples Section */
.integration-examples {
  padding: 5rem 0;
  background-color: white;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.example-card {
  background-color: #f9fafb;
  padding: 2rem;
  border-radius: 0.75rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.example-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.example-card .example-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: #ec4899;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.example-card .example-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: white;
}

.example-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
}

.example-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Partnership Section */
.partnership-section {
  padding: 5rem 0;
  background-color: #f9fafb;
}

.partnership-content {
  max-width: 900px;
  margin: 0 auto;
}

.partnership-block {
  margin-bottom: 3rem;
  background-color: white;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.partnership-block h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
}

.process-list {
  list-style: none;
  padding: 0;
}

.process-list li {
  padding: 0.75rem 0;
  color: #6b7280;
  position: relative;
  padding-left: 2rem;
  border-bottom: 1px solid #f3f4f6;
}

.process-list li:last-child {
  border-bottom: none;
}

.process-list li::before {
  content: counter(list-counter);
  counter-increment: list-counter;
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #ec4899;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: bold;
}

.process-list {
  counter-reset: list-counter;
}

/* API Documentation Section */
.api-docs-section {
  padding: 5rem 0;
  background-color: white;
}

.docs-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.docs-card {
  background-color: #f9fafb;
  padding: 2rem;
  border-radius: 0.75rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.docs-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #ec4899;
}

.docs-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
}

.docs-card p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.docs-card .btn {
  margin-top: 1rem;
}

/* Integrations CTA Section */
.integrations-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1e293b, #334155);
  color: white;
}

/* Responsive Design for Integrations Page */
@media (max-width: 768px) {
  .integrations-hero-title {
    font-size: 2rem;
  }
  
  .integrations-hero-subtitle {
    font-size: 1.125rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .benefits-grid,
  .examples-grid,
  .docs-content {
    grid-template-columns: 1fr;
  }
  
  .api-block h3,
  .partnership-block h3 {
    font-size: 1.25rem;
  }
  
  .api-block p,
  .partnership-block p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .integrations-hero-title {
    font-size: 1.75rem;
  }
  
  .integrations-hero {
    padding: 6rem 0 3rem;
  }
  
  .why-integrate,
  .api-features,
  .integration-examples,
  .partnership-section,
  .api-docs-section {
    padding: 3rem 0;
  }
}

/* Acknowledgment Section */
.acknowledgment-section {
  padding: 3rem 0;
  background-color: #f3f4f6;
  text-align: center;
}

.acknowledgment-content {
  max-width: 800px;
  margin: 0 auto;
}

.acknowledgment-text {
  font-size: 1.25rem;
  color: #374151;
  line-height: 1.6;
  font-style: italic;
}

.acknowledgment-text strong {
  color: #ec4899;
  font-style: normal;
}

@media (max-width: 768px) {
  .acknowledgment-text {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .acknowledgment-section {
    padding: 2rem 0;
  }
  
  .acknowledgment-text {
    font-size: 1rem;
  }
}

/* Updates Page Styles */

/* Updates Hero Section */
.updates-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  color: white;
  text-align: center;
}

.updates-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.updates-hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.updates-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* Latest Update Section */
.latest-update {
  padding: 5rem 0;
  background-color: white;
}

.update-card {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-bottom: 3rem;
}

.update-card.featured {
  border: 2px solid #ec4899;
  box-shadow: 0 10px 25px rgba(236, 72, 153, 0.1);
}

.update-header {
  padding: 2rem;
  background-color: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}

.update-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.update-date {
  background-color: #ec4899;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.update-version {
  background-color: #6b7280;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.update-title {
  font-size: 1.875rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.update-description {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.6;
}

.update-features {
  padding: 2rem;
}

.feature-update {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #f3f4f6;
}

.feature-update:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background-color: #fdf2f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #ec4899;
}

.feature-content h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 0.75rem;
}

.feature-content p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.feature-details {
  list-style: none;
  padding: 0;
}

.feature-details li {
  padding: 0.25rem 0;
  color: #6b7280;
  position: relative;
  padding-left: 1.25rem;
}

.feature-details li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ec4899;
  font-weight: bold;
}

/* Previous Updates Section */
.previous-updates {
  padding: 5rem 0;
  background-color: #f9fafb;
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.update-card {
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.update-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.update-highlights {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 0 2rem 2rem;
}

.highlight {
  background-color: #f3f4f6;
  color: #374151;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Subscribe Section */
.subscribe-section {
  padding: 4rem 0;
  background-color: white;
  text-align: center;
}

.subscribe-content h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
}

.subscribe-content p {
  color: #6b7280;
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.subscribe-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.subscribe-form input {
  flex: 1;
  min-width: 250px;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
}

.subscribe-form input:focus {
  outline: none;
  border-color: #ec4899;
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

/* Updates CTA Section */
.updates-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1e293b, #334155);
  color: white;
}

/* Responsive Design for Updates Page */
@media (max-width: 768px) {
  .updates-hero-title {
    font-size: 2rem;
  }
  
  .updates-hero-subtitle {
    font-size: 1.125rem;
  }
  
  .update-title {
    font-size: 1.5rem;
  }
  
  .feature-update {
    flex-direction: column;
    gap: 1rem;
  }
  
  .feature-icon {
    align-self: flex-start;
  }
  
  .updates-grid {
    grid-template-columns: 1fr;
  }
  
  .subscribe-form {
    flex-direction: column;
    align-items: center;
  }
  
  .subscribe-form input {
    min-width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .updates-hero-title {
    font-size: 1.75rem;
  }
  
  .updates-hero {
    padding: 6rem 0 3rem;
  }
  
  .latest-update,
  .previous-updates {
    padding: 3rem 0;
  }
  
  .update-header {
    padding: 1.5rem;
  }
  
  .update-features {
    padding: 1.5rem;
  }
  
  .update-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Roadmap Page Styles */

/* Roadmap Hero Section */
.roadmap-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #1e293b, #334155);
  color: white;
  text-align: center;
}

.roadmap-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.roadmap-hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.roadmap-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* Roadmap Legend */
.roadmap-legend {
  padding: 3rem 0;
  background-color: white;
  border-bottom: 1px solid #e5e7eb;
}

.legend-content {
  text-align: center;
}

.legend-content h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 2rem;
}

.legend-items {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.legend-dot.in-progress {
  background-color: #f59e0b;
}

.legend-dot.planned {
  background-color: #3b82f6;
}

.legend-dot.completed {
  background-color: #10b981;
}

.legend-dot.research {
  background-color: #8b5cf6;
}

/* Mindmap Roadmap */
.roadmap-mindmap {
  padding: 5rem 0;
  background-color: #f9fafb;
  min-height: 120vh; /* Increased height */
  position: relative;
  overflow: hidden;
}

.mindmap-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  height: 100vh; /* Full viewport height */
  overflow-y: auto; /* Make container scrollable */
}

/* Central Node */
.central-node {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.central-content {
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  color: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  min-width: 200px;
}

.central-content h2 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.central-content p {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Branch Styles */
.branch {
  position: absolute;
  width: 300px;
  max-height: 400px; /* Set maximum height */
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  z-index: 1; /* Initial z-index */
  display: flex;
  flex-direction: column;
}

.branch:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.branch:active {
  transform: scale(0.98);
}

.branch-header {
  padding: 1.5rem;
  background-color: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0; /* Prevent header from shrinking */
}

.branch-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #fdf2f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.branch-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #ec4899;
}

.branch-header h3 {
  font-size: 1.125rem;
  font-weight: bold;
  color: #111827;
  margin: 0;
}

.feature-nodes {
  padding: 1.5rem;
  flex: 1;
  overflow-y: auto; /* Make feature nodes scrollable */
  max-height: 300px; /* Limit height for scrolling */
}

.feature-node {
  padding: 0.75rem;
  margin-bottom: 0.75rem;
  border-radius: 0.5rem;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.feature-node:hover {
  background-color: #f9fafb;
}

.feature-node.completed {
  border-left-color: #10b981;
  background-color: #f0fdf4;
}

.feature-node.in-progress {
  border-left-color: #f59e0b;
  background-color: #fffbeb;
}

.feature-node.planned {
  border-left-color: #3b82f6;
  background-color: #eff6ff;
}

.feature-node.research {
  border-left-color: #8b5cf6;
  background-color: #faf5ff;
}

.feature-title {
  display: block;
  font-weight: 500;
  color: #111827;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
}

.feature-status {
  display: block;
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* Upvote Button */
.upvote-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 0.25rem;
  transition: all 0.2s ease;
  color: #6b7280;
}

.upvote-btn:hover {
  background-color: #f3f4f6;
  color: #ec4899;
}

.upvote-btn.upvoted {
  color: #ec4899;
}

.upvote-count {
  font-size: 0.75rem;
  font-weight: 500;
  margin-left: 0.25rem;
}

/* Suggest Feature Button */
.suggest-feature-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 20;
}

.suggest-feature-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

/* Feature Suggestion Modal */
.feature-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.feature-modal.show {
  display: flex;
}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.modal-header h3 {
  margin: 0;
  color: #111827;
}

.close-modal {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #6b7280;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
  color: #374151;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}

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

.submit-suggestion {
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-suggestion:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

/* Branch Positioning */
.accounting-branch {
  top: 10%;
  left: 10%;
}

.maintenance-branch {
  top: 10%;
  right: 10%;
}

.reporting-branch {
  top: 35%;
  left: 5%;
}

.integrations-branch {
  top: 35%;
  right: 5%;
}

.operations-branch {
  bottom: 20%;
  left: 15%;
}

.analytics-branch {
  bottom: 20%;
  right: 15%;
}

/* Timeline Section */
.roadmap-timeline {
  padding: 5rem 0;
  background-color: white;
}

.timeline {
  max-width: 800px;
  margin: 3rem auto 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #e5e7eb;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-marker {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.timeline-marker.completed {
  background-color: #10b981;
}

.timeline-marker.in-progress {
  background-color: #f59e0b;
}

.timeline-marker.planned {
  background-color: #3b82f6;
}

.timeline-marker.research {
  background-color: #8b5cf6;
}

.timeline-content {
  width: 45%;
  padding: 1.5rem;
  background-color: #f9fafb;
  border-radius: 0.5rem;
  margin-left: 2.5rem;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 0;
  margin-right: 2.5rem;
}

.timeline-content h3 {
  font-size: 1.125rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: #6b7280;
  line-height: 1.6;
  font-size: 0.875rem;
}

/* Feedback Section */
.roadmap-feedback {
  padding: 4rem 0;
  background-color: #f9fafb;
  text-align: center;
}

.feedback-content h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
}

.feedback-content p {
  color: #6b7280;
  margin-bottom: 2rem;
  font-size: 1.125rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.feedback-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Roadmap CTA Section */
.roadmap-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1e293b, #334155);
  color: white;
}

/* Responsive Design for Roadmap */
@media (max-width: 1200px) {
  .mindmap-container {
    padding: 1rem;
  }
  
  .branch {
    width: 280px;
  }
  
  .accounting-branch {
    top: 5%;
    left: 5%;
  }
  
  .maintenance-branch {
    top: 5%;
    right: 5%;
  }
  
  .reporting-branch {
    top: 30%;
    left: 2%;
  }
  
  .integrations-branch {
    top: 30%;
    right: 2%;
  }
  
  .operations-branch {
    bottom: 15%;
    left: 10%;
  }
  
  .analytics-branch {
    bottom: 15%;
    right: 10%;
  }
}

@media (max-width: 768px) {
  .roadmap-hero-title {
    font-size: 2rem;
  }
  
  .roadmap-hero-subtitle {
    font-size: 1.125rem;
  }
  
  .legend-items {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .mindmap-container {
    padding: 0.5rem;
  }
  
  .central-node {
    position: relative;
    transform: none;
    margin-bottom: 2rem;
  }
  
  .branch {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }
  
  .timeline::before {
    left: 1rem;
  }
  
  .timeline-item {
    flex-direction: row;
  }
  
  .timeline-item:nth-child(even) {
    flex-direction: row;
  }
  
  .timeline-marker {
    left: 1rem;
    transform: none;
  }
  
  .timeline-content {
    width: calc(100% - 3rem);
    margin-left: 3rem;
  }
  
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 3rem;
    margin-right: 0;
  }
  
  .feedback-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .roadmap-hero-title {
    font-size: 1.75rem;
  }
  
  .roadmap-hero {
    padding: 6rem 0 3rem;
  }
  
  .roadmap-mindmap {
    padding: 3rem 0;
  }
  
  .roadmap-timeline {
    padding: 3rem 0;
  }
  
  .timeline-content {
    padding: 1rem;
  }
  
  .branch-header {
    padding: 1rem;
  }
  
  .feature-nodes {
    padding: 1rem;
  }
}

/* Documentation Page Styles */

/* Docs Hero Section */
.docs-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #1e293b, #334155);
  color: white;
  text-align: center;
}

.docs-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.docs-hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.docs-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.docs-search {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.docs-search input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  outline: none;
  font-size: 1rem;
}

.search-btn {
  background: #ec4899;
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-btn:hover {
  background: #db2777;
}

/* Docs Navigation */
.docs-nav {
  padding: 3rem 0;
  background-color: white;
  border-bottom: 1px solid #e5e7eb;
}

.docs-nav-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.docs-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: #f9fafb;
  border-radius: 1rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.docs-nav-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  background: white;
}

.nav-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.nav-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.docs-nav-item h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 0.5rem;
}

.docs-nav-item p {
  color: #6b7280;
  font-size: 0.875rem;
}

/* Docs Sections */
.docs-section {
  padding: 5rem 0;
}

.docs-section:nth-child(even) {
  background-color: #f9fafb;
}

/* Docs Grid */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.docs-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  position: relative;
}

.card-number {
  position: absolute;
  top: -1rem;
  left: 2rem;
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.875rem;
}

.docs-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.docs-card p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.docs-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.docs-list li {
  padding: 0.25rem 0;
  color: #6b7280;
  position: relative;
  padding-left: 1.25rem;
}

.docs-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ec4899;
  font-weight: bold;
}

.docs-link {
  color: #ec4899;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.docs-link:hover {
  color: #db2777;
}

/* Guides Grid */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.guide-category {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
}

.guide-category h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #ec4899;
}

.guide-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.guide-link {
  color: #6b7280;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  border-radius: 0.25rem;
  padding-left: 0.5rem;
}

.guide-link:hover {
  color: #ec4899;
  background-color: #fdf2f8;
}

/* API Documentation */
.api-content {
  max-width: 1000px;
  margin: 3rem auto 0;
}

.api-overview {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  margin-bottom: 2rem;
}

.api-overview h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
}

.api-overview h4 {
  font-size: 1.125rem;
  font-weight: bold;
  color: #111827;
  margin: 1.5rem 0 0.5rem;
}

.api-overview p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.code-block {
  background: #1e293b;
  color: #e2e8f0;
  padding: 1rem;
  border-radius: 0.5rem;
  margin: 1rem 0;
  font-family: 'Courier New', monospace;
  overflow-x: auto;
}

.endpoint-list {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.endpoint {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #f3f4f6;
}

.endpoint:last-child {
  border-bottom: none;
}

.method {
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: bold;
  margin-right: 1rem;
  min-width: 3rem;
  text-align: center;
}

.method.get {
  background: #dcfce7;
  color: #166534;
}

.method.post {
  background: #dbeafe;
  color: #1e40af;
}

.path {
  font-family: 'Courier New', monospace;
  color: #111827;
  font-weight: 500;
  margin-right: 1rem;
}

.description {
  color: #6b7280;
  font-size: 0.875rem;
}

.api-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Troubleshooting */
.troubleshooting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.trouble-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
}

.trouble-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
}

.trouble-card p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.trouble-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.trouble-list li {
  padding: 0.25rem 0;
  color: #6b7280;
  position: relative;
  padding-left: 1.25rem;
}

.trouble-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ec4899;
  font-weight: bold;
}

.trouble-link {
  color: #ec4899;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.trouble-link:hover {
  color: #db2777;
}

.support-section {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
}

.support-section h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
}

.support-section p {
  color: #6b7280;
  margin-bottom: 2rem;
}

.support-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Docs CTA Section */
.docs-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1e293b, #334155);
  color: white;
}

/* Responsive Design for Documentation */
@media (max-width: 768px) {
  .docs-hero-title {
    font-size: 2rem;
  }
  
  .docs-hero-subtitle {
    font-size: 1.125rem;
  }
  
  .docs-nav-content {
    grid-template-columns: 1fr;
  }
  
  .docs-grid {
    grid-template-columns: 1fr;
  }
  
  .guides-grid {
    grid-template-columns: 1fr;
  }
  
  .troubleshooting-grid {
    grid-template-columns: 1fr;
  }
  
  .endpoint {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .api-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .support-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .docs-hero-title {
    font-size: 1.75rem;
  }
  
  .docs-hero {
    padding: 6rem 0 3rem;
  }
  
  .docs-section {
    padding: 3rem 0;
  }
  
  .docs-card,
  .guide-category,
  .trouble-card {
    padding: 1.5rem;
  }
  
  .docs-search {
    flex-direction: column;
  }
  
  .docs-search input {
    border-radius: 0.5rem 0.5rem 0 0;
  }
  
  .search-btn {
    border-radius: 0 0 0.5rem 0.5rem;
  }
}

/* Webinars Page Styles */

/* Webinars Hero Section */
.webinars-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #1e293b, #334155);
  color: white;
  text-align: center;
}

.webinars-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.webinars-hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.webinars-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.webinar-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

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

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: #ec4899;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Upcoming Webinars Section */
.upcoming-webinars {
  padding: 5rem 0;
  background-color: white;
}

.webinars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.webinar-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.webinar-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.webinar-card.featured {
  border: 2px solid #ec4899;
  box-shadow: 0 10px 25px rgba(236, 72, 153, 0.1);
}

.webinar-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.webinar-header {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.webinar-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  color: white;
  border-radius: 0.5rem;
  text-align: center;
}

.date-day {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
}

.date-month {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
}

.webinar-info {
  flex: 1;
}

.webinar-info h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.webinar-time {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.webinar-speaker {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.speaker-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  object-fit: cover;
}

.webinar-speaker span {
  font-size: 0.875rem;
  color: #6b7280;
}

.webinar-description {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.webinar-topics {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.topic-tag {
  background: #fdf2f8;
  color: #ec4899;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.webinar-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Past Webinars Section */
.past-webinars {
  padding: 5rem 0;
  background-color: #f9fafb;
}

.webinar-card.past {
  opacity: 0.9;
}

.webinar-card.past .webinar-date {
  background: #6b7280;
}

/* Webinar Categories Section */
.webinar-categories {
  padding: 5rem 0;
  background-color: white;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.category-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: all 0.3s ease;
}

.category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.category-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.category-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.category-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 0.75rem;
}

.category-card p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.webinar-count {
  color: #ec4899;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Webinar Modal */
.webinar-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.webinar-modal.show {
  display: flex;
}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.modal-header h3 {
  margin: 0;
  color: #111827;
}

.close-modal {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #6b7280;
}

.registration-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
  color: #374151;
}

.form-group input,
.form-group select {
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #ec4899;
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

.form-group label input[type="checkbox"] {
  margin-right: 0.5rem;
}

/* Webinars CTA Section */
.webinars-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1e293b, #334155);
  color: white;
}

/* Responsive Design for Webinars */
@media (max-width: 768px) {
  .webinars-hero-title {
    font-size: 2rem;
  }
  
  .webinars-hero-subtitle {
    font-size: 1.125rem;
  }
  
  .webinar-stats {
    gap: 2rem;
  }
  
  .webinars-grid {
    grid-template-columns: 1fr;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .webinar-header {
    flex-direction: column;
    gap: 1rem;
  }
  
  .webinar-date {
    align-self: flex-start;
  }
  
  .webinar-actions {
    flex-direction: column;
  }
  
  .webinar-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .webinars-hero-title {
    font-size: 1.75rem;
  }
  
  .webinars-hero {
    padding: 6rem 0 3rem;
  }
  
  .upcoming-webinars,
  .past-webinars,
  .webinar-categories {
    padding: 3rem 0;
  }
  
  .webinar-card {
    padding: 1.5rem;
  }
  
  .category-card {
    padding: 1.5rem;
  }
  
  .webinar-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* Support Page Styles */

/* Support Hero Section */
.support-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #1e293b, #334155);
  color: white;
  text-align: center;
}

.support-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.support-hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.support-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.support-search {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.support-search input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  outline: none;
  font-size: 1rem;
}

.search-btn {
  background: #ec4899;
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-btn:hover {
  background: #db2777;
}

/* Quick Help Section */
.quick-help {
  padding: 4rem 0;
  background-color: white;
}

.help-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.help-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: all 0.3s ease;
}

.help-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.help-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.help-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.help-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
}

.help-card p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.help-link {
  color: #ec4899;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.help-link:hover {
  color: #db2777;
}

.chat-btn {
  background: none;
  border: none;
  color: #ec4899;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
}

.chat-btn:hover {
  color: #db2777;
}

/* Help Center Section */
.help-center {
  padding: 5rem 0;
  background-color: #f9fafb;
}

.help-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.help-category {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
}

.help-category h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #ec4899;
}

.help-articles {
  list-style: none;
  padding: 0;
}

.help-articles li {
  margin-bottom: 0.75rem;
}

.help-articles a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  padding: 0.5rem 0;
  border-radius: 0.25rem;
}

.help-articles a:hover {
  color: #ec4899;
  background-color: #fdf2f8;
  padding-left: 0.5rem;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background-color: white;
}

.faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f9fafb;
}

.faq-question h3 {
  font-size: 1.125rem;
  font-weight: 500;
  color: #111827;
  margin: 0;
}

.faq-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: #6b7280;
  transition: transform 0.3s ease;
}

.faq-toggle.active {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  display: none;
}

.faq-answer.show {
  display: block;
}

.faq-answer p {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* Contact Support Section */
.contact-support {
  padding: 5rem 0;
  background-color: #f9fafb;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.contact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
}

.contact-card p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Support Ticket Modal */
.ticket-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.ticket-modal.show {
  display: flex;
}

.ticket-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Live Chat Widget */
.chat-widget {
  display: none;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 350px;
  height: 500px;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  flex-direction: column;
}

.chat-widget.show {
  display: flex;
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  color: white;
  border-radius: 1rem 1rem 0 0;
}

.chat-header h3 {
  margin: 0;
  font-size: 1rem;
}

.close-chat {
  background: none;
  border: none;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
}

.chat-messages {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.message {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  max-width: 80%;
}

.message.system {
  background: #f3f4f6;
  color: #6b7280;
  align-self: center;
}

.message.user {
  background: #ec4899;
  color: white;
  align-self: flex-end;
}

.message.agent {
  background: #e5e7eb;
  color: #111827;
  align-self: flex-start;
}

.chat-input {
  display: flex;
  padding: 1rem;
  gap: 0.5rem;
  border-top: 1px solid #e5e7eb;
}

.chat-input input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}

.chat-input button {
  background: #ec4899;
  color: white;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-size: 0.875rem;
}

/* Support CTA Section */
.support-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1e293b, #334155);
  color: white;
}

/* Responsive Design for Support */
@media (max-width: 768px) {
  .support-hero-title {
    font-size: 2rem;
  }
  
  .support-hero-subtitle {
    font-size: 1.125rem;
  }
  
  .help-options {
    grid-template-columns: 1fr;
  }
  
  .help-categories {
    grid-template-columns: 1fr;
  }
  
  .contact-options {
    grid-template-columns: 1fr;
  }
  
  .chat-widget {
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
    border-radius: 0;
  }
  
  .chat-header {
    border-radius: 0;
  }
}

@media (max-width: 480px) {
  .support-hero-title {
    font-size: 1.75rem;
  }
  
  .support-hero {
    padding: 6rem 0 3rem;
  }
  
  .quick-help,
  .help-center,
  .faq-section,
  .contact-support {
    padding: 3rem 0;
  }
  
  .help-card,
  .contact-card {
    padding: 1.5rem;
  }
  
  .support-search {
    flex-direction: column;
  }
  
  .support-search input {
    border-radius: 0.5rem 0.5rem 0 0;
  }
  
  .search-btn {
    border-radius: 0 0 0.5rem 0.5rem;
  }
}

/* Careers Page Styles */

/* Careers Hero Section */
.careers-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #1e293b, #334155);
  color: white;
  text-align: center;
}

.careers-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.careers-hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.careers-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.careers-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

/* Culture Section */
.culture-section {
  padding: 5rem 0;
  background-color: white;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.culture-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: all 0.3s ease;
}

.culture-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.culture-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.culture-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.culture-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
}

.culture-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Positions Section */
.positions-section {
  padding: 5rem 0;
  background-color: #f9fafb;
}

.positions-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 3rem 0 2rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: white;
  border: 1px solid #d1d5db;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  font-weight: 500;
}

.filter-btn:hover {
  border-color: #ec4899;
  color: #ec4899;
}

.filter-btn.active {
  background: #ec4899;
  color: white;
  border-color: #ec4899;
}

.positions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.position-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.position-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.position-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.position-header h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  margin: 0;
  line-height: 1.3;
}

.position-type {
  background: #f3f4f6;
  color: #6b7280;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
}

.position-description {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.position-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.tag {
  background: #fdf2f8;
  color: #ec4899;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.position-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.position-location svg {
  color: #9ca3af;
}

/* Benefits Section */
.benefits-section {
  padding: 5rem 0;
  background-color: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.benefit-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
}

.benefit-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Application Process Section */
.application-process {
  padding: 5rem 0;
  background-color: #f9fafb;
}

.process-steps {
  max-width: 800px;
  margin: 3rem auto 0;
}

.process-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}

.step-number {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* Application Modal */
.application-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.application-modal.show {
  display: flex;
}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

.application-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
  color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ec4899;
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

.form-group small {
  color: #6b7280;
  font-size: 0.75rem;
}

.form-group label input[type="checkbox"] {
  margin-right: 0.5rem;
}

/* Careers CTA Section */
.careers-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1e293b, #334155);
  color: white;
}

/* Responsive Design for Careers */
@media (max-width: 768px) {
  .careers-hero-title {
    font-size: 2rem;
  }
  
  .careers-hero-subtitle {
    font-size: 1.125rem;
  }
  
  .culture-grid {
    grid-template-columns: 1fr;
  }
  
  .positions-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .positions-filters {
    flex-direction: column;
    align-items: center;
  }
  
  .filter-btn {
    width: 100%;
    max-width: 200px;
  }
  
  .process-step {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .careers-hero-title {
    font-size: 1.75rem;
  }
  
  .careers-hero {
    padding: 6rem 0 3rem;
  }
  
  .culture-section,
  .positions-section,
  .benefits-section,
  .application-process {
    padding: 3rem 0;
  }
  
  .culture-card,
  .position-card,
  .benefit-card {
    padding: 1.5rem;
  }
  
  .careers-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* Investors Page Styles */

/* Investors Hero Section */
.investors-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #1e293b, #334155);
  color: white;
  text-align: center;
}

.investors-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.investors-hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.investors-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Market Opportunity Section */
.market-opportunity {
  padding: 5rem 0;
  background-color: white;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.market-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.market-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.market-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.market-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.market-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
}

.market-card p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.market-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.highlight-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ec4899;
}

.highlight-label {
  font-size: 0.875rem;
  color: #6b7280;
}

/* Company Overview Section */
.company-overview {
  padding: 5rem 0;
  background-color: #f9fafb;
}

.overview-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}

.overview-text h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
}

.overview-text p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.differentiators-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.differentiators-list li {
  margin-bottom: 0.75rem;
  color: #6b7280;
  line-height: 1.6;
}

.tech-stack {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tech-tag {
  background: #fdf2f8;
  color: #ec4899;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.overview-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.stat-card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.stat-card .stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #ec4899;
  margin-bottom: 0.25rem;
}

.stat-card .stat-label {
  font-size: 0.875rem;
  color: #6b7280;
}

/* Financial Highlights Section */
.financial-highlights {
  padding: 5rem 0;
  background-color: white;
}

.financial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: center;
}

.financial-card {
  background: #f9fafb;
  padding: 2rem;
  border-radius: 1rem;
}

.financial-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 2rem;
  text-align: center;
}

.financial-chart {
  display: flex;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1rem;
}

.chart-bar {
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  border-radius: 0.25rem;
  position: relative;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chart-value {
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  position: absolute;
  top: -1.5rem;
}

.chart-label {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}

.financial-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.metric-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 0.5rem;
}

.metric-label {
  color: #6b7280;
  font-size: 0.875rem;
}

.metric-value {
  font-weight: bold;
  color: #111827;
  font-size: 1.125rem;
}

/* Team Section */
.team-section {
  padding: 5rem 0;
  background-color: #f9fafb;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.member-photo {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 0.5rem;
}

.member-title {
  color: #ec4899;
  font-weight: 500;
  margin-bottom: 1rem;
  display: block;
}

.team-member p {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* Investment Thesis Section */
.investment-thesis {
  padding: 5rem 0;
  background-color: white;
}

.thesis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.thesis-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: all 0.3s ease;
}

.thesis-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.thesis-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.thesis-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.thesis-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
}

.thesis-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Investor Contact Section */
.investor-contact {
  padding: 5rem 0;
  background-color: #f9fafb;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.contact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
}

.contact-card p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Investors CTA Section */
.investors-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1e293b, #334155);
  color: white;
}

/* Responsive Design for Investors */
@media (max-width: 768px) {
  .investors-hero-title {
    font-size: 2rem;
  }
  
  .investors-hero-subtitle {
    font-size: 1.125rem;
  }
  
  .market-grid {
    grid-template-columns: 1fr;
  }
  
  .overview-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .financial-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .thesis-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-options {
    grid-template-columns: 1fr;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .investors-hero-title {
    font-size: 1.75rem;
  }
  
  .investors-hero {
    padding: 6rem 0 3rem;
  }
  
  .market-opportunity,
  .company-overview,
  .financial-highlights,
  .team-section,
  .investment-thesis,
  .investor-contact {
    padding: 3rem 0;
  }
  
  .market-card,
  .team-member,
  .thesis-card,
  .contact-card {
    padding: 1.5rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* Features Page Styles */

/* Features Hero Section */
.features-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #1e293b, #334155);
  color: white;
  text-align: center;
}

.features-hero-content {
  max-width: 1000px;
  margin: 0 auto;
}

.features-hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.features-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.features-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.feature-nav-item {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-nav-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: white;
}

/* Feature Section */
.feature-section {
  padding: 5rem 0;
  background-color: white;
}

.feature-section:nth-child(even) {
  background-color: #f9fafb;
}

.feature-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

.feature-text h3 {
  font-size: 1.75rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1.5rem;
}

.feature-text p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.feature-text .reports-features {
  margin-top: 2rem;
}

.feature-image {
  position: relative;
  max-width: 100%;
}

.feature-image .image-container {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  max-width: 140%;
  width: 140%;
  border: 8px solid white;
}

.feature-image img {
  width: 100%;
  max-width: 1000px;
  min-width: 300px;
  height: auto;
  display: block;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border-radius: 12px;
  object-fit: cover;
}

.floating-circle {
  position: absolute;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  top: -1rem;
  right: -1rem;
  animation: float 3s ease-in-out infinite;
  z-index: 1;
}

.floating-circle.pink {
  background: linear-gradient(135deg, #ec4899, #db2777);
}

.floating-circle.blue {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.floating-circle.green {
  background: linear-gradient(135deg, #10b981, #059669);
}

.floating-circle.orange {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.floating-circle.purple {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.floating-circle.teal {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
}

.floating-circle.yellow {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.floating-circle.cyan {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.floating-circle.magenta {
  background: linear-gradient(135deg, #ec4899, #be185d);
}

.floating-circle.gold {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.floating-circle.indigo {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.floating-circle.red {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Features CTA Section */
.features-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1e293b, #334155);
  color: white;
}

/* Responsive Design for Features */
@media (max-width: 1024px) {
  .feature-content {
    grid-template-columns: 1fr 0.8fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .features-hero-title {
    font-size: 2rem;
  }
  
  .features-hero-subtitle {
    font-size: 1.125rem;
  }
  
  .features-nav {
    gap: 0.5rem;
  }
  
  .feature-nav-item {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
  
  .feature-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .feature-text h3 {
    font-size: 1.5rem;
  }
  
  .feature-text p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .features-hero-title {
    font-size: 1.75rem;
  }
  
  .features-hero {
    padding: 6rem 0 3rem;
  }
  
  .feature-section {
    padding: 3rem 0;
  }
  
  .features-nav {
    flex-direction: column;
    align-items: center;
  }
  
  .feature-nav-item {
    width: 100%;
    text-align: center;
  }
}
